How to transform tabe to panelGrid?

Hi,
I am using here a combination between HTML tags and JSF tags..
I want actually to use only the JSF tags, but it didn't work with me for the following part:
<table width="100%" border="0" cellpadding="0" cellspacing="5" >                         
                                   <tr>
                                        <td width="4%">
                                        </td>
                                        <td width="55%">
                                        </td>
                                        <td width="37%">
                                             <div align="right" class="subitems">
                                                  <div align="right" class="zoeken">
                                                       <h:commandLink action="verderExtendedRecensie" rendered="#{commonReviewBean.type=='acco'}">
                                                            <h:outputText rendered="#{commonReviewBean.type=='acco'}" value="next">
                                                            </h:outputText>
                                                       </h:commandLink>
                                                  </div>
                                             </div>
                                        </td>
                                        <td width="4%">
                                             <h:commandLink action="verderExtendedRecensie" rendered="#{commonReviewBean.type=='acco'}">
                                                  <h:graphicImage value="media/pijltje.gif" rendered="#{commonReviewBean.type=='acco'}"
                                                       height="14" width="17">
                                                  </h:graphicImage>
                                             </h:commandLink>
                                        </td>
                                   </tr>                                   
                              </table>
Can someone help me to use <h:panelGrid > instead of <table> ?
Thanks

I found it..
The problem was actually in : how can I represent for example : <td width="4%"> with JSF..
The response is to use <h:panelGrid width="100%" border="0" cellspacing="0" cellpadding="0"
                                   columnClasses="widthCol1,widthCol2,widthCol3,widthCol4" columns="4">
