How to make readable text fields after the filling of data

Hello

Once we get the data in the message text entry fields, we have a few only readable areas.
I tried to make these fields as readable as follows:

In the property inspector Table RN, I changed the functional property of 'Read' only True value
But in the custom OAF page, text box is missing for this field.
Could someone help me how to do this?

Thanks in advance
Nanoo

Hi Nanoo

Here's the modified code, you can use

public void setReadonly()
{
XXIDVOImpl vo=getXXVO1();
Row poRow = vo.first();
for(int i=0;i

I hope that helps!

Thank you
AJ

Tags: Oracle Applications

Similar Questions

  • How to make a text field repeat several times?

    I have created a form with the name of a client in it - and the name is repeated at the top of each page.  How to make a text field repeat several times? Thank you!

    Make sure that all fields have the same name (LastName FirstName, MiddleName,), then set the binding in the overall binding tab.

    Paul

  • Asking value of text field after the application of the stamp

    Hello

    I use forms to create a stamp personalized with Acrobat Pro XI

    However, I need to enter a value in a text field after (or during)

    in placing the stamp.
    With my current 'solution' (calculation of the value of a text field with: event.value = app.response ("enter a string of text"));

    He asks only entry when I open tone (which is pretty useless, obviously).

    I hope someone can help me here, I'm a little lost.

    You should read this tutorial and post again if you get stuck: http://acrobatusers.com/tutorials/print/dynamic_stamp_secrets

  • How to make a text field to accept a capital letter has or a number in the position of the first character and only the numbers after that?

    Hi all

    We have a text field in one of our screen in our mobile app. Currently the user can enter alpha numeric characters in this text field.

    It is now that this field should accept a capital letter A or a number in the position of the first character and only the numbers after that.

    Could someone let us know how to do this?

    Thank you.

    Or, how about the substitution of this abstract method in textFilter?

    public boolean validate(character char,
                            AbstractString text
    int position)

  • How to make a text field required at run time when the user clicks on the box?

    I had a form, there are several checkboxes fields and the text associated with the check boxes. If the use clicks on the checkbox then partner

    text fields should become mandatory. I tried the change event and the click event of the boxes. There is error in the onChnage event and I got some odd results in the click event on. Sometimes, if the user clicks the check box, then for the 1st time the field is not required, then the user onclicks the box and when the user clicks the check box for the second time the field becomes necessary, but if I turns off the option highlight the field and selects the field becomes necessary even if the user onchecks I am totally confused! To add that I have also written an incorrect code always I reached the goal? How it can be possible. I write the codes below, please help me because I am working under a deadline from the client.

    onChange event:

    var = this.boundItem (xfa.event.newText) newVal;
    if(newVal == 0)
    {
    xfa.resolveNode ("form1. Subform0.Subform1.Subform9.Subform10.Table48.Row4.Purchasecost3_1'). validate.nullTest = "disabled";
    }
    on the other
    {
    xfa.resolveNode ("form1. Subform0.Subform1.Subform9.Subform10.Table48.Row4.Purchasecost3_1'). validate.nullTest = 'error ';
    }*/

    For the onClick event:

    var a = xfa.resolveNode ("form1..") RawValue Subform0.Subform1.Subform9.Subform10.Table48.row2.CostItemRecovere d_OnlyEnergyCharges");
    App.Alert (a);
    if(a == 0)
    {
    xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row4.ComplianceCheck__L1_1").validate.nullTest = 'error ';
    }
    if(a == 1)
    {
    xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row4.ComplianceCheck__L1_1").validate.nullTest = "disabled";
    }

    Please help someone!

    Hello

    You may need this resolved at this point, but here are a few tips.

    An example of a loop in a dynamic array is here: Re: how to make invisible/visible or hidden columns with checkbox?

    You are usually not necessary to resolve the nodes, especially when the script object is in the same table as the target objects.

    For example if the table was not static your script could be simplified:

    if (this.rawValue == "1")  // this object is in Row2
    {
         Row4.ComplianceCheck_L1_1.mandatory= "error";
    ...
    }
    

    However because you will be to loop through all the rows in the table repeatable instances / then you need to resolve the nodes. Take a look at the example above.

    In your script, you have to Row8 Row4. I don't know if this is repeatable or just some of them. If we take Row4 as being repetitive, then you can apply the following to all repeatable lines.

    var vRow4 = Table48._Row4.count;
    console.println("Row4: " + vRow4); // You can delete this or comment it out after testing
    
    if (this.rawValue == "1")  // this object is in Row2
    {
         for (var i=0; i
    

    I have not tested, but it should be close to work.

    Good luck

    Niall

  • How to make a visible field if the value in the three text boxes do not match?

    Hello Experts.

    I have a form with three text boxes.  I would like a warning box to display when recording warning the user that "these amounts do not match!  I would also like a textbox become visible when you save the document and remains visible in the layout until the amounts match.  I don't want to prevent the user to save the document, I just let them know that there are potential errors.

    I would use something like the following:

    If textbox1! textbox2 =! textbox3 =

    {textbox4.presence = "visible" ;}

    Also, have a pop-up message box during registration as follows:

    xfa.host.messageBox ("these amounts do not match!", "Title", 2);

    My question is how to write this, and what events should I use for this?

    Any help is greatly appreciated.

    Thank you

    Jerald

    Place the code in the event of a preSave any control below...

    The language is Java Script

    If (textbox1.rawValue! = textbox2.rawValue! = textbox3.rawValue) {}

    xfa.host.messageBox ("these amounts do not match!", "Title", 2);

    TextBox4.PRESENCE = "visible";

    }

    else {}

    TextBox4.PRESENCE = "invisible";

    }

    Also place the same code in the output of al lthe thre events (textbox1, textbox2, and textbox3) text fields...

    Thank you

    Srini

  • How to make a text field so that if a user enters a lower case A, we make a capital?

    Hello

    We have a text field in one of our screens in the blackberry application.

    We have created the custom text filter so that the user can enter only the letters 'A' and the numbers in the text field. Now we need if the user enters 'a', we need to change it to 'A'.

    How can we achieve this?

    Thank you.

    Hi all

    I tried the following code and it worked.

    public char convert(char character, int status) {
        // TODO Auto-generated method stub
        if (!validate(character)) {
            return 0;
        }
        if (character == 'a') {
            return 'A';
        } else
            return character;
    }
    
  • How to make a text field is empty when you click on to.

    I have an input text box, if the user clicks "submit" and the box is empty, it returns "Please enter here response" in the input box. Is there a way to make sure when the user clicks in the box, it will turn back to white and be ready to type rather than having to select existing text, to delete?

    Thanks :)

    Yep, use the onSetFocus method.

    my_text_field_instance_name.OnSetFocus = function() {}
    my_text_field_instance_name. Text = "";
    }

    but be careful here, because if the user fills in that information, then click on the text field and then on again, the text will disappear, you will need to use a combo with onKillFocus or if increased... play with him. its real simple

    Corey

  • How can can add text fields in the form automatically pdf document?

    I use Adobe Acrobat X (10.1.3) installed on Windows 7 to create pdf forms. My document is very similar to a "lined paper A4 notebook.

    I want to add the text field for each row of lined notebook, so people will be able to write what they want line by line.

    As my document has 20 lines in each page, and a total of 64 pages, I won't add these fields one by one. (drawing of rectangles with precision and aligning each other, assigning separate 'field name' to ensure solid mounting.)

    Property 'Set the Multiple field' within the right - click cause misalignment during 5-6 lines statement on the other.

    You have any suggestions or work around I can receive?

    See Doc.addField. If there is a model for the positions lines on each page, then you can generate the positions in JavaScript and use Doc.addField to set the text fields.

  • How to create a text field in the shape of 'L '.

    I need to insert a text field in an Acroform with a label that begins partially on one line, then continues on the following line, as shown below.

    Is it possible to insert a text field in an L shape? If not, is it possible to automatically move the text to the next field cursor when the person filling out the form is running out of space on the first line? I use Acrobat Pro XI on Windows 7.

    Untitled-1.gif

    Is it possible to insert a text field in an L shape?

    Lol the PDF form fields are always rectangular.

    If not, is it possible to automatically move the text to the next field cursor when the person filling out the form is running out of space on the first line?

    Yes, it's possible, but it takes using a script.

  • Text field: Add the fill and border color to the text field

    Why I can not get my fields to be filled with a color or a colored border?
    This is my first form and it is quite complex, with formulas math etc, (which is great!) but I am wrestling

    in this last two text fields little I want to stand out from the rest of the form, because they

    are the boxes, Submit and Reset.

    If you get a color picker when you try to set the background and border colors, make sure that the check-box Transparent is not checked. If it isn't her, can you describe exactly how you are trying to change the colors?

  • How to make a text box in the scroll bar custom FlashCC HTML5 Canvas?

    Hello

    I need to make a scroll for a long text box bar. I wonder how can I achieve this with HTML5 canvas in Flash CC2014?

    Thank you

    Rodrigo

    No, the code is exactly the same except instead of changing the property y of a textfield object, you change the property y of a movieclip (which contains an image of the text your want to display).

  • How to make a text entry for the user to type the name in?

    I do a game in which the user can type in their name, and later in the game, it will say something like:

    "Oh, Kaitlyn, how was your day? But what I really know how to do is make sure the name will be, but NOT all in a sentence in fact. The problem with this is the spacing and punctuation. I tried following a tutorial that gave me this to put in the ActionScript for the output area:

    output_txt. Text = "Hello" + myText + "!";

    Here is the tutorial:

    http://www.danfergusdesign.com/classfiles/oldClasses/VCB331-richMedia1/exercises/inputOutp utText.php

    I think it's because it's for as3 that it doesn't, but I'm kinda new to Flash and it does not seem too difficult. Please give very descriptive instructions.

    What you show will work in AS2 and AS3.  Do you have assigned an instance name textfield (it indicates 'output_txt' in your example)?  Instance names are assigned by selecting the object on the stage and entering the name in the properties panel.

    You must store the name that the user enters in a variable.  This can be done in two different ways.  Do you have something in place for that?

  • How to make a calculated field in the view object

    I use Jdeveloper 11 R2 (11.1.2.3)

    In some cases I need to calculate a field based on information from another object of usage view

    I came up with the idea of a transitional attribute for the first object view and try to initialize in the Get accessor method in RowImpl

    But I don't know how I can access another display object in the class RowImpl

    Any solution or suggestion?

    Appreciate your comments

    Concerning
    Mohsen

    Create an accessor from view in the t you want to access another VO.
    get the other VO by using the Get accessor of the accessor to view in a rowset obj.
    setnamedwhereclauseparams if necessary.
    ExecuteQuery and then iterate over the rs to get any desired attribute - note the attribute must be the attribute in the called t.

    Edited by: bigchill 06/03/2013 17:37

  • How to make a text field for view-only / editable based on a user of APEX

    Hello

    I have a form with fields of 10-20 to assume.
    When the user - Admin logs, I want to field1 as editable, but when another user... User1 connects, I want to do this Field1 as display only... how I can do.

    Thank you
    Deepak

    Deepak

    You can remove the "View only" condition on the field and add this piece of javascript in the "foot" of the definition of the page

    
    

    CITY

    Published by: city has 12 August 2009 15:41

Maybe you are looking for