Uix SortableHeader in a JSP

All,
Please review the following code:
<uix:column >
<%String sessionColumn = "Site"; %>
<uix:columnFormat columnDataFormat="iconButtonFormat" />
<uix:columnHeader>
<uix:sortableHeader text="Site" value="Site" destination="some-action.do"
sortable="<%=sessionSort.getColumn(sessionColumn)%>" textBinding="Site"/>
</uix:columnHeader>
<uix:contents>
<uix:link textBinding="Site" destinationBinding="NewSite" />
</uix:contents>
</uix:column>
*****************End of code snippet******************
I'm attempting to use a servlet to sort my vo which is working fine. The only problem is uix is sending to request when you click on the up and down icon or the text in the header, which is cause the page to look like it is not being sorted. It seems as though there is a request sent for both the head icon and the text.
Please help.

Hello,
I'm not sure I understand your question. If you don't want sorting enabled on a table column, then use a sortableHeader with the "sortable" attribute set to "no"
If I'm not addressing your concern, please try to rephrase, and also indicate what version of UIX (or JDeveloper) you are using.
Thanks,
Ryan Pollock
UIX Team

Similar Messages

  • HTML Rendering works on UIX-JSP but not UIX-XML or BC4J-JSP

    I built a "custom" renderer following the HOW TO document for HTML rendering. I made a "Drop Down" list that works in a test UIX-JSP application. When I try to attach the DynamicListInputField class to a project created under UIX-XML or BC4-JSP the rendereing does not take affect. No errors, the application runs fine, just no rendereing.
    I made all three projects from the same VO's and the same DynamicListInputField.java. The three projects were Wizard Based and created with:
    "Business Componets UIX XML Application" from the UIX XML Category
    "Business Componets JSP Application" from the UIX JSP Category
    "Business Componets JSP Application" from the BC4J JSP Category
    What is wrong?
    TIA,
    Ed.

    What error you are getting...please provide error details.
    It is working fine for me.
    Rgds
    Bala Murali

  • UIX, Struts, ADF and JSP

    Hi guys. My manager asked me to spell out these different strategies and I fell quite short of an adequate summary. I was wondering if someone could breifly define the following technologies and perhaps explain why you would use them. Additionally, we are embarking on a new project and are unsure of which technology to base it on (we will create a BC4J layer). It is a web application which may end up serving many anonymous users.
    UIX
    STRUTS
    ADF
    JSP (as used in JDev9.0.3.3 - Create a complete JSP application).
    Thank you in advance for your time and consideration!
    ~Rob Lundeen

    Here is a quick one:
    Oracle ADF - A framework for building J2EE applications. Based on the Model-View-Controller architecture. Offers flexability in choosing implementation for the different layers.
    STRUTS - a popular open source controller for managing the flow of Web applications when using the MVC architecture. Used as the controller for Oracle ADF based applications.
    JSP - One way to build your Web user interfaces or View layer in Oracle ADF.
    UIX - Another way to build the View layer for your application. Provides a set of rich HTML component and built-in functionality. Uses a declarative approach to building the page. Will evolve to become a JSF implementation.
    BC4J - Now renamed to Oracle ADF Business Components - one of the way to implement the data source (or Business services) layer in Oracle ADF applications. Other ways include EJBs, Web Services, TopLink, or simple Javabeans.
    I hope this helps,
    Shay,
    Oracle.

  • UIX XML or databound JSPs?

    UIX XML has a significant learning curve. Given a medium size enterprise wide intranet app, wouldn't it be easier/better to just develop it using databound JSP's?
    Also, we are currently using JDeveloper 9.0.3. What architecture would be easier to migrate when upgrading to 10g. JSPs/BC4J or UIX XML w/BC4J ?

    I assume that you are referring to the UIX XML and UIX JSP tags when you say "... wouldn't it be easier/better to just develop it using databound JSP's?". I do not recommend the use of the UIX JSP tags to create an application. We are trying to de-emphasize the usage of these tags, reason being the comming JSF standard and that we will not be able to migrate applications developed with JSP and the UIX JSP tags.
    There should not be any changes to your application (JSP or UIX XML) moving to 10g, but you will not be migrated to use the new model binding available in 10g.
    Thx
    - Jonas

  • Uix:Tree - How to populate in jsp ?

    Hello all,
    I'm having trouble to know how to populate an <uix:tree> in a JSP page. I see the UIX Developer's guide and the SimpleTreeData example and the documentation about uix:jsp is very poor. The data that will be posted in the <uix:tree> was provided by IFS. Then, I populate a DataObjectList with the files name. The point is that I don't know how to make a link between this DataObjectList, populated in a class(*.JAVA) file and the <uix:tree>(*.JSP) file. I wanna know how to use only <uix:jsp> and don't use *.UIX files, only *.JSP and *.JAVA files, ok ?
    Here are some code part :
    This is the JSP file
    <%@ taglib uri="http://xmlns.oracle.com/uix/ui" prefix="uix" %>
    <%@ page import="Hierarquia" %>
    <%@ page import="oracle.cabo.ui.data.DataObjectList" %>
    <%@ page contentType="text/html;charset=windows-1252"%>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>
    Ifs - Publicação de Documentos
    </title>
    </head>
    <uix:document>
    <uix:styleSheet />
    <body>
    <uix:body>
    <uix:pageLayout>
    <uix:contents>
    <uix:form name="teste">
    <uix:contents>
    <%
    DataObjectList dados = null;
    Hierarquia x = new Hierarquia();
    x.conecta();
    x.populateTree();
    dados = x.getResultSet();
    %>
    <uix:formattedText text="Teste" />
    <uix:tree id="arvore_teste" nodesBinding="????" formName="teste">
    </uix:tree>
    </uix:contents>
    </uix:form>
    </uix:contents>
    </uix:pageLayout>
    </uix:body>
    </body>
    </uix:document>
    </html>
    Thanks folks !
    Carlos

    Carlos -
    I believe that the best way to do this is to use scriptable variables, eg:
      <uix:tree id="arvore_teste">
        <%
          // Assuming "dados" contains your tree data
          arvore_teste.setNodes(dados);
        %>
      </uix:tree>See the "Scriptable Variables" section in the "UIX JSP Tag Libraries" chapter of the UIX Developer's Guide for more info...
    Andy

  • JSP uix:table without bc4j

    Hi!
    I am trying to build a page in JSP including UIX tags for tabs and other layout issues. I would like to include a table. I have some fixed tables I want to include. In UIX XML I have seen I can manually build a table using the <table> tag and build up the table with a header, then row-by-row.
    Is it possible to do the same thing in UIX JSP as well? When I try to cut and paste the code from UIX XML to the JSP and prefix all the tags with uix:, all it gives me is "tag is not registered in taglib". Is there another way to build up a table, other then just plain html?
    One of the reasons I want to use the table tag, is to be able to split up long tables over multiple pages. Using BC4J and view objects is not an option!
    Thanks in advance,
    Jeroen van Veldhuizen

    Yes you can.
    Right click your session facade and choose create data control
    Then drag the query results from your datacontrol onto the page and drop as a pivot table.
    If you don't want to use ADF Binding you'll need to create a managed bean for your JSF that has the correct data collection for a pivot table.

  • Use UIX and JSP together

    I have some existing jsp application . I want to integrate it with UIX application that is generated from JHeadStart . jsp application is just 10% of whole project.
    I am not sure this is a good way or not . May be We should use JHeadstart to generate JSP more than UIX . but I think it 's more powerful if I use JHeadstart to generate UIX application .
    What do you recommend for this ?
    and if we have to use both together . How dose JSP application pass parameter to UIX application ? and How dose UIX pass parameter to JSP ?. and How UIX use the parameter that 's sent form JSP ?
    thanks in advance

    If JSP is only 10% you might want tpo consider migrating these pages to UIX.
    If this is not an option, you should be able to use both UIX and JSP pages. However, make sure you create separate struts-config.xml files for the JSP-based subsystem and the UIX-based subsystem. This requires two se[parate ViewController projects, that act as one web application. The same setup that has been aplied to Th JHeadstart demo application in Jhs 10.1.2.1. Check out this article from Duncan Mills as well:
    http://www.oracle.com/technology/products/jdev/howtos/10g/StrutsMultiConfigs/struts_multiconfig_howto.html
    One addition to this articel: the source path property of the ViewController projects shopuld be the same as well.
    As far as communication between the pages is concerned: this is no different then between UIX pages. You can pass request parameters around, and since the pages are running in the same web app, they share the same HttpSession.
    Steven Davelaar,
    JHeadstart Team.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Uix tags in jsp

    hi,
    Is there a capability to include JSTL tags within the uix tags in a JSP page.
    for example a uix:option tag in which the text and value can be a represented by a JSTL tag??
    and I did post earlier in the forums a question that is how to iterate through an datastructure that contains objects using a uix tag IN A JSP PAGE????
    regards,
    vasanth

    Arjuna,
    thanks so much for all your feedbacks.
    regards,
    vasanth

  • Render a uix page

    hi,
    I am just beginning to use uix pages migrating from jsp's and am woundering how to render a uix page. I 've read the developers guide but am not certain how it works as a whole. Are there any examples out there that i can look at?? apart from the dev guide?
    I am not quite able to understand from the dev guide how the context is used to render the information from the java class back to a uix page and how to forward to a uix page through servlet? do I have to use uix servlet (or the controller) instead or else can i use my HttpServlet and use the doGet and doPost the same way we use to render a jsp page? can I include a uix page in a jsp page?? Anybody could please gimme an insight about this!!
    regards,
    vasanth

    hi Arjuna,
    sorry I used the bean from the session as opposed to the question asked by me about using the request servlet.
    I have this problem in my jsp page. I have the bean in the session and am trying to get the info from that bean into my jsp page with uix tags.
    I have the code below.
    Unfortunately it is showing errors. Its a jsp page with uix form and in the Trailing list of the shuttle I have used the object from the session. Again at the bottom I 've used the <uix:xml> tag to do the same for another purpose ie., to iterate through another set of objects.
    the xmlns (namespace) is posing problem. and the tag data: infront of the tag childData in the <contents> tag is also being not recognized as a valid tag when i run the jsp.
    Any help in this regard would be greatly appreciated.
    thanks so much,
    vasanth
    <%-- $Id: controlView.jsp,v 1.5 2003/10/24 00:44:49 je Exp $ --%>
    <%@ taglib uri="http://xmlns.oracle.com/uix/ui" prefix="uix"%>
    <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%>
    <%@ page import="java.util.*, com.avega.portlets.domain.*, com.avega.portlets.view.*;" %>
    <%@ page contentType="text/html;charset=windows-1252" %>
    <uix:form method="GET" name ="portletForm" >
    <!-- implementation of shuttle -->
    <uix:shuttle name ="measureShuttle" leadingHeader="Available Measures"
    trailingHeader="Selected Measures" size="3">
    <uix:leading >
    <uix:list multiple="true" name="leadList">
    <%Set test = (Set)request.getAttribute("list");
    Iterator itr = test.iterator();
    while (itr.hasNext()){
    PanelMeasure pan = (PanelMeasure)itr.next();
    String name = pan.getPortletMeasure().getName();
    System.out.println(name);
    %>
    <uix:option text = "<%= name%>"value="<%= name%>" ></uix:option>
    <% } %>
    </uix:list >
    </uix:leading>
    <uix:trailing>
    <uix:list multiple="true" name="trailList" >
    <uix:contents data:childData="@panelMeasures@controlViewBean@httpSession">
    <uix:option data:text="name@portletMeasure" value = "name@portletMeasure"></uix:option>
    </uix:contents>
    </uix:list>
    </uix:trailing>
    </uix:shuttle>
    <!-- implementation of calender -->
    <uix:dateField name="dateBox" />
    <!-- implementation of calender -->
    <uix:submitButton name="Submit" text="Submit" formName="portletForm" value="Refresh" />
    <uix:submitButton name="hideControls" text="Hide Controls" value="hideControls" />
    <!--For the Dimensions -->
    <uix:xml>
    <dataScope xmlns="http://xmlns.oracle.com/uix/ui" xmlns:demo="http://example.org">
    <styledText text="Dimensions"/>
    <contents data:childData="panelDimensions@controlViewBean@httpSession">
    <list>
    <option data:text="name@portletDimension">
    </option>
    </list>
    </contents>
    </dataScope>
    </uix:xml>
    </uix:form>

  • Jdev 10.1.2 [UIX]: How do you link tabs and its globalheader options?

    Hello guys, I've been reading the documentation about tab/globalheader/sidebar. But I haven't found the way to "filter" the links in globalheader as a tab is selected in a page. All the examples are statically defined.
    How is it done?, dynamically keeping some state in memory for the selected indexes?
    or is it easier to have many different pages for each state of selection?
    I also want to conditionally render the shown options based on the user's jazn roles.
    So, I was thinking the next solution and I write it here hoping that someone could tell me if I'm on the right track:
    Use statically defined pages for each state of selection (and so content) instead of trying to dynamically call content (in a target frame) and keeping selection state somewhere in memory. And conditionally display the options in each page (using switcher) based on the user's jazn roles.
    Well, thank you all.
    Greetings.
    Fer.

    repost
    Just asking for guidelines on how to design the menuing system for an application using UIX and Jazn (not JSP, but if JSP is better I could go for it).
    Thanks,
    Fer

  • Bc4juix:table and Columns with links  (Jsp tags)

    I'm tring to create a table with an image link that will pass the values of other columns on the url. The problem is I can't get the attribute values from the table. Here is a sample of my code:
    <bc4juix:Table datasource="ds1" width="100%" >
    <uix:column>
    <uix:columnHeader>
    <uix:sortableHeader text="Orc" value="Orc"
    sortable="no" />
    </uix:columnHeader>
    <uix:contents>
    <uix:image destination="<%=url%>" source="new.gif" />
    </uix:contents>
    </uix:column>
    </bc4juix:Table>
    Please help me!!!
    Jeff

    Urgent problem please help.

  • Oracle UIX Framework...

    Hi everyone, I'm learning a lot about frameworks these days and I have a few questions for you guys about Oracle's UIX Framework...
    First of all, I'm under the impression that this framework is not really J2EE compliant? It uses uix files instead of jsp's so in my mind this is a disadvantage right from the start. Also, I'm under the impression that not a lot of people out there are using uix so it makes it hard to find ressourses for it.
    The VIEW part seems to have lots of limitations. Everything is stucked into a layout and it's almost impossible to use a custom 'look and feel' so all sites developed with uix have the BLAF look. Am I mistaking or you must stick with BLAF while developing with UIX?
    I know in the future that UIX will use JSF but until this is done, UIX components seem hardly customizable?
    Last but not least, I'm not under the impression that UIX is user friendly, I dont think a common java programmer can get very good in UIX within days, I'm feeling it's more a mater of months.
    I'd like to have your thoughts on UIX, advantages as well as disadvantages. Also, does anyone know if there will be a framework for JSF? Somekind of framework that will allow common programmers to use efficiently JSF without knowing all the details of JSF.
    Thanks a lot!

    Hi,
    You can use the UIX taglibs & actually create jsp files instead of UIX files.
    Infact you can plan to use UIX taglib exclusively for your view layer & use any framework for your web application i.e. for eg. struts for the forms & action handling.
    The trick really lies in integrating the UIX taglib & accessing the custom tags in your JSP pages. Further what are the complete set of jar files which one would require to assemble the complete EAR or WAR files.
    in web.xml put the following entry
    <taglib>
    <taglib-uri>/WEB-INF/struts-html.tld</taglib-uri>
    <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
    </taglib>
    Better still if you are using JDeveloper (before 10.1.3 version) then you can just use the UIX wizard to create a UIX page (it shows you the preview ).
    After you have created a .uix file convert it to a .jsp file ..
    Rules are pretty simple to follow while doing this conversion..
    eg. of a simple UIX file and the equivalent JSP ..
    <?xml version="1.0" encoding="windows-1252"?>
    <page xmlns="http://xmlns.oracle.com/uix/controller"
          xmlns:ui="http://xmlns.oracle.com/uix/ui"
          xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
          xmlns:html="http://www.w3.org/TR/REC-html40"
          expressionLanguage="el">
      <content>
        <dataScope xmlns="http://xmlns.oracle.com/uix/ui">
          <provider>
            <!-- Add DataProviders (<data> elements) here -->
          </provider>
          <contents>
            <document>
              <metaContainer>
                <!-- Set the page title -->
                <head title=""/>
              </metaContainer>
              <contents>
                <body>
                  <contents>
                    <form name="form">
                      <contents>
                        <tableLayout>
                          <contents>
                            <rowLayout>
                              <contents>
                                <cellFormat>
                                  <contents>
                                    <formattedText text="Login"/>
                                  </contents>
                                </cellFormat>
                                <cellFormat>
                                  <contents>
                                    <textInput name="login"/>
                                  </contents>
                                </cellFormat>
                              </contents>
                            </rowLayout>
                            <rowLayout>
                              <contents>
                                <cellFormat>
                                  <contents>
                                    <formattedText text="Password"/>
                                  </contents>
                                </cellFormat>
                                <cellFormat>
                                  <contents>
                                    <textInput name="pwd" secret="true" maximumLength="10"/>
                                  </contents>
                                </cellFormat>
                              </contents>
                            </rowLayout>
                            <rowLayout>
                              <contents>
                                <cellFormat/>
                                <cellFormat>
                                  <contents>
                                    <button text="Submit"/>
                                  </contents>
                                </cellFormat>
                              </contents>
                            </rowLayout>
                          </contents>
                        </tableLayout>
                      </contents>
                    </form>
                  </contents>
                </body>
              </contents>
            </document>
          </contents>
        </dataScope>
      </content>
      <handlers>
        <!-- Add EventHandlers (<event> elements) here  -->
      </handlers>
    </page>The equivalent JSP..
    <uix:page  expressionLanguage="el">
        <uix:dataScope >
          <uix:contents>
            <uix:document>
              <uix:metaContainer>
                <!-- Set the page title -->
                <uix:head title="Template"/>
              </uix:metaContainer>
              <uix:contents>
                <uix:body>
                  <uix:contents>
                       <uix:pageLayout>
                       <%-- Embed The JSPF here --%>
                       <%@ include file="jspf/globalTop.jspf" %>
                       <%-- Message Box --%>
                         <uix:switcher childName="<%=  isError %>">
                            <uix:case name="true">
                              <uix:messageBox automatic="false"
                                text="Error"
                                messageType="error"
                                message="Either User Name/ Or Password is wrong"/>
                            </uix:case>
                          </uix:switcher>
                       <%-- Message Box --%>
                       <%-- Body Content --%>
                         <uix:rowLayout>
                         <uix:contents>
                            <uix:form name="form" destination="login.do" method="POST">
                              <uix:contents>
                                <uix:tableLayout>
                                  <uix:contents>
                                    <uix:rowLayout>
                                      <uix:contents>
                                        <uix:cellFormat>
                                          <uix:contents>
                                            <uix:spacer width="10" height="10"/>
                                          </uix:contents>
                                        </uix:cellFormat>
                                      </uix:contents>
                                    </uix:rowLayout>
                                    <uix:rowLayout>
                                      <uix:contents>
                                        <uix:cellFormat>
                                          <uix:contents>
                                            <uix:rawText text="Login"/>
                                          </uix:contents>
                                        </uix:cellFormat>
                                        <uix:cellFormat>
                                          <uix:contents>
                                            <uix:textInput name="login" columns="10"/>
                                          </uix:contents>
                                        </uix:cellFormat>
                                      </uix:contents>
                                    </uix:rowLayout>
                                    <uix:rowLayout>
                                      <uix:contents>
                                        <uix:cellFormat>
                                          <uix:contents>
                                            <uix:spacer width="10" height="10"/>
                                          </uix:contents>
                                        </uix:cellFormat>
                                      </uix:contents>
                                    </uix:rowLayout>
                                    <uix:rowLayout>
                                      <uix:contents>
                                        <uix:cellFormat>
                                          <uix:contents>
                                            <uix:rawText text="Password  "/>
                                          </uix:contents>
                                        </uix:cellFormat>
                                        <uix:cellFormat>
                                          <uix:contents>
                                            <uix:textInput name="password" columns="10" secret="true"/>
                                          </uix:contents>
                                        </uix:cellFormat>
                                      </uix:contents>
                                      </uix:rowLayout>
                                      <uix:rowLayout>
                                        <uix:contents>
                                          <uix:cellFormat>
                                            <uix:contents>
                                              <uix:spacer width="10" height="10"/>
                                            </uix:contents>
                                          </uix:cellFormat>
                                        </uix:contents>
                                      </uix:rowLayout>
                                      <uix:rowLayout>
                                        <uix:contents>
                                          <uix:cellFormat/>
                                          <uix:cellFormat>
                                            <uix:contents>
                                               <uix:button name="admin"
                                                  text="Submit" onClick="OnSubmitForm()"/>
                                            </uix:contents>
                                          </uix:cellFormat>
                                        </uix:contents>
                                      </uix:rowLayout>
                                    </uix:contents>
                                  </uix:tableLayout>
                                </uix:contents>
                              </uix:form>
                            </uix:contents>
                          </uix:rowLayout>
                       <%-- End Of Body Content --%>
                    </uix:pageLayout>                  
                  </uix:contents>
                </uix:body>
              </uix:contents>
            </uix:document>
          </uix:contents>
        </uix:dataScope>
    </uix:page>

  • UIX Info

    I am a bit confused. At Oracle Developer Days, we were told that UIX is going to become Oracle's implementation of Java Server Faces in the production release of JDeveloper 10g. The Oracle documentation states that UIX is compatible with JSF and JSP.
    However, as far as I see, a UIX is not a JSP document (or JSP page). It needs to be interpreted by the UIX servlet in order to turn into a JSP document that is then fed to Struts. UIX is vaguely related to XUL and UIML but is essentially an Oracle proprietary technology.
    Am I correct? Thanks.

    UIX is in many ways a predecessor of Java Server Faces. UIX provides a rich component set, where components have built-in behaviors. Secondly, the lifecycle of a .uix page is similar in some ways to JSF, the .uix file is parsed into a tree of components, a set of Renderers are applied to that component tree that generate output appropriate to the particular user agent. A component and its rendering are separated which allows for different sets of renderers for different look and feels and different devices.
    It is no accident that UIX is similar to Java Server Faces, the UIX team at Oracle has been one of the most active contributors in the expert group for the Java Server Faces JSR. When Java Server Faces is released, the next version of JDeveloper will provide all of the existing set of UIX components as Java Server Faces components. Customers writing UIX 2.x applications
    today will have a painless and automated transition
    over to the next version of the UIX components and
    Java Server Faces. In addition, there are many UIX features that the first specification of Java Server
    Faces doesn't include, and customers will continue to be able to use these features.
    I'm only scratching the surface here, we plan to put up a white paper on OTN that provides a detailed roadmap for UIX including Java Server Faces support.
    If you'd like to learn more about UIX, please read the UIX Developer's Guide in JDeveloper 10g.
    By the way, UIX isn't turned into JSP by the UIX Servlet, but it is possible to embed a UIX component tree in a JSP page by using the UIX JSP tag library.

  • Sample UIX XML requested for standard functionality

    I am learning UIX XML.
    Using scott's emp and dept tables, I have used the wizards to generate a UIX XML application using BC4J.
    I would like to enhance the generated UIX XML.
    For example...
    1. The UIX XML pages that allow inserts/updates to the EMP view object. I would like to have a LOV on the dept_no field so user can use this. Typically any foreign key field to have a LOV with a lookup on the master table.
    2. Also I am having some difficulty with radio groups, list items etc that are based on hardcoded values or data in the database. Have you any complete example code. The on-line documentation shows examples but not the whole code working together. Have you got a complete sample app that shows these features?
    3. Have you any UIX XML examples that use FORMS containing text input items, lists, radio groups etc that ARE NOT based on BC4J...then have the event logic access BC4J and do the inserts/updates.
    Thanks,
    Paul.

    Paul,
    Like you I have been learing using the scott schema.
    I too have struggled with this LOV issue in UIX-XML and UIX-JSP and BC4J-JSP. UIX-JSP can allow for a drop down list based upon custom properties in the VO and a "custom" Java class. The HOW-TO Page has an excellent example that when followed (with some tweaks to get what I wanted) the drop down list worked. I know it's not an LOV (like in Forms) but for small FK lookups drop down lists seem to be the requests of most users. But these drop down lists will not happen in UIX-XML or BC4J-JSP. Seems aierd to me but hey, I'm just learning too.
    My point is that I too have asked question after question on this forum about UIX-XML or about implementing fearures of UIX-XML in other frameworks (like coulmn sorting) and have gotten zero helpful repsonses. There were some comments about how 9.0.3 would soleve some of these issues, but no one seems to be able to explain a way to show a "broken" example so that I will be elated when 9.0.3 comes out and works.
    If you get an answer or some helpful pointers pelase forward them to me at [email protected]
    And I apologize for making your heart get all a flutter when you saw the reply count grow by "1" only to find that it's just another loser who can't make the simple things in this IDE work.
    Ed.

  • BC4J JSP and EnterKey event

    Hi, I had a web search application with "search" submit button linked with JboEvent defined by DatahandlerComponent.jsp as "search" event.
    It is not UIX or Strut, just JSP and BC4C.
    How can I let user use browser
    Enter key instead of the "Search" button to perform the same search function?
    Any suggestions or ideas.
    Thanks in advance.

    Michael,
    Thank you for your report.
    I filed a bug against the BC4J tag library to support XHTML. Bug 2645909.
    This will be fix in a future release.
    Meanwhile your options are:
    1) Not using the UrlEvent tag and build the url using the JboEvent, JboEventVo, jboRowKey, amId and currentPath parameters.
    2) Extend the current UrlEvent tag implementation to provide this functionality.
    The sources is provided for all these tags. You can open it from JDev when asking for the class "oracle.jbo.html.jsp.datatags.UrlEventTag" or look into <JDEV_HOME>\BC4J\src\bc4jhtmlsrc.zip for UrlEventTag.java.
    Charles.