and in css classes widthCol11, widthCol2, widthCol3, widthCol4 set width :
.widthCol1 {
     width: 4%;
So, it becomes something like :
<h:panelGrid width="100%" border="0" cellspacing="0" cellpadding="0"
                                   columnClasses="widthCol1,widthCol2,widthCol3,widthCol4" columns="4">
                              <h:outputText rendered="true" value="" />
                              <h:outputText rendered="true" value="" />
                              <h:commandLink action="verderExtendedRecensie" rendered="#{commonReviewBean.type=='acco'}">
                                   <h:outputText rendered="#{commonReviewBean.type=='acco'}" value="next">
                                   </h:outputText>
                              </h:commandLink>     
                              <h:commandLink action="verderExtendedRecensie" rendered="#{commonReviewBean.type=='acco'}">
                                   <h:graphicImage value="media/pijltje.gif" rendered="#{commonReviewBean.type=='acco'}"
                                             height="14" width="17">
                                   </h:graphicImage>
                              </h:commandLink>          
                         </h:panelGrid>
I hope this helps

Similar Messages

  • How to create tab pages in EP

    Hi Experts,
    Can you please let me know how to create tab pages in EP. I have created one page. In this page, I have to place 2 iViews as tab pages. Can you please let me know how I can acheive this?
    Regards,

    Stuart,
    Within a SAP Portal Tabs are not used like you want them to
    By default Tabs are used inside an iView and not to "tab" between iViews on a page...
    The most straightforward solution would be creating a custom PageLayout that you can assign to your page.
    I would sugest to implement this custom PageLayout with DIV layers and trigger "tabbing" via JavaScript eventing.
    For more infor on how to create a custom PageLayout take a look at here:
    [http://help.sap.com/saphelp_nw70/helpdata/en/42/efbac120711a71e10000000a422035/frameset.htm|http://help.sap.com/saphelp_nw70/helpdata/en/42/efbac120711a71e10000000a422035/frameset.htm]
    Good Luck,
    Benjamin Houttuin

  • How to setup tab in a pdf form

    can someone explain how to set tabs in a writeable pdf form

    If you're asking about setting tab stops for a text field, there is not a means to do this. Though you can insert a tab character into a field value programmatically, I've never found a way to do it from the keyboard.

  • How to cancel tabbed viewing in Fireworks CS5?

    How to cancel tabbed viewing in Fireworks CS5? I don't like tabs, but I couldn't find in Preferences an option to cancel it.

    Choose Window > Cascade from the main toolbar.

  • Acrobat X Pro.  How to get tab to show up in Microsoft Office ribbon?

    Acrobat X Pro.  How to get tab to show up in Microsoft Office ribbon?

    Hi ebender888,
    Which Office version are you using?
    If it's Office 2013 then Acrobat 10 pdfmaker is not compatible.
    Please refer: http://helpx.adobe.com/acrobat/kb/compatible-web-browsers-pdfmaker-applications.html#main_ PDFMaker_compatible_applications
    Regards,
    Rave

  • Help. How do you TAB from HTML component to applet (and back) ?

    How can one tab between applets in a browser, and from an applet to an HTML component?
    For example, I have the following in my page in decending order:
    an HTML text field,
    an applet containing two components,
    and another HTML text field.
    When focus is on the first HTML text field pressing TAB should shift focus to the first component of the applet, the next TAB press shifts focus to the second component of the applet, and the next TAB press shifts focus to the other HTML text field. Then another TAB press cycles back to the first TEXT field.
    I can handle the tabbing within the applet using the FocusManager, but how can I get the applet to receive focus on a TAB from the browser, and once the applet has focus, how can I give focus back to the browser when a TAB occurs from my last applet sub-component?
    At the moment a user has to click on the applet before he can tab in it, and then click outside it to tab in the html again.
    Any help appreciated, as I cant find any reference to how to do this apart from other people asking the same but getting no replies.
    Thanks,
    Menno

    I see what you are saying. Either use javascript with LiveConnect or go all applets.
    What we are actually doing at the moment is trying to componentise using small applets passing data via InfoBus. So I guess we could use only applets as you suggest. Either with getAppletContext, or we could have a data item on the InfoBus which contains the name of the required in-focus applet, and all applets listen to see if it is their name, and if so request focus.
    I'm suprised applets are not tab-able between by default. I would have thought this was a common requirement.
    I'll look into LiveConnect as well, and let you know how we get on.
    Cheers,
    Menno

  • How do you tab out of JTextArea?

    When using the tab key to change focus from one
    JComponet to the next, how do you tab out of, and
    into next JComponent when you're in an editable
    JTextArea? Is it possible?

    Move to the bottom of the text in a JTextArea with VK_CONTROL + VK_END.
    Better yet, here is how to find all the input actions that you can trigger when focus is on a JTextArea (or any given JComponent)
    JTextArea text = new JTextArea();
    InputMap im = text.getInputMap();
    KeyStroke[] ks = im.allKeys();
    SortedMap map = new TreeMap();
    for(int i=0; i<ks.length; ++i)
        map.put(im.get(ks), ks[i]);
    for(Iterator i = map.entrySet().iterator(); i.hasNext() ; ) {
    Map.Entry pair = (Map.Entry) i.next();
    System.out.println(pair.getKey() + "\n\t" + pair.getValue());

  • How to transform hotkey ctrl+L to F9

    My app is oracle form 10g.
    I wonder how to transform hotkey ctrl+L to F9 because in my company everyone is used to press F9 to query .
    Would someone tell me?
    Thank you.

    I don't understand exactly what you want to do.
    Refer to fmrweb.res found in the \forms directory. This is the file used to configure key mapping. This is a text file, so it can be opened in most text editors. The top portion of the file provides an explaination as to how each value works.

  • [ETL]How to transform a Source model into an arbitrary number of target models ?

    Hi all,
    I need to know how to transform a source model into an arbitrary number of target models which conforms to different target metamodels using ETL ? Is there any examples that can help me ?
    Thank you
    Mana

    Hi Antonio,
    Actully I mean the number of metamodels are known.For example, assume that there are two known metamodels in the target side, the first one is the target metamodel, and the second one is the trace metamodel .
    I would like to see an example of ETL transformation that run on a source model and generate the target model and the trace model as well. This statement is part of the chapter 5 of the ebook which says "it is often essential to be able to access/update additional models during a transformation (such as trace or configuration models). Building on the facilities provided by EMC and EOL, ETL enables specification of transformations that can transform an arbitrary number of source models into an arbitrary number of target models."
    could you please explain this more for me or provide me with an example.
    Thank you
    Mana

  • How to handle tab change event in UI shell main area

    Hi,
    I have two tabs(two taskflows) in UI shell main area. one is department tab and another is employee tab. My department tab shows employees department wise. On employee tab I have emplyee table which shows employees jobwise. This employee table has the functionality of adding new record to employee vo as well.
    Now i follow these steps.
    1. by defualt department tab is open.
    2. by clickinng on Tasks menu link i open Employee tab in to main area. Now i have both tabs in main area.
    3. at Employee tab I search all employees job = accountant. It shows the search result well.
    4. Now i add a new record to it and without saving/deleting this record i move to department tab.
    5. at Department tab i search employees where department =20, here no relation b/w job and department.
    6. Now i return to employee tab. my newly added record got disappeared. It is there but does not show in table.
    How to resolve it??
    I have one solution in my mind while changing the tab i can prompt to user "you can not leave the newly added record..either save it or delete it". But how to catch tab change event here? where i can write code to prompt msg to user?
    Pls help.
    Edited by: 900997 on May 6, 2012 4:10 AM

    With apologies for the slow reply, I'm currently travelling.
    Two things to note:
    1) The af:document uncommittedDataWarning flag was designed to stop users navigating away from half entered records. More about this flag can be found here:
    http://docs.oracle.com/cd/E23943_01/web.1111/b31973/af_orgpage.htm#CACDDDFH (see point 4)
    http://www.oracle.com/technetwork/developer-tools/adf/unsaveddatawarning-096556.html
    ....please note our documentation from time to time spells this flag wrong with only one "t" in the word committed, so if you're attempting a bulk search check for this (and I'll raise document bugs to get this fixed in the future).
    2) On addressing the ADF UI Shell, if you're switching between "pages" in the UI Shell, as separate to switching between dynamic tabs within a single page using the UI Shell, the UI Shell will actually restart the currently running task flow in the page you're returning too. You can verify this by implementing an initializer on your task flow with a log message, and watching when the initializer is called.
    In addressing your last question, at this stage I think you need to assess my first answer then come back if you think you sill need to execute the code on the tab click. I also need to know are you talking about the primary level of tabs that represent each page in the UI Shell, or are you referring to the dynamic tabs within a single UI Shell page that hold your task flows?
    CM.

  • How to create 'Tab page' portal?

    Hi,
    The 'Portal' configuration page provides 3 types 'Dashboard', 'Standalone Portal' and 'Tab Page Portal'. According to help document, to add new 'Tab Page', needs to ask customer support. Does anyone know how to use 'Tab Page Portal'?
    Regards,
    Desmond
    Edited by: user783168 on 23-Oct-2012 19:02

    Similar to Patch 8608149 for 'User Portal' tab on User Transaction in FW 2.2 (default in 2.3.1)?
    Follow How To Create A New Multi-Tab Portal Using Configuration Tools (Doc ID 1356225.1)

  • How to create tab indexing for jtextBox

    Dear Forum
    i am user of jDeveloper.
    And working on JClient/Swing application.
    In "Jframe.java" i add various cotrols such as jTextbox,jCombobox ,jlabel etc.
    So how to create tab indexing for these controls.
    Girdher

    Dear Forum
    i am user of jDeveloper.
    And working on JClient/Swing application.
    In "Jframe.java" i add various cotrols such as jTextbox,jCombobox ,jlabel etc.
    So how to create tab indexing for these controls.
    Girdher

  • How to create tab pages in Human task Using Wizard

    hi,
    how to create tab pages in Human task Using Wizard.i need to display the personal details and the offical details in the same page with different tabs for each.it is possible to do lika this.if yes,how can we do this.
    Regards

    Stuart,
    Within a SAP Portal Tabs are not used like you want them to
    By default Tabs are used inside an iView and not to "tab" between iViews on a page...
    The most straightforward solution would be creating a custom PageLayout that you can assign to your page.
    I would sugest to implement this custom PageLayout with DIV layers and trigger "tabbing" via JavaScript eventing.
    For more infor on how to create a custom PageLayout take a look at here:
    [http://help.sap.com/saphelp_nw70/helpdata/en/42/efbac120711a71e10000000a422035/frameset.htm|http://help.sap.com/saphelp_nw70/helpdata/en/42/efbac120711a71e10000000a422035/frameset.htm]
    Good Luck,
    Benjamin Houttuin

  • How to disable Tabs in the application

    Hi OAF Guys
    How to disable tabs in the application? if any one knows reply asap
    Thanks in advance

    Tabs are generated by the menu structure, if you want your page not to have tabs, have a responsibility with a menu which does not have any levels of submenus and just has your page as a function in the menu.
    Thanks
    Tapash

  • How are transforms in the transform panel applied?

    I am trying to understand when/how the transforms made in the transform panel are applied to display objects so that I can manipulate them using action script. To be clear, I understand that I can use the display object properties such as rotation to transform a display object, and I understand that I can also use a matrix transformation. Unfortunatley, this doesn't always seem to have the same behavior when nesting as direct transformations using the panel. So I would like to find a way to manipulate whatever properties the transform panel is changing.
    Maybe this isn't clear, so here's an example.
    On a new stage, I place a rectangle and use the transform panel to rotate it 39 degrees. Then I assign this shape to a variable and use the debug panel to inspect the member properties of the shape. As far as I can tell, this rotation value is not contained within any of the transformation parameters. Is it pre-applied?
    If I use the "export as XML" option, the rotation value is listed in the "Source" tag, as below:
    <Motion duration="1" xmlns="fl.motion.*" xmlns:geom="flash.geom.*" xmlns:filters="flash.filters.*">
        <source>
            <Source frameRate="24" x="265" y="184.5" scaleX="1" scaleY="1" rotation="39" elementType="drawing object">
                <dimensions>
                    <geom:Rectangle left="111.35" top="35.1" width="307.25" height="298.85"/>
                </dimensions>
                <transformationPoint>
                    <geom:Point x="0.5000813669650123" y="0.5099548268362054"/>
                </transformationPoint>
            </Source>
        </source>
        <Keyframe index="0"/>
    </Motion>
    So this is being stored as a value somewhere. Any ideas?
    Thanks - Andrew

    if you're mixing actionscript with something drawn in the ide, you must be converting your drawing into an object (in order to reference it with actionscipt).   whatever you convert to an object will assume mostly default properties (no matter what you see on-stage).  the x and y properties are an exception.

Maybe you are looking for