Auto unselect disabled input on selecting other text

test html like described below
<pre><nowiki><html>
<body>
<input disabled value="some test text"> some text test<input value="some test text">
</body>
</html></nowiki></pre>
if you dblclick on text disabled input and then dblclick on some other text on page you will see what i mean. Also have this bug on Win7.

Hi Vyanky, I don't believe that's possible without some major functionality. The problem, as you probably know, is that it's a lookup with checkboxes. If it was added directly in InfoPath, then it wouldn't be an issue. You should consider adding "Other"
as a separate yes/no field instead. That way you'll be able to add an action rule to it to enable the text box.
cameron rautmann

Similar Messages

  • Validation on Disabled input text

    it seems <af:validateRegExp cannot work inside a <af:inputText disabled='true'>, is there any easy way to have this client side validation on a disabled input text in ADF?

    I am wondering if you could create a transient attribute in the EO that displays the data from the attribute. The "real" attribute would not be disabled, and would then validate.
    You then display the transient attribute on the form, and it would be non-update-able since it is transient.
    You could then place entity level validation on the entity (instead of on the attribute) since it is based on a second value in your form. Haven't tested it, but it would seem to be a solution.
    Stuart

  • Auto-tabbing between input text fields in AS3

    Hello-
    I am having some trouble figuring out how to work auto-tabbing between input text fields when a user inputs a character. I have a series of text boxes with maxChar set to 1, and when the user inputs a character, I would like it to auto-tab to the next one. I'm putting together a crossword-style banner ad so the auto-tabbing will help tremendously.  All the input text fields are instanced on the stage as input1, input2, etc; not called in from a custom class.  Also, I've been working with AS3 for about 2 weeks lol!
    thanks!

    Awesome, thank you, that works nicely! Now I need to figure out how to capture individual keyCodes for each input and then come up with a conditional to check for right or wrong answers. I have a "check your answers" button all set up. I think I am almost there, possibly a syntax hiccup for me. Any advice on how to do that would be appreciated.

  • Selection screen text not appearing in other than engllish language .

    Hello All,
                On selction screen I have 3 select-option and 2 radio button for that I have the  selection text maintain in 'Selection Text".
                When I login to system using French language then on selection screen only select options text  is appearing in French language and Radio buttons text is not appearing in French language, it appearing in English  language. In the program where I have maintain the selction text one column is there name as  "Dictionary Object" which has the check box. In that, for select options check box is check in Dictionary object but for Radio button that check box is in disable mode.
                 So how can Radio buttons text is appearing in French language when login through french language.

    You've two options.  One, log in in French and maintain the texts for the radio buttons directly.  Two, use tx SE63 to maintain the texts for the radio buttons in French.
    The select-options are automatically translated because their texts come from the data dictionary, and (as presumably they're SAP standard types), they're already translated as part of the French language pack.  But the radio-buttons you have to do yourself.
    matt

  • Disabling a Text Input created through the TEXT TOOL?

    Hi There,
    I have created a text input area. I havent used the flash
    text components. I used the TEXT TOOL. In the properties I set it
    to "input" type so that i could input data. All the features works
    fine except one. I have to disable the text area when user clicks a
    button. I dint get any help from the flash help.
    The main objective is that the text input area shouldnt take
    input from the user when the button is ON, once the button is off,
    the cursor should be at the point where the user left and he can
    type thru.
    Is this possible? I have achieved this functionality using
    the textarea component of Flash, but not using the input text area
    created using the TEXT TOOL.
    Can anyone help me.

    use the type property of textfields to change your textfield
    to "dynamic "when you want to disable input and assign it to
    "input" when you want to enable input.

  • Auto correct the inputs received to Initial Capital and other letter small

    Hi,
    Please help to solve this..
    In HRMS is there any auto correct the inputs received to Initial Capital and other letter small in HRMS. E.g. If data is received by HRMS as 'RAMA' HRMS should auto correct to 'Rama' from legacy system(Input Files)
    Thanks-

    Is this a migration question? If so, you can apply a mask to the source data at the point of calling the api, e.g.
    p_last_name => INITCAP(source_last_name),
    etc

  • Partial selection of Text in Editbox

    Hi,
    Please help me with this..
    In an Edit box, I want to  highlight/select a portion of the text programmatically.
    For example, if there's "Some Text" displayed in the text box, I want to select only "Text".
    (I am implementing auto-fill (autocomplete) feature in a user defined form.
    For that, I need this functionality.
    When user starts typing "S", I need to put "ome Text"  in the textbox programmetically, as highlighted text. So, if actually user wanted to enter "Scene", instead of "Some Text" suggested by my autocomplete, he need not manually delete the remaining text)
    In a google toolbar, if you type any characters, you are getting a popup window with all the matching entries, right?
    I want a similar functionality in SBO.
    So, Please tell me if you can think of any Multi-Line control in SBO
    -In which items can be selected 
    -Which can display multiple items at a time .
    I tried with all the controls of screen painter.
    Nothing works..For example, in Pane combo box, only a single item can be viewed at a time.
    Grid works, but it is not appealing to the user, for this purpose.
    Thank you for taking time to read this message!
    -Geetha

    Hi,
    Thanks for your reply.
    I'm trying whether there are any work-arounds.
    I'm using sendkeys, and trying the following:
    1. Sending RightArrow keys, to position the cursor in the correct position. (i.e, right after the text entered by the user) - I could achieve it!
    2. I am sending Shift + End key to highlight the remaining text - It doesn't work:(
    But, in the Eventlogs, it produces logs for Shift+End key, so sendkeys works. I don't know why the text is not highlighted.
    Please give me ur inputs.
    Thank you!
    -Geetha

  • Disable listbox after selecting item.

    Hello
    I want to disable the listbox after selecting some item from that list..
    for example :
    first the user select item from the list (at this time listbox is not disable) then after selecting, it should not allow user to change it (so i want to disable it).
    I tried "loop at screen" in which i did screen-input = 0. but its not working.
    Please help me...
    Regards
    Virendra

    Hi,
    TYPE-POOLS vrm.
    PARAMETERS : lb TYPE char10 VISIBLE LENGTH 15 AS LISTBOX USER-COMMAND lb.
    DATA :  vrm_id TYPE vrm_value-text,
              vrm_values TYPE vrm_value OCCURS 0 WITH HEADER LINE.
    AT SELECTION-SCREEN OUTPUT.
      IF NOT lb IS INITIAL.
        LOOP AT SCREEN.
          IF screen-name = 'LB'.
            screen-input = 0.
    "        MODIFY SCREEN. --> You forgot add this Code
    "  This is a tested piece of Code Just Execute and Check
          ENDIF.
        ENDLOOP.
      ENDIF.
      LOOP AT SCREEN.
        IF screen-group1 = 'AA' OR
          screen-group1 = 'BB' OR
          screen-group1 = 'CC'.
          screen-invisible = 1.
          screen-active = 0.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
      REFRESH vrm_values.
      vrm_values-key = 'VBELN'.
      vrm_values     = 'VBELN'.
      APPEND vrm_values.
      vrm_values-key = 'MATNR'.
      vrm_values     = 'MATNR'.
      APPEND vrm_values.
      vrm_values-key = 'AUFNR'.
      vrm_values     = 'AUFNR'.
      APPEND vrm_values.
      vrm_id = 'LB'.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id              = vrm_id
          values          = vrm_values[]
        EXCEPTIONS
          id_illegal_name = 1
          OTHERS          = 2.
    Cheerz
    Ram

  • Can't disable a hyperlink in a text box

    Hi
    I'm having trouble with Pages '06 and how it handles text that looks like a URL. I'm putting together an ad that has a text box with some text like www.domain.com. I've selected the text and de-selected the 'Enable as Hyperlink' option as I don't want the link line to appear under the text in the printed page.
    My problem is that the change doesn't 'stick'. When I de-select the option, the text colour changes to black and the link line disapears. As soon as I click out of the text box, it reverts back to a hyperlink complete with blue colour and underlining.
    If I place text directly onto the page - not in a text box - it works as expected.
    I've tried this in Pages '05 and it works as expected. I've deleted the prefs files... any suggestions?
    Thanks!
    James

    The setting is now in the 'Auto correction' pane... and yes - it solves the problem! Thanks for that!!! Now I can manually set the link detection. Looks like someone got the 'AutoDetection' routines a bit messed up...
    Thankyou for the suggestion!!!
    James

  • How can I print a selection of text?

    In Mail (in Mavericks).  I would like to print just a paragraph or two that I have selected (highlighted).  How can I print just that selected text and not any other text or headers in that email?  I know I can copy and paste the text into a Text Edit document, but I'm looking for a quicker way to print just that selected text without leaving Mail.

    Create an Automator action that gets the selected text and automatically creates the TextEdit document and prints:
    To make the Service, create a New Automator workflow and select Service as the type.
    Set it to receive selected text in any application.
    Drag in a New TextEdit Document action
    Drag in a Run Applescript Action.
    Set the applescript to this:
    on run {input, parameters}
              tell application "TextEdit"
      print document of front window
      close document of front window without saving
      quit
              end tell
              return input
    end run
    Save it as something like Print Selected Text. Then, you can select text, ctrl-click on it, then select Print Selected Text from the Services submenu of the contextual menu.
    Here is a picture of the workflow:
    You could also give it a shortcut in the Keyboard System prefs, Shortcuts tab:

  • Printing graph and other text in the same page

    Hi,
    I am aware that for providing graphs in ABAP report we have a FM which is called via a pushbutton in the output screen generally.
    Is there any way I can do away with the pushbutton and print the graph and other text in the same page at one go ? I think Smartforms will not allow graph printing.......any other method to achive this ?
    The user wants to print the graph and other text in the same page.
    Regards,
    Sandip.

    Hi ! no it is not related to smartforms
    search for custom container on google you idea about custom container.
    following code is for displaying alv on selection screen which is created using custom container
    and docking container.
    I hope you will get some idea about how to use custom container for your problem
    DATA DECLARATIONS
    DATA: CONT_DOCKING TYPE REF TO CL_GUI_DOCKING_CONTAINER,
    GRID TYPE REF TO CL_GUI_ALV_GRID,
    CUST_CONTAINER TYPE REF TO CL_GUI_CUSTOM_CONTAINER,
    IT_FIELDCAT TYPE LVC_T_FCAT,
    GS_LAYOUT TYPE LVC_S_LAYO.
    *ITAB TYPE TABLE OF SBOOK.
    *& SELECTION SCREEN PARAMETERS
    *PARAMETERS:P_TEST TYPE I .
    *& AT SELECTION SCREEN OUTPUT
    AT SELECTION-SCREEN OUTPUT.
    IF EBELN[] IS NOT INITIAL.
    CREATE OBJECT CONT_DOCKING
    EXPORTING
    REPID = SY-REPID
    DYNNR = SY-DYNNR
    SIDE = CONT_DOCKING->DOCK_AT_BOTTOM
    EXTENSION = 100.
    IF CUST_CONTAINER IS INITIAL.
    *----Create the alv with docking container
    PERFORM CREATE_AND_INIT_ALV .
    ENDIF.
    ENDIF.
    *& Form BUILD_FIELDCAT
    FORM BUILD_FIELDCAT .
    DATA WA_FIELDCAT TYPE LVC_S_FCAT.
    WA_FIELDCAT-FIELDNAME = 'EBELN'.
    WA_FIELDCAT-REPTEXT = 'Airline Code'.
    APPEND WA_FIELDCAT TO IT_FIELDCAT.
    WA_FIELDCAT-FIELDNAME = 'EBELP'.
    WA_FIELDCAT-REPTEXT = 'Flight Connection Number'.
    APPEND WA_FIELDCAT TO IT_FIELDCAT.
    *WA_FIELDCAT-FIELDNAME = 'WUNIT'.
    *WA_FIELDCAT-REPTEXT = 'Weight Unit'.
    *APPEND WA_FIELDCAT TO IT_FIELDCAT.
    *LOOP AT IT_FIELDCAT INTO WA_FIELDCAT.
    *IF WA_FIELDCAT-FIELDNAME EQ 'WUNIT'.
    *WA_FIELDCAT-EDIT = 'X'.
    *WA_FIELDCAT-DRDN_HNDL = '1'.
    *WA_FIELDCAT-CHECKTABLE = '!'.
    *MODIFY IT_FIELDCAT FROM WA_FIELDCAT.
    *ENDIF.
    *ENDLOOP.
    ENDFORM. "build_fieldcat
    *& Form CREATE_AND_INIT_ALV
    FORM CREATE_AND_INIT_ALV .
    CREATE OBJECT GRID
    EXPORTING I_PARENT = CONT_DOCKING.
    *--perform build field catalog for alv display
    PERFORM BUILD_FIELDCAT .
    *--fill the drop down list values
    PERFORM fill_dropdown_table .
    *----fill final output table
    SELECT * FROM EKPO
    INTO CORRESPONDING FIELDS OF TABLE ITAB WHERE EBELN IN EBELN.
    *UP TO 10 ROWS.
    *---display alv
    CALL METHOD GRID->SET_TABLE_FOR_FIRST_DISPLAY
    CHANGING
    IT_FIELDCATALOG = IT_FIELDCAT
    IT_OUTTAB = ITAB[].
    *---Set editable cells to ready for input initially
    CALL METHOD GRID->SET_READY_FOR_INPUT
    EXPORTING
    I_READY_FOR_INPUT = 1.
    ENDFORM. "create_and_init_alv
    *& Form set_drdn_table
    FORM fill_dropdown_table.
    DATA: LT_DROPDOWN TYPE LVC_T_DROP,
    LS_DROPDOWN TYPE LVC_S_DROP.
    LS_DROPDOWN-HANDLE = '1'.
    LS_DROPDOWN-VALUE = 'KG'.
    APPEND LS_DROPDOWN TO LT_DROPDOWN.
    LS_DROPDOWN-HANDLE = '1'.
    LS_DROPDOWN-VALUE = 'G'.
    APPEND LS_DROPDOWN TO LT_DROPDOWN.
    LS_DROPDOWN-HANDLE = '1'.
    LS_DROPDOWN-VALUE = 'B'.
    APPEND LS_DROPDOWN TO LT_DROPDOWN.
    LS_DROPDOWN-HANDLE = '1'.
    LS_DROPDOWN-VALUE = 'T'.
    APPEND LS_DROPDOWN TO LT_DROPDOWN.
    CALL METHOD GRID->SET_DROP_DOWN_TABLE
    EXPORTING
    IT_DROP_DOWN = LT_DROPDOWN.
    ENDFORM. "set_drdn_table

  • How to Disable the Lead selection Action on aTable n How to Refreh a Page

    HI....
    1)How to Disable the Lead selection Action on aTable n How to Refreh a Page r web dynpro application.
    In my case i have a table n user enters data on multiple rows in table , n i have some input fields outside of table for those Inputs fields am settiing the data  at the screen initilization(in Init() moethod by hard code).the problem is whenever the is clicking in th 2nd row of a table the Lead Selection is triggerig and the data in the Input Fields outside the table is not displayinig.
    So by removing the lead Selection Action of a table i thought i can reslove this,
    2) How to refresha page(like we click F5 on key board),is it can be done thru code in web dynpro application
    Regards
    Rajesh

    Hi,
    You did not explained what is your functionality or coding in leadselection. Is that action on leadselection is necessary for you?.
    1)If you just want to remove the action then go to table properties and remove the action for leadselection.
    2)If you still want to continue with your leadselect action, then what you can do is.. write the code in leadselection action to again set the input fields which are out from table.  That is what you did in your init method.
    Page Refreshing
    3) What do you mean by page refreshing? is that refreshing your table only or both the table and input fields. 
         What I understood is you are allowing the user to enter values in table and soon after pressing a button the values should be saved and the data in input fields shld be deleted.  For this if you only invalidate the node then the user entered data will be lost. 
    So what you do is after getting the input data from the user add it to a ArrayList and then invalidate the node which clears the data in input field. Finally bind the Arraylist to your node.  see the following code. This is a concept make changes according to your requirement
    ArrayList list1=new ArrayList();
    wdContext.nodeAbc().bind(list1);
    IPrivateExcelviw.IAbcElement ele = wdContext.createAbcElement();
      ele.setNo(wdContext.currentAbcElement().getNo());
      ele.setName(wdContext.currentAbcElement().getName());
      ele.setMarks(wdContext.currentAbcElement().getMarks());
      list1.add(ele);
      wdContext.nodeAbc().invalidate();
    wdContext.nodeAbc().bind(list1);
    Revert me if you have any doubts
    Regards
    Raghu
    Edited by: Raghunandan Madarikuruva on Oct 16, 2008 8:07 AM

  • I have an Adobe Flash Professionals digital classroom book for CS6 and was following all steps easily until it ask me to select the text tool and change it from classic to tfl in the property inspector. I looked and all that drops down is dynamic, static,

    I have an Adobe Flash Professionals digital classroom book and was following all steps easily until it ask me to select the text tool and change it from classic to tfl in the property inspector. I looked and all that drops down is dynamic, static, and input. Where is the TFL and Classic ? I watched adobe learning center but he was using CS5. Can anyone please help?

    Hi,
    Do you use Flash CS6 to follow the instructions in the classroom book? If yes, then you can find it under text drop down for an AS3 Document as shown below
    If you follow the instruction in Flash CC or Flash CC2014 then you will not find this option as this is deprecated.
    Thanks!
    Mohan

  • Uncheck one check box when we select other check boxes

    Hi All,
    This might be very simple question for experts. I just want to unselect one check box (this check box is to select 'ALL' and this will be selected by default) when we select any other check box (for individual categories) on same region. Can any one please suggest me how to implement this?
    Thanks in advance.
    Regards,
    Hari

    Hi Shijesh,
    Thanks for you reply.
    I'm using two items (check boxs), like P1_ALL and P1_TEST. I want to unselect P1_ALL when we select P1_TEST check box.Both the check boxes contains single value in List of values. For this I wrote script like
    <script type="text/javascript">
    function uncheckAll(pthis)
    elm = document.getElementsByName('P1_ALL');
    if(pthis.checked)
    elm.checked = false;
    </script>
    And in HTML form element attribute of P1_TEST, I have 'onclick=uncheckAll(this)'. But for some reason when I select 'P1_TEST', P1_ALL check box not getting un-selected.
    I would be grateful if you suggest what needs to correct in this one.
    Regards,
    Hari

  • Disabling input

    Hi,
    How to use "at selection-screen output" event for disabling input of certain fields.
    Please explain with easy example.
    Thanks,
    Mahathi

    Hi,
    Hope this will help you:
    Hi,
    AT SELECTION-SCREEN OUTPUT
    event is triggered. This event block allows you to modify the selection screen directly before it is
    displayed.
    PARAMETERS: TEST1(10) MODIF ID SC1,
    TEST2(10) MODIF ID SC2,
    TEST3(10) MODIF ID SC1,
    TEST4(10) MODIF ID SC2.
    AT SELECTION-SCREEN OUTPUT.
    LOOP AT SCREEN.
    IF SCREEN-GROUP1 = 'SC1'.
    SCREEN-INTENSIFIED = '1'.
    MODIFY SCREEN.
    CONTINUE.
    ENDIF.
    IF SCREEN-GROUP1 = 'SC2'.
    SCREEN-INTENSIFIED = '0'.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    2.AT SELECTION-SCREEN ON <field>
    is triggered when the contents of each individual input field are passed from the selection screen
    to the ABAP program. The input field <field> can be checked in the corresponding event block.
    If an error message occurs within this event block, the corresponding field is made ready for input
    again on the selection screen.
    SELECTION-SCREEN BEGIN OF BLOCK PART1 WITH FRAME.
    PARAMETERS: NUMBER1 TYPE I,
    NUMBER2 TYPE I,
    NUMBER3 TYPE I.
    SELECTION-SCREEN END OF BLOCK PART1.
    SELECTION-SCREEN BEGIN OF BLOCK PART2 WITH FRAME.
    PARAMETERS: NUMBER4 TYPE I,
    NUMBER5 TYPE I,
    NUMBER6 TYPE I.
    SELECTION-SCREEN END OF BLOCK PART2.
    AT SELECTION-SCREEN ON BLOCK PART1.
    IF NUMBER3 LT NUMBER2 OR
    NUMBER3 LT NUMBER1 OR
    NUMBER2 LT NUMBER1.
    MESSAGE E020(HB).
    ENDIF.
    AT SELECTION-SCREEN ON BLOCK PART2.
    IF NUMBER6 LT NUMBER5 OR
    NUMBER6 LT NUMBER4 OR
    NUMBER5 LT NUMBER4.
    MESSAGE E030(HB).
    ENDIF.
    Reward points if found helpful....
    Cheers,
    Chandra Sekhar.