Maybe you are looking for

  • Keyboard and Mouse no longer recognized when Boot Camp'ing into Windows XP

    Mac Pro early 2008, Mac OS X 10.6.2, all updates applied. WinXP SP3. Standard wired Apple smooth mouse. I normally use Parallels 4.0 to access my Windows XP on this Mac. That's been working fine and continues to do so. I upgraded to Snow Leopard not

  • I phone discharges after sofwear upgrade

    I have read about others having this problem but no Apple fix. My phone with heavy use phone, email, texts etc always lasted over a full day on a charge and mort than a few days over weekends with little business activity Just upgraded phone soft wea

  • I get an "error 4444" when I try to sign in to App Store

    Ever since I upgraded to iOS 6, I can't log into App Store or iTunes. I even tried rebooting my iPad 2 to no avail. Does anyone no a fix for this?

  • Look at classes in .jar

    i want to decompose a .jar file so i can look at all the classes and figure out how it works. how do i do this? is it wrong/impossible to do this? thanks

  • QTPro Could not save file "The movie contains an in correct time value"

    QT Pro 7.6.6 Could not save file "The movie contains an in correct time value" I'm exporting files out of Priemer Pro CS5 with the H.264 "vimeo HD settings" .mp4 files and the files look dull, low contrast and low color saturation, when played in QT1