Resizing textarea input element dynamically

how can the texarea size adjusted ( both horizontally as well as vertically ) based on browser window resizing by user using mouse controls. Using Jdev 11.1.3 and ADF
thanks
Seetharaman

My understanding is the current inputText component does not support this behaviour. I recommend lodging an enhancement request with Oracle Support.
CM.

Similar Messages

  • ADF Dynamic type of input elements

    Hi, I wonder if it is possible to create a form with dynamic input elements. In more details, imagine that I have a huge document repository. Documents are being inserted into that repository and they are separated by catalogs, profiles and properties. User must select catalog, then choose appropriate profile and then fill out all the properties of the document he is inserting. Some properties are dropdown menus, some date fields and others are plain text fields. My goal is to ease my GUI development with ADF, so can I somehow code oracle.adf.view.faces.model.CollectionModel to be used in ADF Table Component?
    That is what I think:
    In my jsf I will use some table:
    <af:table var="p" value="#{myBean.requiredProperties}">
      <af:column>
        <af:outputText value="#{p.textLabel}"/>
      </af:column>
      <af:column>
        <????  value="#{p.inputElement}"/>
      </af:column>
    </af:table>What may I use instead of ???? and how to code my method getInputElement() to return CoreInputText ,CoreSelectOneChoice or CoreSelectInputDate
    Regards.
    Sergei Emelianov

    hi,
    i had given one example it will help you
    data: begin of itab_alv1 occurs 10,
              MAKTX like MAKT-MAKTX ,
              MATFI like MARA-MATFI ,
              MATNR like MARA-MATNR ,
              MFRPN like MARA-MFRPN ,
          END OF ITAB_ALV1.
    type-pools: slis.
    data: afield type slis_fieldcat_alv.
    DATA: fieldcat type slis_t_fieldcat_alv.
    clear afield.
    afield-col_pos = 1 .
    afield-fieldname = 'MAKTX'.
    *afield-seltext = ''.
    append afield to fieldcat.
    afield-col_pos = 2 .
    afield-fieldname = 'MATFI'.
    *afield-seltext = ''.
    append afield to fieldcat.
    select * from mara.
       select * from makt where
             matnr = mara-matnr.
           itab_alv1-matnr = mara-matnr.
           itab_alv1-maktx = makt-maktx.
           append itab_alv1.
       endselect.
    endselect.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
           IT_FIELDCAT = fieldcat
        Tables
           t_outtab = itab_alv1.

  • How to create an UI element dynamically on action in drop down?

    Hi,
    How to create an UI element dynamically on action of selecting a value from the  drop down?
    help out with the steps i need to follow..

    Hi,
    <u><i><b>Dynamic UI Element creation</b></i></u>
    We can create it only in the WD Modify View.
    Get the instance for the Root UI Element Container.
    Create the UI element Ex: Input Field, Text View etc.
    Bind the UI Element to the Attribute Value.
    Now bind the UI Element to the Root UI Element Container.
              IWDTransparentContainer root =(IWDTransparentContainer)view.getRootElement();
              IWDDropdownByIndex DdbName = (IWDDropdownByIndex)view.createElement(IWDDropdownByIndex.class,"DdbName");
              IWDDropdownByIndex DdbAge = (IWDDropdownByIndex)view.createElement(IWDDropdownByIndex.class,"DdbAge");
              IWDDropdownByIndex DdbGender = (IWDDropdownByIndex)view.createElement(IWDDropdownByIndex.class,"DdbGender");
              IWDNode Mad =wdContext.getChildNode("Person",0);
              IWDAttributeInfo NameAtt = Mad.getNodeInfo().getAttribute("Name");
              IWDAttributeInfo AgeAtt = Mad.getNodeInfo().getAttribute("Age");
              IWDAttributeInfo GenderAtt = Mad.getNodeInfo().getAttribute("Gender");
              DdbName.bindValue(NameAtt);
              DdbAge.bindValue(AgeAtt);
              DdbGender.bindValue(GenderAtt);
              root.addChild(DdbName);     
              root.addChild(DdbAge);
              root.addChild(DdbGender);
    <u><i><b>Dynamic Action Creation</b></i></u>
    Create the Action in the Action tab.
    Create a Button.
    Get the reference for the created action (Through the Event Handler).
    Bind the Action to the Button.
    Bind the Button to the Root UI element Container.
    IWDButton ButGo = (IWDButton)view.createElement(IWDButton.class,"ButGo");
    IWDAction ActGo = wdThis.wdCreateAction(IPrivateStartView.WDActionEventHandler.GO,"Click");
    ButGo.setOnAction(ActGo);
    root.addChild(ButGo);
    Now write the required code for the Event Handler that is associated with the Action.
    //@@begin onActionGo(ServerEvent)
        IWDNode Mad = wdContext.getChildNode("Person",0);
         wdComponentAPI.getMessageManager().reportSuccess(Mad.getCurrentElement().getAttributeAsText("Name"));
         wdComponentAPI.getMessageManager().reportSuccess(Mad.getCurrentElement().getAttributeAsText("Age"));
         wdComponentAPI.getMessageManager().reportSuccess(Mad.getCurrentElement().getAttributeAsText("Gender"));
    //@@end
    Regards
    SURYA

  • Hiding an UI element dynamically in webdynpro ABAP

    Hi Gurus,
      I want to hide a Interactive form UI element dynamically at run time. Please let us know how to proceed with this and provide the code for this, which will be helpful.
    Thanks
    Rahul

    hi ,
    bind the VISIBLE property of the UI element with  a context attribute created in the CONTEXT tab. This context attribute should be of type WDUI_VISIBILITY
    u can refer this code
    wd_context->set_attribute( name = '<attribute name>' value = if_wdl_core=>visibility_visible )." to make it visible.
    wd_context->set_attribute( name = '<attribute name>' value = if_wdl_core=>visibility_none ). "to make it invisible
    regards,
    Amit

  • Using the value "Image/*" for the accept attribute of the HTML input Element, how can I add .pdf to the array of preconfigured file types (.jpe, .jpg, .jpeg, .?

    On a form, using the value "image/*" for the accept attribute of the HTML input Element, how can I add .pdf to the array of pre-configured file types (.jpe, .jpg, .jpeg, .gif, .png, .bmp, .ico, .svg, .svgz, .tif, .tiff, .ai, .drw, .pct, .psp, .xcf, .psd, .raw)?
    Say I wanted to add .gif, .jfif or .ico. I find this array limited, how can I add types to image?
    <input type="file" name="file" accept="image/*" id="file" />
    mimeTypes.rdf does not seem to allow this.

    ''mimeTypes.rdf'' has nothing to do with web development. It's a file that stores your file handling preferences (e.g. if you want ZIP files automatically saved or opened).
    You can't change the file types of the pre-defined content specifiers (audio/*, video/*, image/*), but you can specify additional MIME types. To add PDF to your above example,
    <pre><nowiki><input type="file" name="file" accept="image/*,application/pdf" id="file" /></nowiki></pre>
    For details, see
    * [https://developer.mozilla.org/En/HTML/Element/Input developer.mozilla.org/En/HTML/Element/Input]

  • Can not select a PDF file in the file uploader window after clicking the Browse... button for a file type input element.

    After upgrading to 5 (this worked in 4) I can not select a PDF file in the File Upload dialog that appears when I click the Browse button next to an HTML file type input element. The specific HTML element source code has the attribute: ACCEPT="image/*". I can select image files such as jpg, png, tiff, etc. But not PDF. This worked great in Furefox 4 and works in the latest version of Safari.
    The HTML code for the form element is:
    INPUT TYPE="file" NAME="file_1" ACCEPT="image/*" SIZE=35
    The File Upload dialog lists all files with PDF extension as dimmed and not selectable in Firefox 5.
    Can you help?

    Hi Purush
    Unfortunately we couldn't solve the problem. Our IT specialist checked it with SAP directly. SAP doesn't support the SAP KW solution anymore. Therefore we checked-in the document in ".doc"-Format.

  • Input element in web dynpro java not working

    Hi,
    Iam new to webdynpro java. iam trying on external context mapping example from sap help.when i run the application i have assigned a context to a input element that should be accessed  by another other component's window view .when i follow steps given in diagram for external context mapping when i run the application i am not able to enter the data into the input textbox.it became read only.plz suggest me a good example for external context mapping and some times i am not able to enter a value for input field when i assign a context attribute to it.i have assigned a node context to the input element.
    Thanks and regards
    prasad

    Hi Prasad,
    An externally mapped node always exists within the context of a component interface controller and have its isInputElement property set to true.
    External context mapping is possible only for independent nodes of a component interface controller not independent attributes.
    Also, for external context mapping, look at below thread -
    external context mapping
    Regards,
    Sen

  • Loading XML file with missing elements dynamically through ODI

    Hi Guys ,
    I have the below xml file with two nodes Employee and Address. On a daily basis , sometimes the address element might not come in from the source xml file , but my interface has columns mapped to address elements, and hence it can fail due to the source element not being found in the file or data might not get loaded due to the 'and' condition in the sql query generated between the employee and address elements.  Is there a way where i can load the data dynamically where i can search in the file only for the elements (Employee) present and load data only for those elements dynamically?
    XML File:
    <?xml version="1.0" encoding="UTF-8" ?>
    <EMP>
    <Empsch>
    <Employee>
    <EmployeeID>12345</EmployeeID>
    <Initials>t</Initials>
    <LastName>john</LastName>
    <FirstName>doe</FirstName>
    </Employee>
    <Address>
    <WorkPhone>12345</WorkPhone>
    <WorkAddress>Test 234</WorkAddress>
    </Address>
    </Empsch>
    </EMP>
    Thanks ,
    Revanth Tambisetty

    I was able to resolve it by using left outer joins and referring the table structure from the XSD

  • Xsl:element: generate name of element dynamic

    Hi everybody,
    in the target structure I have to create elements dynamically.
    But this does not work:
         <xsl:template name="process-message">
              <!-- params: pattern, role -->
              <xsl:variable name="ELEMENTNAME">
              <xsl:value-of select="anyNode"/>
              </xsl:variable>
              <xsl:element name="($ELEMENTNAME)"> // HERE IS THE ERROR
                   <xsl:apply-templates mode="text"/>
              </xsl:element>
         </xsl:template>
    Any ideas?
    Regards Mario

    Hi Prateek,
    thanks.
    Does not work.
    Regards Mario

  • How to force focus last focused HTML input element when going back in history with backspace?

    SUMMARY: I am a Firefox user with HTML knowledge. I want to be able to configure Firefox to behave in a special manner when I hit backspace. It's something that Firefox already does, BUT NOT ALWAYS. I don't know why it behaves differently in different situations for no apparent reason. I want to be able to configure firefox to ALWAYS behave in the manner I want to. Read below for the precise description.
    When I fill a FORM in a page, wether POST or GET, and press ENTER, it obviously acts as expected: submits the data and brings me to a new page. When I get to the new page, and I press BACKSPACE, Firefox behaves in sometimes like TYPE 1 and sometimes like TYPE 2 (see below), and I can't predict which one he will choose. I want to be able to configure it to behave ALWAYS like TYPE 2.
    TYPE 1 - Firefox reloads the previous page, as if I just entered it for the first time.
    TYPE 2 - Firefox brings me back to the exact same page view I had before pressing ENTER to submit the FORM.
    2.1 - It doesn't reload the page;
    2.2 - It places the page in the same scrolled position I was before (for example, if I scrolled to the bottom of the page to fill the FORM and press enter, after pressing backspace it brings me to the bottom of the page again;
    2.3 - It automatically focus the HTML input element I last typed (the element that was focused at the very moment I pressed ENTER to submit the FORM).
    So, I want to be able to configure Firefox for it to ALWAYS BEHAVE LIKE TYPE 2 whenever I fill a HTML FORM, press ENTER and press backspace after going to the new page. All three details I gave are important. Remember that I've already experienced TYPE 2 in previous versions of Firefox, I just wish to FORCE IT to behave like that ALWAYS (because for no apparent reason, sometimes it behaves like TYPE 1 instead).
    Please let me know if that's possible, and if not, I would really THANK YOU ALL FOREVER if you add this feature to the next version.

    It's set to true.
    I saw the add on you suggested, but it does not fulfill my needs.
    I like the behavior exactly as I said because, after submitting the form, I want to be able to look something in the new page and quickly get back to the form, change the text I wrote in the input element and submit it again, in a matter of one or two seconds only...
    I was able to do that whenever firefox behaved like TYPE 2 (explained above)...
    Thanks for the reply but didn't solve my problem yet...

  • Module pool to create input field dynamically.

    Hi All,
    I have a requirement in module pool programming,
    Where I have one input field,based on the value given in this input I have to get the
    input fields dynamically in the screen.
    Is it possible to achieve this?
    If yes, please do tell me the solution to approach this requirement.
    With Regards,
    S.Asha.

    Hi,
    You can use IMPORT DYNPRO / EXPORT DYNPRO.
    Please check this URL: [Import/Export dynpro not working|Import/Export dynpro not working]
    [EXPORT DYNPRO or GENERATE DYNPRO|EXPORT DYNPRO or GENERATE DYNPRO]
    Cheers,

  • FF differs from other browsers - keystroke is swallowed when creating input element

    Hi all
    I have found a workaround for this problem, so its importance is low, but I will be interested in any comments.
    I am creating a control in javascript which represents an editable grid - a bit like a spreadsheet. The cells consist of 'span' elements with text nodes. I can move around the grid with the keyboard or the mouse.
    The user can signal their intent to edit a cell in three ways - double-click, press F2, or just start typing. When any of these are detected, I hide the span element and replace it with a text input element.
    If they doubleclick or press F2, the initial content of the input element must be the same as the content of the text node. If they type a character, the initial content must be the character they typed.
    In all other browsers I have tested (IE8, Opera, Chrome and Safari) the keystroke entered is still 'active', so it automatically becomes the first character in the input element. In FF, it does not.
    My workaround is to store the keystroke entered in a variable, then create the input element, then update the 'value' attribute of the element with the string value of the keystroke, then call setSelectionRange(1, 1) so that the insertion point is positioned after the character.
    I can live with this, but it would be nice if I could get FF to behave the same as the others, and render the workaround unnecessary.

    A good place to ask advice about web development is at the mozillaZine Web Development/Standards Evangelism forum.<br />
    The helpers at that forum are more knowledgeable about web development issues.<br />
    You need to register at the mozillaZine forum site in order to post at that forum.<br />
    <br />
    See http://forums.mozillazine.org/viewforum.php?f=25

  • IE 10 templates doesn't load in 2008 Error"An Invalid or out of place input element was detected and will be ignored"

    Hi Team,
    In our organisation we have DC running on Windows 2008 R2 server along with more than 1000 clients.
    We recently procured around 600 new desktop, which are shipped with Windows 8.1 OS.
    Now the issue is
    Hence we can't create GPP for IE 10, we have created a GPP for IE 10 from a Windows 8.1 client, but that policy wasn't get pushed to the all other client machine.
    We have tried replacing the ADMX & ADML template in our server to push the GPP, still it doesn't worked.
    When we expand the GPP we get the following error message.
    "An invalid or out of place input element was detected and will be ignored."
    Due to this we are unable to push the GPP for around 600 machines, need your assistance.

    As like the blog page you have shared; I am trying to imply proxy settings for the client machines running with IE11, Hence I have created GPP in one of a Windows 8.1 client machine and noticed it wasn't working  (as they are not compatible with the
    IE 10 and above) in windows 2008 server to push the GPP.
    Based on the Microsoft forums I to replaced the ADMX and ADML files in my Windows Server 2008, for getting the GPP created for IE 10.
    Answering your question, I get that error messages only in my Windows 2008R2, as they dont aware about those settings.
    The WindowsServer OS version is irrelevant for applying/pushing GPP.
    We use WS2003 DC's with GPP (GPP settings for IE11 created with Win8.1 RSAT/GPMC) and it all works perfectly.
    Check your GPP settings with Win8.1 - have you correctly set the "enabled/disabled" by using F5/F6/F7/F8 ?
    http://blogs.technet.com/b/grouppolicy/archive/2008/10/13/red-green-gp-preferences-doesn-t-work-even-though-the-policy-applied-and-after-gpupdate-force.aspx
    http://technet.microsoft.com/en-us/library/cc754299.aspx
    http://www.gruppenrichtlinien.de/artikel/f5-f6-f7-f8-und-f3-gpps-aktivierendeaktivierennicht-konfigurieren/
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Select array elements dynamically

    Hello ... 
    I am trying to write a program where one can select the array elements dynamically from the front panel when the VI is in run mode.
    So far, IC_OpenDevice.vi gives me the various Video formats [It is a 1D array], right now I assume the last but one among this array as an example. But, I would like to design the program in such a way that the user can select any Video Format from the front panel. How do I achieve that ??
    Block Diagram :
    Front Panel:
    Abhilash S Nair
    Research Assistant @ Photonic Devices and Systems lab
    [ LabView professional Development System - Version 11.0 - 32-bit ]
    LabView Gear:
    1. NI PXI-7951R & NI 5761
    2. The Imaging Source USB 3.0 monochrome camera with trigger : DMK 23UM021
    OPERATING SYSTEM - [ MS windows 7 Home Premium 64-bit SP-1 ]
    CPU - [Intel Core i7-2600 CPU @ 3.40Ghz ]
    MEMORY - [ 16.0 GB RAM ]
    GPU - [ NVIDIA GeForce GT 530 ]
    Solved!
    Go to Solution.

    I tried following the same method on my program. 
    However, I get the Error -2147352567 ... Below is the changes I made to my program ... 
    Abhilash S Nair
    Research Assistant @ Photonic Devices and Systems lab
    [ LabView professional Development System - Version 11.0 - 32-bit ]
    LabView Gear:
    1. NI PXI-7951R & NI 5761
    2. The Imaging Source USB 3.0 monochrome camera with trigger : DMK 23UM021
    OPERATING SYSTEM - [ MS windows 7 Home Premium 64-bit SP-1 ]
    CPU - [Intel Core i7-2600 CPU @ 3.40Ghz ]
    MEMORY - [ 16.0 GB RAM ]
    GPU - [ NVIDIA GeForce GT 530 ]
    Attachments:
    Image_Capture_Dev5.vi ‏25 KB

  • Date Format to Input Element

    Hi everyone,
    I am using class object cl_dd_form_area. I have a couple of input elements. Is
    there a way to set those input elements to have a text format like a date format?
    mm/dd/yyyy ???
    Any suggestions would be great.
    Thanks,
    Stephen

    Hi
    U can use the statament WRITE with option USING EDIT MASK:
    DATA: TEXT_IN(8) VALUE '02122008',
               TEXT_OUT(10).
    WRITE: TEXT_IN USING EDIT MASK '__/__/____' TO TEXT_OUT.
    Max

Maybe you are looking for

  • I can't print a document in draft

    When I try print a document in draft the printer use a lot of paper at the same time.

  • How do I download my music library to my new iphone5

    I lost my first iPhone 5 and just bought a new one today. How do I download my music library to my new phone?

  • ASP & Clob fields in the Oracle Database 8i

    Hi All, This is the first time I am posting a question. We are having a problem interfacing ASP pages with Clob fields int he Oracle Database. We are trying to display clob fields in an oracle database from ASP PAge. The ASP Page does a select to a c

  • Flash player memory usage Safari 5.1.7;  OS X 10.7.4

    I've heard quite a bit about the relationship between Apple and Flash but since getting my laptop I've noticed that the two aren't getting along. While browsing the web (±4 tabs, 2 with music playing on youtube) I realised that my brand spanking new

  • Regarding Repository Consistancy Check

    Hi All,          Its very urgent that i have ODI 10.1.3.5 version right now but i am planning to upgrade to 11g. Do i need to Upgrade my ODI to 10.1.3.6 for running RCC or can i directly run RCC on ODI 10.1.3.5. Thanks