Onfocus/onblur attributes not rendering in inputText

So I have a tag that calls a javascript function that displays and hides a yahoo calendar. (yeah I know there is a tomahawk component for this, but there are some functionality that I need that is better in the yahoo calendar). Anyways, when I was running 1.2_04 the onfocus and onblur attribute would render, but I upgraded my glassfish server to 1.2_08 and now those attributes no longer render. I don't see any changes in the documentation that would indicate a change in behavior for this component. Here is my line of code:
<h:inputText id="end" label="End Date" validator="#{QuickSearchManagedBean.validateEndDate}" required="true"
value="#{QuickSearchManagedBean.end}"
onblur="hideCal('endContainer');updateBeginDate(this.value);"
onfocus="clicked_input = this; showCal(this,'endContainer',end)" styleClass="calendar">
              <f:convertDateTime timeZone="#{QuickSearchManagedBean.defaultServerTimeZone}" pattern="MM/dd/yyyy"/>
</h:inputText>

Here is some information which might help in troubleshooting: since JSF 1.2_05 there was an update in the API regarding to rendering the on* attributes. So, if you're using jsf_impl.jar of version 1.2_05 or newer, but are still using the older jsf-api.jar, then the on* attributes won't render. Make sure that the Glassfish /lib contains the right jsf-api.jar for the jsf_impl.jar and also make sure that there is no older API somewhere else in the classpath, like /WEB-INF/lib.

