How do I show use poplist in uix pages?

Ok here is my problem which I will try to relate it in HR schema example.
I got a uix page showing departments and employees(one-many) master detail.
I got another edit uix used to edit old employees or create new employees.
In this edit/create uix I don't want the user to see the id's like DepartmentId, ManagerId, JobId etc...instead I want them to see the corresponnding Names.
How do I achieve this? Could some one give me a walk through or some sort of hint?

Hi,
Have you checked out the "Oracle ADF UIX How-To's" at http://www.oracle.com/technology/products/jdev/howtos/index.html?

Similar Messages

  • How to import user defined class in UIX page?

    Does anyone know how to import user defined class in UIX page so that the class can be called in the javascript in the UIX ?
    Thks & Rgds,
    Benny

    what you are referring to is not javascript.
    it is JSP scriptlets. These are very different.
    In order to keep a strict separation between View and Controller, it is not possible to run arbitrary java code from within your UIX code.
    However, you can run java code from within a UIX event handler; see:
    http://otn.oracle.com/jdeveloper/help/topic?inOHW=true&linkHelp=false&file=jar%3Afile%3A/u01/app/oracle/product/IAS904/j2ee/OC4J_ohw/applications/jdeveloper904/jdeveloper/helpsets/jdeveloper/uixhelp.jar!/uixdevguide/introducingbaja.html
    event handler code is run before the page is rendered.

  • How to print a form in a UIX page

    I want to print a form in a UIX page? I have tried a lot of methods,but they did not work.I only want to print the contents in the form ,not including the contents of the page title ,tab bar,etc. Can someone tell me?Thank you!

    Yu -
    You'll want to use the "printable" facet when rendering your page. The following sample page contains a button which allows the user to view the "printable" version of the page. It uses the <showFacet> event handler to switch to the printable facet:
    <?xml version="1.0" encoding="UTF-8"?>
    <page xmlns="http://xmlns.oracle.com/uix/controller"
          xmlns:ui="http://xmlns.oracle.com/uix/ui"
          xmlns:data="http://xmlns.oracle.com/uix/ui"
          xmlns:ctrl="http://xmlns.oracle.com/uix/controller">
    <content>
      <pageLayout xmlns="http://xmlns.oracle.com/uix/ui">
      <tabs>
        <tabBar>
        <contents>
           <link text="Hello"/>
           <link text="World"/>
        </contents>
        </tabBar>
      </tabs>
      <pageButtons>
        <pageButtonBar>
        <contents>
          <button text="Show Printable Page" ctrl:event="showPrintable"/>
        </contents>
        </pageButtonBar>
      </pageButtons>
      <contents>
        <text text="Printable area"/>
      </contents>
      </pageLayout>
    </content>
    <handlers>
      <!-- Use the showFacet event handler to switch over to
           the "printable" facet -->
      <event name="showPrintable">
        <showFacet name="printable"/>
      </event>
    </handlers>
    </page>Andy

  • How to create an email link in UIX page

    I am trying to create a simple email link in my UIX page in order to get feedback from users.
    I don't seem to find out how to do it. Can someone please help me ASAP.
    Many Thanks,
    Qian Dong

    Hi Atilio Ranzuglia,
    Thank you so much for the help. It took me a while yesterday trying to figure out how to do
    what I originally thought was a very simple thing, I was unable to find any helpful information.
    Your help saved a lot of time for me, I am very appreciative of it.
    Many thanks again,
    Qian Dong

  • How can specify the max width of uix pages in a browser

    If I have 7 tabs in my jheadstart application. This
    works fine on a 1200X1000 resolution but on a
    1024X720 resolution the users have a scrollbar
    how can i specify the max resolution in jheadstart

    Tnx Steven "God" Davelaar ;-)
    Edwin:
    When you are about to edit the tab-bars (any level),
    make sure you disable the tabbar generation (service-
    level). Each uix-page calls this tabbar with a parameter
    for selected-tab (0 to n). If you edit the *tabbar.uit
    and for example, merge 2 tabbars into 1 (with a level 2
    globalheader for further navigation), don't just delete
    the code in the uit-file, but simply set one of them to
    rendered=false (instead of
    data:rendered=groupname@infoTable:something). This will
    not screw up the selected-tab settings on all pages where
    the selected tabbar is on the right (higher number) of
    your merged one.
    And have fun with UIX (I know you will)

  • How can i browse using webbrowser to many pages one by one and waiting for each page to be completed loaded ?

    I have this method:
    string filename = "";
    private void GetHtmls()
    for (int i = 0; i < numberofforums; i++)
    uri = sourceUrlId + forumsIds[i] + sourceUrlNumber + 1;
    filename = uri.Substring(49);
    webBrowser1.Navigate(uri);
    And in the document completed event:
    string forums;
    private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
    if (e.Url.ToString() == uri)
    if (retrivedForumsInfo == true)
    targetHtmls = (combinedHtmlsDir + "\\"+ filename + ".txt");
    htmlloaded = true;
    StreamWriter write = File.CreateText(targetHtmls);
    write.Write(webBrowser1.DocumentText);
    write.Close();
    The problems are:
    1. When it's getting to the completed event already it's saving the text file with the id number of the second one in the ID's list.
        If in the method GetHtmls i used a breakpoint and see that forumsIds is 93 the first one when it's getting to the completed event  i see that the id there is already the second one like the loop continue or something.
       And if i will wait with the break point and click continue after some seconds the id will be the fourth or fifth depend on how long i'm waiting before click continue.
    2. When it's getting to the completed event after saving the text file it's not coming back to the GetHtmls method and not continue the loop and not navigating to the next page.
    I need to do it this logic:
    Make for loop navigate to the first page now wait somehow when it finished to save the text file of the first page in the completed event only then jump back to the GetHtmls method and continue the loop navigate to the second page and again wait/hold untill
    saving the text file of the seocnd page in the completed event. And so on all the loop in the GetHtmls.

    I tried it this way now and it's working untill the variable count is 5 then it stop and never continue i can't figure out why it stop and why when it's getting to 5(It's doing the 5 time but then stop and not continue).
    In the top of the form i did:
    private int counter = 1;
    private int countpages = 1;
    private int forumId = 0;
    private string uri;
    private bool htmlloaded = false;
    Then in the GetHtmls method:
    string filename = "";
    private void GetHtmls()
    uri = sourceUrlId + forumsIds[0] + sourceUrlNumber + 1;
    filename = uri.Substring(49);
    webBrowser1.Navigate(uri);
    Then in the document completed event:
    private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
    if (e.Url.ToString() == uri)
    if (retrivedForumsInfo == true)
    targetHtmls = (combinedHtmlsDir + "\\" + filename + ".txt");
    StreamWriter write = File.CreateText(targetHtmls);
    write.Write(webBrowser1.DocumentText);
    write.Close();
    htmlloaded = true;
    timer1.Enabled = true;
    Then in timer1 tick event:
    private void timer1_Tick(object sender, EventArgs e)
    if (htmlloaded == true)
    uri = sourceUrlId + forumsIds[counter] + sourceUrlNumber + 1;
    filename = uri.Substring(49);
    webBrowser1.Navigate(uri);
    htmlloaded = false;
    timer1.Enabled = false;
    counter++;
    countpages++;
    I tried to use try and catch and a break point i couldn't find why it stop and what make it stop and what stopped ? Maybe the timer1 never continue ? But if the timer not continue why it stop when counter is 5 ?
    The number of id's in the List<int> forumsIds is 547 and it's equal to the number of forums 547.
    I still can't figure out why it stop on counter 5 and what make it stop.

  • How can I show the progress of web page loading only in the right bottom of screen?

    When I downloaded the first Firefox upgrade that had no progress bar, I somehow found out how to stop the new progress bar (that shows all the progress in web addresses rather than a progressive bar) from jumping around in the bottom left or right of the screen. I had it only appearing in the bottom right of screen. Now a new version of Firefox has been downloaded and is once again jumping around from left to right depending what else is showing on the screen. Most annoying, how do I get it to always appear & remain in only the bottom right again.
    Thanks in anticipation, Katnko.

    Hi Cor-el, thanks for your help. Is there a help file anywhere for Status-r-Evar? I don't understand which way to set all the Options, as it is great having the green status bar showin once again, but I wouldn't mind keeping the name of the file that is progressing as well. Do you understand what I mean? Thanks, Katnko

  • How can to show picture in my dynamic page?

    I have a dynamic page where I want to show a logotype or picture in the header same than a template, how can to do it?
    thank by any idea.

    Add in the head:
    <base href="http://desarrollo/pls/portal30/"></HEAD>
    and when you want to call a image:
         <td align=left valign=bottom><img SRC=/images/logo.jpg BORDER=0></td>
    where your image is logo.jpg ....

  • How to clean recent used fonts dropbox on Pages '09?

    Hi everyone!
    I've searched a lot but can't resolve this. I can't clear my recent used fonts on Pages '09. I'm not talking about the box opened with cmd+T, I'm talking about the dropbox next to the font size, bold, italic, etc.
    I've tried to delete the com.apple.iWork.Pages.plist but it only clears the cmd+T box.
    Could you guys help me?
    Thanks a lot!

    This list is stored in Pages preferences file.
    You may remove the entire array entitled : SFIFontCacheRecents
    or remove some fonts items.
    Yvan KOENIG (VALLAURIS, France) jeudi 26 avril 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.3
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k

  • Showing and Hiding Columns in an UIX page

    How To Dynamically Hide and Show Columns in a UIX Page

    The following will display or hide a column Address depending on the value of sessionScope.showAddress:
    <column rendered="${sessionScope.showAddress == null ? 'false' : sessionScope.showAddress}">
    If you have access to MetaLink, I would advise you to have a look to Note 306887.1: How To Dynamically Hide and Show Columns in a UIX Page
    Regards,
    Didier

  • How to handle 2 database tables in a single UIX page?

    Hi all,
    I have to use data from two different tables in the database but using only one uix page.
    Is it possible? Can I use "uiXML Browse an Edit Form Wizard"?
    Thanks in advance,
    Ferrer

    Yes, it is possible.
    To save the time of creating the combined page manually, you can generate the individual pages, combine the registryDef, content and handlers sections to get your desired user interface.
    Kind Regards.

  • How-to show XML code into HTML page???

    I have not formatted String,
    String str = <target name=\"-post-compile\"><obfuscate><filesetdir=\"${build.classes.dir}\"/ > </obfuscate></target>;
    how I can show this String on Web page in the this format?
    <target name="-post-compile">
            <obfuscate>
                  <fileset dir="${build.classes.dir}"/>
            </obfuscate>
    </target>Thanks.

    You would need to escape all of the characters. ie < should become &lt; and > should be &gt etc etc; You would probably also have to put in the tabs/<br> tags in appropriate places.
    The JSTL c:out tag which automatically escapes characters for you, but how you want it laid out is completely up to you to program.

  • How do I show...

    Hi,
    Quick question. I don't really know how hard this is to do
    but if anyone could help me out with how to do this that would be
    great... How do I show what the top visited pages are on a website
    and how do I show what the most recent pages added to the website
    are. Thanks in advance.

    Could someone help me with my question please?

  • Insert Record in Master-Detail by UIX Pages

    I am using Jdeverloper10g v10.1.2 ,ADF,UIX Pages
    My problem is :
    How i can insert a record by UIX Page , Because when i try to inserted a record by click on Create Button there is no action happen .
    So , is there any document can help me in Master_Detail_By_UIX
    with regards
    Naif

    Hi Leo,
    I know that but my application is already set up and I have all the reports and forms in place. However I do not know how to enter an update/insert statement when calling my form. I only can have update or insert.
    for update is working correctly and the reports/forms affected are quite complex I do not want to change anything on it but enter a detail recordset for each record in master table only containing foreign key id and id. then the update statement will work. At the moment I have to save the form (detail table) once to create th primary id and after that I can store values... but that is not feasible for end users...
    Tino

  • My new podcast episodes are not showing up on the main page

    my podcast page hasn't updated in 2 weeks even though i've been adding new episodes to my feed:
    http://www.cofc.edu/~hiottm/RSS.XML
    When i click SUBSCRIBE, i see the newest episodes there, so iTunes is reading my feed correctly, but why aren't they showing up on the main page?
    http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=200063590
    Does anyone know if there is a LIMIT to how many will show up on that main page? I have 45 being displayed, but my feed has 59 separate items. I've not read anything that indicates there is a limit.
    any help would be appreciated!!
      Windows XP  

    my podcast page hasn't updated in 2 weeks even though
    i've been adding new episodes to my feed:
    http://www.cofc.edu/~hiottm/RSS.XML
    When i click SUBSCRIBE, i see the newest episodes
    there, so iTunes is reading my feed correctly, but
    why aren't they showing up on the main page?
    http://phobos.apple.com/WebObjects/MZStore.woa/wa/view
    Podcast?id=200063590
    Does anyone know if there is a LIMIT to how many will
    show up on that main page? I have 45 being
    displayed, but my feed has 59 separate items. I've
    not read anything that indicates there is a limit.
    any help would be appreciated!!
      Windows XP  
    I have exactly the same problem with the feed from my podcast at
    http://angus_sessions.podOmatic.com/rss2.xml
    My other podcast downloads fine.
    The same problem is experience in iTunes on both my Mac and PC so it appears to be aniTunes issue, particularly since Juice has no problem updating using the same rss feed.
    It would be great if the iTunes team would comment.
    iMAc   Mac OS X (10.4.3)   Issue also on XP Pro

Maybe you are looking for

  • ITunes will not start because of QuickTime

    I installed the new version of iTunes and I click the icon, but I get an error message that says "QuickTime failed to initialize (error -2096)" I have tried restarting, reinstalling, uninstalling/deleting, and even trying for an older version of iTun

  • How to set the default value of a database column to NULL

    Hello, I want to set the default value of a column (VARCHAR2(20) to NULL, nut I cannot figure out to do this. I tried the following editing the offline table with JDeveloper: Default Value : <empty> -> On database NULL Default Value: '' -> On databas

  • Planning function and planning sequence of Design studio new features!!

    Hi Experts Recently I have updated my design studio to 1.3 and happy to see many new updates. Meanwhile i saw some new features add planning function and planning sequence. As per my understanding, Using this features we can enter data at run time. M

  • Itunes crashes when i attatch new nano.. works on another compuetr though.

    i have done everything that i heave read... help! my nan crashed itunes instantly. and sends an error report to microsoft.

  • Crashing in 10.4.4

    Ever since I downloaded the update (yesterday) Mail has been crashing whenever I try to open a message or compose a new one. Does anyone have the same problem....if so....is there a way to fix it?