Maybe you are looking for

  • Trouble verifying ownership of illustrator 10_0_3.

    Howdy, At work, we've been using the same copy of Illustrator that's been passed down from generation to generation like a bad christmas sweater. I just transfered from an old computer to a new one, and my boss would prefer that we keep the same copy

  • Java Stored Procedures take longer to execute

    Hi, I am doing a comparison of Oracle and Java Stored procedures in terms of execution time. I have created a java stored proc and an Oracle stored proc both of which perform the same task. Upon execution, I find that the java proc takes longer time

  • Mini 1st Gen Harddrive in 2nd Gen mini

    Hey there.. i have two ipod minis, one is a 1st gen and the other is a 2nd gen. The 2nd gen's hard drive is giving me a wierd repetitive whirling sound and is displaying the sad ipod. However my first gen mini's harddrive is working fine. So i carefu

  • At the time of transport event not activated

    Hi All, When ever i transport from Development to Quality or Production the Event of the Template is not in Activate position . What could be the reason? Thanks Soni

  • Oracle.bpel.services.datacontrol.data.DataCollection error in BPM work-list

    Hi, I am working with Human task form. I Have created one form using create auto-generate option from task options. The form is fetching and displaying data properly in BPM work-list, but when i click on approve/reject button in form, it gives the er