Similar Messages

  • PanelGrid with binding attribute not rendering when event on page fires

    I am having a similar issue with my components not being rendered from a dynamic binding attribute as described by this post:http://forum.java.sun.com/thread.jspa?threadID=671672 but for different reason. I have combed the forum and other sources for a week now, tried numerous variations of this based on suggestions I've read for rendering dynamic components and am unable to find the problem. I would appreciate guidance as I don't know what else to do and I imagine there is something basic about the JSF flow layout or component classes I am not doing correctly.
    From a high level, I have a page with two panel groups. The first contains a list of command links (like a menu) that have an actionlistener that populates a list of QueryVariable objects called filterCriteria in the backing bean based on the selection made and then calls a function to update components in the second panel. The second panelGroup contains a panelGrid with a binding attribute that constructs a dynamic set of input fields based on the content of the filterCriteria list. When I first naviagate to this page from another page, the fields are rendered properly. However, if I then select a commandLink from the menu, the panelGrid disappears and is not rendered.
    I've stepped through the code in a debugger and my actionlistener is called when I select a command link. However, the binding attribute method is not called at this time, so I added a direct call to it from the action listener. I know the actionlistener is working because I've verified it in the debugger and if I navigate away and come back to the page, then the binding method is called and the new selection is reflected in a rendered panelGrid. Why is it not rendering though when I first select the commandLink and the page is updated. Also, fyi, there is an action method for the commandlinks but it returns null;
    FWIW, I'm using MyFaces and Facelets in my application.
    Below is my code. This is inside a managed session bean:
    JSF Snippet:
    <h:panelGrid id="inputVarsTable" columns="3" binding="#{query.table}"/>
         public HtmlPanelGrid getTable() {
              if(table == null)
                   table = new HtmlPanelGrid();
              return constructSearchInputTable();               
         public void setTable(HtmlPanelGrid table) {
              this.table = table;
      // Updates table component to reflect filterCriteria
         public HtmlPanelGrid constructSearchInputTable()
              HtmlOutputLabel outLabel;
              HtmlOutputText outText;
              HtmlInputText  inText;
              HtmlMessage message;
              List<UIComponent> children;
              ValueBinding vb;
              FacesContext facesContext = FacesContext.getCurrentInstance();
              UIViewRoot uIViewRoot = facesContext.getViewRoot();
            Application application = facesContext.getApplication();
              children = table.getChildren();
        children.clear();
              try {
                   for (int i = 0; i < getFilterCriteria().size(); i++) {
                        QueryVariable var = getFilterCriteria().get(i);
                        String id = "var" + i;
                        //<h:outputLabel for="#{var.name}" styleClass="label">
                        outLabel = new HtmlOutputLabel();               
                        outLabel.setFor(id);
                        outLabel.setStyleClass("label");
                        //  <h:outputText value="#{var.name}" />
                        outText = new HtmlOutputText();
                        outText.setValue(var.getName());
                        outText.setParent(outLabel);
                        outLabel.getChildren().add(outText);
                        outLabel.setParent(table);
                        children.add(outLabel);
                        //<h:inputText id="#{var.name}" value="#{var.value}" required="true" />
                        inText = new HtmlInputText();
                        inText.setId(id);
                        String bind = "#{query.filterValues['" + var.getName() + "']}";
                        inText.setValueBinding("value", application.createValueBinding(bind));
                        if(var.getDefaultValue() == null)
                             inText.setRequired(true);
                        inText.setParent(table);
                        children.add(inText);
                        //<h:message for="#{var.name}" styleClass="errorText"/>
                        message = new HtmlMessage();
                        message.setFor(id);
                        message.setStyleClass("errorText");
                        message.setParent(table);
                        children.add(message);     
              } catch (Exception e) {
                   log.error(e);
              return table;
      // Command Link Menu ActionListener
         public void structuredQuerySelection(ActionEvent e) {
              queryType = QueryType.StructuredQuery;
              UICommand cmd = (UICommand) e.getSource();
              filterSelection = (String) cmd.getValue();
              Map<String, SearchRequestCtx> queries = pdp.getGenericMetadata().savedQueries;
              SearchRequestCtx ctx = queries.get(filterSelection);
              filterCriteria = new ArrayList<QueryVariable>();
              filterCriteria.addAll(ctx.getVariables());
              constructSearchInputTable();
         // Command Link Menu Action
         public String selectStructuredQuery()
              return null;
         }BTW, this is my first post and I don't really know how that Duke Dollar thing works but I'm happy to offer some to anyone that can solve this issue for me.
    Thanks,
    Ken

    Glad to hear I am not the only one struggling with this type of issue.
    I tried your suggestion but it caused a NoSuchElementException when the page tried to render. Stepping through the code, the init function is always called after my panelGrid is constructed. I even commented out the logic to clear the children and confirmed that in the constructed page, the outputText component that binds to init is the first element on the page - right after the opening body tag. Maybe, JSF doesn't necessarily construct the page in top to bottom order? Also, the exception makes me think that this gets called too late in the lifecycle to work. Were you able to get this to work?
    java.util.NoSuchElementException
         at java.util.AbstractList$Itr.next(AbstractList.java:427)
         at com.sun.facelets.FaceletViewHandler.encodeRecursive(FaceletViewHandler.java:515)
         at com.sun.facelets.FaceletViewHandler.renderView(FaceletViewHandler.java:445)
         at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:300)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:110)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
         at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:825)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:738)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:526)
         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
         at java.lang.Thread.run(Thread.java:595)Ken

  • H:panelGrid width or style attribute not rendering

    Hi
    I am currently experiencing a weird problem. I use a panel grid to align inputs in a form.
    when I try to set the width of the panel grid using the width or style attribute, the HTML equivalent is not rendered when displaying the web page.
    Here is what I try to do:
    <h:panelGrid columns="2" styleClass="patient-problem-form" style="width: 300px;">
    No style attribute is rendered on the table tag...
    Anyone knows what could case this issue?
    I am using
    facelets - 1.1.14
    seam - 2.0.1.CR1
    richfaces - 3.1.3.GA
    just updated glassfish 2-b58c with JSF 1.07 but did not make any difference
    Thanks.

    This will occur if you're using JSF impl newer than 1.2_05, but are using JSF api of 1.2_05 or older. Your classpath may be a mess with duplicated JAR's of different versions. Clean up your classpath. It may be good to know that Glassfish ships with javaee.jar which also contains JSF API. You need to upgrade it as well, you can get a Glassfish updater tool or read the instruactions at Mojarra homepage.

  • URL attributes not rendered on WF notification with embedded OAF Regions

    I am customizing a notification which has embedded OAF regions. I need to put a URL in the message, for which I have created an item attribute of type URL, hardcoded this to a random URL for now, and pulled this down as a message attribute as well. I then put the message attribute in the HTML body as &URL_NAME after the framework regions. This, however, did not work. What happens is that in the notification, the URL message attribute is not token subsitute and instead of the URL link, plain text is rendered as URL_NAME. Also, I get a warning message at the top of the notification:
    Attribute URL_NAME does not refer to a framework region
    If I put the URL as the first attribute in the message body, then the URL is rendered correctly, and all the framework region attributes are rendered as text. It almost seems as if the message body can either have framework regions or message attribute tokens.
    Any inputs will be appreciated.
    Thanks in advance.

    I having a similar issue with the Expenses workflow. I have done the following
    Steps:
    1. Create custom OAF shared region
    2. Create form function XX_APPROVERS where WEB HTML is OA.jsp?page=/xx/oracle/apps/per/ame/dynamicapprovals/webui/xxApproversRN
    3. Create WF attribute XX_APPROVERS_HIERARCHY with value as JSP:/OA_HTML/OA.jsp?OAFunc=XX_APPROVERS.
    4. Copied WF attribute to messsage and added &XX_APPROVERS_HIERARCHY to message body:
    &OIE_APEXP_BODY
    WF_NOTIFICATION(HISTORY)
    *&XX_APPROVAL_HIERARCHY*
    For NEW expense reports/workflows , the notification is fine and the custom region is displayed. However, for workflows already in process the following WARNING is displayed:
    Attribute XX_APPROVERS_HIERARCHY does not refer to a framework region.
    In the notification body the attibute name is also displayed.
    This does not prevent the person responding to the notifications. How can I prevent this warning and why does the change affect workflows already in process ?
    Thanks

  • InputText: onchange attribute not rendered anymore from JSF 1.2.08?

    Hi!
    Recently I have tried upgrading from 1.2.04 (the version that comes with Glassfish v2ur2 which we are using) to 1.2.13. (Then, when I encountered the problem, only to 1.2.08, but it stayed the same.) To my astonishment, from then on the 'onchange' attribute of at least the h:inputText tag wasn't rendered in HTML anymore!
    I.e. when I write something like this:
    <h:inputText ... onchange="myOnchange(this)" id="myId" />
    it will render as
    <input type="text" id="form1:myId" ... /> <!-- onchange simply skipped! -->
    whereas in the version 1.2.04 it rendered as
    <input type="text" id="form1:myId" onchange="myOnchange(this)" ... />
    I have compared the tld files and the onchange attribute is specified for the inputText tag, it is also there as a member in the tag handler class. Still, it is not getting rendered.
    Is this a bug in versions above 1.2.04 or am I doing something wrong? The way I upgraded is as described in the release notes: simply copied over jsf-impl.jar and jsf-api.jar into GLASSFISH_HOME/lib (thus overwriting the original jsf-impl.jar in that directory), then restarted the container. (I didn't modify domain.xml to add jsf-api.jar to the classpath, though, because our project actually copies over these jars into its own lib and uses those.)
    Thanks,
    Agoston

    Oops, sorry, my fault! :( I didn't remember whether I've already posted it.
    (All I can say in my defence is that I haven't found any option in the forum search which would have enabled me to search for my own posts.)
    Thanks for the original answer!

  • Onchange attribute of h:inputText/ not rendered  in JSF 1.2.08 and above

    Hi!
    I am using Glassfish v2ur2, which is shipped with JSF 1.2.04. I have upgraded to 1.2.08 performing the steps in the release notes - basically overwriting GLASSFISH_HOME/lib/jsf-impl.jar and adding jsf-api.jar at the same location.
    It works, but I've noticed that the h:inputText tag doesn't render the onchange attribute anymore, i.e.
    <h:inputText ... onchange="doThisJavaScript()" />
    renders as something like
    <input type="text" />
    whereas with 1.2.04 it rendered as
    <input type="text" onchange="doThisJavaScript()" />
    I've looked at the html_basic.tld files, and although there are a few differences between them, the declaration of the onchange attribute for the tag inputText isn't missing.
    Anyone any idea why that is and how to correct it? Surely it couldn't have gone unnoticed if such an important attribute disappeared from a JSF tag?
    Thanks,
    Agoston

    In 1.2_05 the rendering of standard HTML attributes was optimized in jsf_api. If you upgraded JSF, but you still have a jsf_api.jar of older version somewhere in the classpath, then it will go wrong.
    In Glassfish, the JSF is merged into the javaee.jar in its classpath. If you don't upgrade it, it will simply get precedence in classloading and thus rendering HTML attributes will fail. You need to follow the Glassfish specific upgrade instructions at [http://javaserverfaces.dev.java.net] as well.

  • TaskMenu is not rendering properly using rendered attribute withSecurityCxt

    Hi All,
    I am trying to use this code rendered="#{!(securityContext.userInRole['ZPM_ENT_MARKETING_BUDGET_MANAGER_DUTY'])}" in the itemNode UI component of my Budget_taskmenu.xml. But UI is not rendering it properly.
    I have checked the same code in the backing bean and it is returning true and false as per expectation but at UI level my menu is not coming properly (it is coming as #{null} in place of name in menu).
    But same piece of code is working fine in my .jsff file where I am doing the same check in rendered attribute.
    rendered="#{!(securityContext.userInRole['ZPM_ENT_MARKETING_BUDGET_MANAGER_DUTY'])}"
    Any Suggestion.
    Regards,
    Sarvesh Kaushik

    Hi Frank,
    Thanks for your reply.
    But I found the actual root cause of the issue.
    There is nothing wrong in the expression rendered="#{!(securityContext.userInRole['ZPM_ENT_MARKETING_BUDGET_MANAGER_DUTY'])}".
    The actual issue with my code was one label name was wrong bcoz of which menu was not rendering properly.
    Thanks and Regards,
    Sarvesh Kaushik

  • html:textrea is not rendering

    I have a simple struts jsp page. All the controls are properly displayed but the below code to display textarea is not working. i mean, text area is not rendered (displayed) also, in the view source, the same appears instead of HTML version.
    Struts code:
    <html:textarea property='problemComment' rows=5 cols=30
         onblur="validateComment(this);"/>
    Viewsource code:
    <html:textarea property='problemComment' rows=5 cols=30
         onblur="validateComment(this);"/>
    I chcked my struts-html.tld to check if the entry is missing but its fine. I know that if there is a spelling mistake struts doesnt complain but just doesnt display.
    Can anybody please suggest why this is happening so ?
    Also, what is the best debugging tecnick in such cases ?
    Thanks in advance,
    CG

    If the custom tag is not being translated, then you have probably forgotten to import the taglibrary ;-)
    <%@ taglib prefix="html" uri="http://struts.apache.org/tags-html"%>

  • CsrAttachmentUploadDiv part attachment is not rendered SP 2013(Attach file in not working for all the list forms)?

    csrAttachmentUploadDiv partattachment  is not rendered SP 2013(Attach file in not working for all the list forms)?
    Ravi
    function ShowPartAttachment() {
    ULSopi:
        if (document.getElementById("part1") == null || typeof document.getElementById("part1") == "undefined") {
            alert(Strings.STS.L_FormMissingPart1_Text);
            return;
        (document.getElementById("part1")).style.display = "none";
        (document.getElementById("partAttachment")).style.display = "block"; //problem here

    Am also facing the similar problem....any iputs are highly appriciated.
    Issue..
    1) Defined the attachment type in IMG.
    2) Added the attachment type "SFREEATTM" by selecting other attributes---> Attachment Types.
    3) Attached the excel file in the design.
    See the screen shot below:
    The Issue is when testing through tcode nwbc in the inbox the attachment tab is not visible after selecting the particular form.
    Please see the screen shot below:
    Did i miss any Configuration?? Please suggest...
    Regards,
    Naveen

  • output_link target is not rendered

    The target attribute of <output_link> is not rendered at all.

    Yep ... that's an RI bug. It'll be fixed for FCS.
    Craig

  • Child component values submitted when parent component not rendered

    This pertains to the standard JSF components, but may carry over into Sun JSC.
    I have a column in a dataTable that contains a checkbox. The rendered attribute on that column is tied to a backing bean property. The column is/is not displayed as appropriate per the value of that property - great.
    Here's the rub: When that column is not rendered and the form is submitted the values for the checkboxes are still being submitted and my data model is being updated for those non-rendered components. Seems like this shouldn't happen, but the real problem is that the values submitted for those checkboxes are always 'false'. Seems like JSF is out of sync in this case in what it does between when the form is loaded and when it is submitted (perhaps it is not loading the values from the data model yet it is updating them on the submit - with garbage).
    To get this to work as I expected I had to set the rendered attribute on the checkbox components to match the rendered attribute on the column that contains them.
    Is there a bug here?

    This pertains to the standard JSF components, but may carry over into Sun JSC.
    I have a column in a dataTable that contains a checkbox. The rendered attribute on that column is tied to a backing bean property. The column is/is not displayed as appropriate per the value of that property - great.
    Here's the rub: When that column is not rendered and the form is submitted the values for the checkboxes are still being submitted and my data model is being updated for those non-rendered components. Seems like this shouldn't happen, but the real problem is that the values submitted for those checkboxes are always 'false'. Seems like JSF is out of sync in this case in what it does between when the form is loaded and when it is submitted (perhaps it is not loading the values from the data model yet it is updating them on the submit - with garbage).
    To get this to work as I expected I had to set the rendered attribute on the checkbox components to match the rendered attribute on the column that contains them.
    Is there a bug here?

  • Graph not rendering at refresh

    Hi everyone,
    I have a problem with a graph (a pie graph) I created with datacontrols: When I load a page, I'm able to see it, but when I change of page and come back, it doesn't appear. The usual message "Fetching data..." appears like always, but the graph is not displayed. This problem is really strange because it is always okay on the first load. I have checked the visibility attributes, but I didn't find anything. When I reload the page (F5) on the page when the data is displayed correctly, it's okay, but on page change, even if I reload with (F5), it is not rendering the pie graph. The other components render correctly.

    Hi Navaneetha,
    there is my code for the pie:
    <af:panelAccordion id="pa1" styleClass="AFStretchWidth">
    <af:showDetailItem text="showDetailItem 1" id="sdi2">
    <dvt:pieGraph id="pieGraph1"
    value="#{bindings.MomEmployeeView1.graphModel}"
    subType="PIE" threeDEffect="true"
    shortDesc="salary">
    <dvt:background>
    <dvt:specialEffects/>
    </dvt:background>
    <dvt:graphPieFrame/>
    <dvt:seriesSet>
    <dvt:series/>
    </dvt:seriesSet>
    <dvt:sliceLabel/>
    <dvt:pieLabel rendered="true"
    text="#{portalBundle.SALARY}"/>
    <dvt:legendArea/>
    </dvt:pieGraph>
    </af:showDetailItem>
    </af:panelAccordion>
    I tried to change the imageFormat to all the different formats, and it didn't work. It's always rendering correctly the first time, it's only when I change page and come back that it doesn't render.

  • ADF: ValueChangeListener works but resulting ListBox is not rendered

    Hello,
    after trying for myself quite a while and searching here in the forums I almost give up since it does not seem to work.
    I have a form within a panelpage which consists of a text input field, two selectOneChoices (both with autosubmit), one selectManyListBox and one commandButton. None of them has the immediate attribute set!
    The both selectOneChoice shall update the contents of the selectManyListBox as soon as they receive a change in their selection.
    Since I do not want to use partialtriggers due to validation problem (these did cost me already nearly a day) I try to update the selectManyListBox using a valueChangeEvent on the second (later wanted on both) selectOneChoice.
    Everything works quite fine. The f:selectItems of the selectManyListBox have a list attribute from the backing bean bound to its value. These list is changed according to the selection of the selectOneChoice within its valueChanged()-method and afterwards the getter for this changed property is called accordingly (from the f:selectItems I presume).
    I can see all this during the debug process.
    But the result is not rendered into the selectManyListBox!
    Why?
    Even calling the appropriate renderResponse() within the valueChanged-method does not help at all!
    When I do a simple reload the same getter for the selectItems of the selectManyListBox is called (containing still the same values like after its call after the valueChanged() method) and they are rendered accordingly!
    My page has all metatags against cashing set so I do not understand why it is not rendered after the value change call!
    Can please somebody explain what I'm doing wrong here?
    This happens regardless if required is set to all the input fields or not.
    Code example can be provided if neccessary!
    Many thanks in advance
    Best Regards
    Message was edited by:
    Reth

    is not true because it requires a submit action to
    fire the ValueChangeListener
    But as said (I added it to my first post) both selectOneChoices have autosubmit enabled and the debugging showed that the Listener-Method is called and afterwards the getter that provides the value for the selectedItems for the selectManyListBox and it has all relevant entries according to the choices of the selectOneChoices!
    But the ListBox will first get rendered when a reload of the entire page is done (not when the autosubmits are commited)!
    I do not know why!?
    Best Regards

  • Runtime added fields in OADefaultDoubleColumnBean are not rendering.

    Hi,
    I need to add a OAMessageTextInputBean to a OADefaultDoubleColumnBean. I am able to create the OAMessageextInputBean and render it properly under pagelayout. However when I add it under a OADefaultDoubleColumnBean, its not rendering. Am I missing to set any attribute?
    Here is what I am doing.
    public void processRequest(OAPageContext oapagecontext, OAWebBean oawebbean){                              
    super.processRequest(oapagecontext, oawebbean);
    OAApplicationModule am = oapagecontext.getApplicationModule(oawebbean);
    OAViewObjectImpl vo = (OAViewObjectImpl) am.findViewObject("RequestHeaderEOVO");
    OADefaultDoubleColumnBean reqHeader=(OADefaultDoubleColumnBean) oawebbean.findIndexedChildRecursive("RequestHeaderRN");
    OAMessageTextInputBean shipTo = (OAMessageTextInputBean) createWebBean(oapagecontext, MESSAGE_TEXT_INPUT_BEAN, null, "shipto");
    shipTo.setID("ShipTo");
    shipTo.setUINodeName("ShipTo");
    shipTo.setViewUsageName(vo.getFullName());
    shipTo.setPrompt("Ship To");
    shipTo.setViewAttributeName("Attribute14");
    reqHeader.addIndexedChild(shipTo);
    Thanks,
    Santosh.

    Hi Pratap,
    Thanks for the reply. I read that in the dev guide. However, doing so adding fields at the end of the page. i.e, DefaultDoubleColumn have direct from fileds and some sub headers under it, and I need to add my fileds to the top region which directly falls under default category. Or, Is there a way to insert a header between direct sub fields and sub header.
    Here is how page depicts:
    Page Layout: Special Price Request: Details
    -- Message Lov Input: Distributor
    -- Message Choice: Status
    -- Message Lov Input: Requestor's Name
    -- Message Styled Text: Request Number
    -- Message Text Input: Requestor's Phone
    -- Message Text Input: Start Date
    < -- I NEED TO ADD FIELDS HERE -- >
    -- -- OAHeader
    -- Message Text Input: Reseller Name
    -- Message Text Input: Reseller Address
    -- -- OATable
    --row
    --row     
    < -- ITS GETTING ADDED HERE IF I USE PAGE LAYOUT -->
    Thanks!
    Santosh

  • Manual Tabular Form - Items not rendered

    Hi,
    i'm trying to build a manual tabular form:
    I added a blnak page with a Report Region using a SQL Query in a Classic Report:
    select      apex_item.text(1,"EMPNO") as "EMPNO",
    apex_item.text(2,"ENAME") as "ENAME",
    apex_item.text(3,"JOB") as "JOB",
    apex_item.text(4,"MGR") as "MGR",
    apex_item.text(5,"HIREDATE") as "HIREDATE"
    from      "EMP" "EMP"The items are not rendered in the report, but the HTML Text is displayed instead.
    See http://tinypic.com/r/2e6bqdu/5
    I played around with "Display As" in the Column Attributes - no luck.
    I used this links as reference:
    http://apex.oracle.com/pls/otn/f?p=31517:170:2228543603318893:::::
    http://www.oracle.com/technetwork/developer-tools/apex/tabular-form-090805.html (To build a tabular form manually:)
    http://apexjscss.blogspot.com/2010/05/manual-tabular-form.html
    Am i missing something ?
    APEX 4.1 on 11gr2
    regards,
    gw

    The "Display As" for each column should be "Standard Report Column".
    Seems the default "Display as" for standard reports has changed:
    I created your standard report in a 3.2 environment and the report defaulted the "Display As" for each column to "Standard Report Column".
    I created your standard report in my own 4.0 environment and in the hosted apex.oracle.com environment and the report defaulted the "Display As" for each column to "Display as Text (escape special characters, does not save state)"

Maybe you are looking for

  • How can i change my old email address to my new email address

    how can i change my old email address to my new email address need help please everything i try want work

  • Adobe air on Windows phone 10 ?

    Hi all, Windows phone is more and more popular every day. I still haven't bought a windows phone only because Adobe AIR is not supported on it. Do we have any idea if Adobe will release adobe AIR on windows phone in the future ? (maybe with windows 1

  • How to edit video using iMovie?

    Hi, I am new to iMovie. I am not familiar with its key tools. Can any one please tell me how to edit a video using the software? I need to put a video on Youtube displaying features of my website http://www.fundoofun.com Thanks in advance. K V Gautam

  • Cloning error

    Hi Yesterday i was performing backup of our existing 11g DB and APPS then i tried to UP in other pc machine but i got error like this during restoring of CLONE ERROR: Failed to execute /oracle/PROD/db/tech_st/11.1.0/appsutil/clone/bin/adclone.pl when

  • No apps under Purchases section?

    Hi! I bought Mountain Lion last week. Today I would like to download it to my secondary worksation (a MacBook Pro). When I signed in the App Store, go to the Purchases tab, it said "you have not yet purchased any apps." Why? How can I get back my pur