Binding a button's disabled

In the code attached, I have a button component associated with each row of the table. Some rows of the table are allowed to be deleted ,others not, depending upon the field "attributeIsRequired" in the row. I thought the line:
disabled="#{CustomerContact.customerattributesDataProvider.value['customerattributes.attributeIsRequired']}
(admittedly with the wrong sense) would do it, but it sees that the disabled button on each row is being frobbed by the same field -- they are all always either enabled or disabled, not according to the corresponding row in the table.
I obviously don't understand how rows in the table are processed when the table is rendered, and would be grateful for any guidance.
Many thanks.
Regards,
Mike
<?xml version="1.0" encoding="UTF-8"?>
<jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:webuijsf="http://www.sun.com/webui/webuijsf">
<jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
<f:view>
<webuijsf:page binding="#{CustomerContact.page1}" id="page1">
<webuijsf:html binding="#{CustomerContact.html1}" id="html1">
<webuijsf:head binding="#{CustomerContact.head1}" id="head1">
<webuijsf:link binding="#{CustomerContact.link1}" id="link1" url="/resources/stylesheet.css"/>
</webuijsf:head>
<webuijsf:body binding="#{CustomerContact.body1}" id="body1" style="-rave-layout: grid">
<webuijsf:form binding="#{CustomerContact.form1}" id="form1" virtualFormsConfig="save | |">
<webuijsf:label binding="#{CustomerContact.customerLabel}" for="customerDD" id="customerLabel"
style="left: 48px; top: 168px; position: absolute" styleClass="vssfonts" text="Customer"/>
<webuijsf:table augmentTitle="false" binding="#{CustomerContact.contactTable}" id="contactTable"
style="left: 240px; top: 168px; position: absolute; width: 150px" styleClass="vssfonts" title="Contact" width="240">
<webuijsf:tableRowGroup binding="#{CustomerContact.tableRowGroup1}" id="tableRowGroup1" rows="10"
sourceData="#{CustomerContact.customerattributesDataProvider}" sourceVar="currentRow">
<webuijsf:tableColumn binding="#{CustomerContact.tableColumn1}" id="tableColumn1" sort="customerattributes.attributeName">
<webuijsf:textField binding="#{CustomerContact.textField1}" id="textField1" text="#{currentRow.value['customerattributes.attributeName']}"/>
</webuijsf:tableColumn>
<webuijsf:tableColumn binding="#{CustomerContact.tableColumn2}" id="tableColumn2" sort="customerattributes.attributeValue">
<webuijsf:textField binding="#{CustomerContact.textField2}" id="textField2" text="#{currentRow.value['customerattributes.attributeValue']}"/>
</webuijsf:tableColumn>
<webuijsf:tableColumn binding="#{CustomerContact.tableColumn3}" id="tableColumn3">
<webuijsf:button actionExpression="#{CustomerContact.button1_action}" binding="#{CustomerContact.button1}"
disabled="#{CustomerContact.customerattributesDataProvider.value['customerattributes.attributeIsRequired']}"
id="button1" text="Delete"/>
</webuijsf:tableColumn>
</webuijsf:tableRowGroup>
</webuijsf:table>
<webuijsf:button actionExpression="#{CustomerContact.addAttributeButton_action}" binding="#{CustomerContact.addAttributeButton}"
id="addAttributeButton" style="left: 23px; top: 216px; position: absolute; width: 90px" text="Add"/>
<webuijsf:button actionExpression="#{CustomerContact.saveChangesButton_action}" binding="#{CustomerContact.saveChangesButton}"
id="saveChangesButton" style="left: 23px; top: 240px; position: absolute; width: 90px" text="Save Changes"/>
<webuijsf:dropDown binding="#{CustomerContact.customerDD}" converter="#{CustomerContact.integerConverter2}" id="customerDD"
items="#{CustomerContact.customerDataProvider.options['customer.customerID,customer.customerName']}" style="left: 120px; top: 168px; position: absolute"/>
<webuijsf:messageGroup binding="#{CustomerContact.messageGroup1}" id="messageGroup1" style="position: absolute; left: 24px; top: 288px"/>
<div class="pagehead vssfonts" style="">
<jsp:directive.include file="Header.jspf"/>
</div>
<webuijsf:staticText binding="#{CustomerContact.staticText1}" id="staticText1" style="" styleClass="pagesubhead vssfonts" text="Customer Contact Details"/>
</webuijsf:form>
</webuijsf:body>
</webuijsf:html>
</webuijsf:page>
</f:view>
</jsp:root>

Yeah, thanks. I'll try to get better at this, I'm a little slow on learning how to use the forum. Too many late nites and too little coffee.
Thanks for looking at the post, I appreciate it a lot.
Regards,
Mike

Similar Messages

  • Button is disabled or not in the next page

    i have a scenario i have two JSP pages in which from the first we will be redirected to the second page. in the second page we have a save button. the save button will be disabled in some conditions. if the save button is disabled then we have to keep the first page as read only. we can't modify any feilds in that.
    thanks in advance.
    please help me its very urgetn for me.
    once again thanks alot in advacne.

    Just test those conditions in the 1st page as well.

  • Apex listener installed no test and set bind variables buttons

    I have installed Apex listener and while creating restful service module i dont see test and set bind variables buttons in the source region.
    I went through the many posts. Installed apex listener successfully.
    getting http://localhost:8080/ords/ started message when i start the listener.
    and using Apex URL as http://localhost:7780/pls/htmldb.
    What are the possibilities for this issues?
    Please help me on this.
    Thanks
    Chandran

    Apex listener version is 2.0.9
    Apex version is 4.2

  • Command button remains disabled after a request redirect to a PDF Servlet

    Hi All,
    I've a command button to generate PDF on the fly and used to work in JDev 10.1.3.3.
    When we migrated to 11g, it works for the first time on a page, and the file Open/Save dialog will come up.
    But then the command button remains grayed out, and clicking doesn't generate a server call.
    If I do something on the page which does a partial or full submit, then the button will get enabled again.
    Any suggestions?
    Thanks,
    Jaimon
    Sample code:
    Facelets:
    <af:commandButton text="Create PDF" action="#{fs02.createPDF}" />
    Java:
    public String createPDF() {
    //Validation checks here. If there are any errors, it gets added to FacesMessages to display on the same page.
    if(!validate()) {
    //sf.addInfoMessage('message here..');
    }else {
    FacesContext ctx = FacesContext.getCurrentInstance();
    HttpServletRequest request = (HttpServletRequest)ctx.getExternalContext().getRequest();
    HttpServletResponse response = (HttpServletResponse)ctx.getExternalContext().getResponse();
    RequestDispatcher rd = request.getRequestDispatcher("/pdfdownloader");
    rd.forward(request, response);
    ctx.responseComplete();
    return null;
    pdfdownloader is mapped as a servlet, which writes the actual PDF content as a stream.

    Herewith the code which is triggered with the post-forms-commit trg. As far as I can see it, there is no code to disable/enable the save button in the menubar.
    ===
    PROCEDURE validate_enbr_records IS
    CURSOR c_enbr
    IS
    SELECT exlb.exlb_length
    , enbr.enbr_ind_break
    FROM dog_envelop_breaks enbr
    , dog_extrnl_labels exlb
    WHERE enbr_appl_cod = :flow_appl_cod
    AND enbr_flow_cod = :flow_cod
    AND enbr_sort_seqnr <> :enbr_sort_seqnr
    AND enbr_appl_cod = exlb_appl_cod
    AND enbr_exlb_cod = exlb_cod;
    CURSOR c_exlb
    IS
    SELECT exlb_length
    FROM dog_extrnl_labels
    WHERE exlb_appl_cod = :flow_appl_cod
    AND exlb_cod = :enbr_exlb_cod;
    l_lengte_break_label NUMBER := 0;
    l_lengte_sort_label NUMBER := 0;
    l_length NUMBER := 0;
    l_aant NUMBER := 0;
    r_enbr c_enbr%ROWTYPE;
    mi_id MenuItem;
    BEGIN
    FOR r_enbr in c_enbr LOOP
    IF r_enbr.enbr_ind_break = 'Y'
    THEN
    l_lengte_break_label := l_lengte_break_label + r_enbr.exlb_length;
    ELSE
    l_lengte_sort_label := l_lengte_sort_label + r_enbr.exlb_length;
    END IF;
    l_aant := l_aant + 1;
    END LOOP;
    OPEN c_exlb;
    FETCH c_exlb INTO l_length;
    CLOSE c_exlb;
    IF :enbr_ind_break = 'Y' THEN
    l_lengte_break_label := l_lengte_break_label + l_length;
    ELSE
    l_lengte_sort_label := l_lengte_sort_label + l_length;
    END IF;
    IF l_lengte_break_label > 48
    THEN
    qms$errors.show_message('DOG-10194');
    END IF;
    IF l_lengte_sort_label > 50
    THEN
    qms$errors.show_message('DOG-10195');
    --set_record_property(3,'enbr',status,changed_status);
    END IF;
    IF :system.record_status = 'CHANGED' THEN
    set_menu_item_property('FILE_MENU.SAVE',ENABLED,'YES');
    END IF;
    END;
    ===
    After the message has been throughn and the OK-button has been clicked, the code is never reaching the code:
    IF :system.record_status = 'CHANGED' THEN
    set_menu_item_property('FILE_MENU.SAVE',ENABLED,'YES');
    END IF;
    The save-button remains disabled.
    Best regards
    John.

  • Mouse Clicks' Queue when Button is Disabled

    Hi, I was wondering about the Disable property for UI
    Components.
    In the docs it says that when the component is disabled it
    ignores all
    interaction whatsoever - in particular - user interaction.
    In my case, the button is disabled for a few seconds right
    after it
    was clicked by the user (I disable it till the httprequest is
    returned
    and then enable it).
    What happens is that if the user clicks the button while it's
    disabled
    - nothing happens. But when the button turns enabled - it
    acts as if
    it just got the click event.
    It seems like the mouse click event went into this queue and
    the
    button listened to it right after to turned enable?
    Am I correct? If so - how can I prevent this problem?
    If I'm wrong, what's the reason for this? And again, how can
    I sort
    this so the user can't send mouse clicks to the button when
    it's
    disabled??
    Many thanks :)
    Gilad

    "giladozer" <[email protected]> wrote in
    message
    news:gnbng6$o6m$[email protected]..
    > Hi, I was wondering about the Disable property for UI
    Components.
    > In the docs it says that when the component is disabled
    it ignores all
    > interaction whatsoever - in particular - user
    interaction.
    > In my case, the button is disabled for a few seconds
    right after it
    > was clicked by the user (I disable it till the
    httprequest is returned
    > and then enable it).
    > What happens is that if the user clicks the button while
    it's disabled
    > - nothing happens. But when the button turns enabled -
    it acts as if
    > it just got the click event.
    > It seems like the mouse click event went into this queue
    and the
    > button listened to it right after to turned enable?
    > Am I correct? If so - how can I prevent this problem?
    > If I'm wrong, what's the reason for this? And again, how
    can I sort
    > this so the user can't send mouse clicks to the button
    when it's
    > disabled??
    No idea about whether you're correct or wrong, but you might
    want to try
    setting mouseEvents = false on the button and see if that
    helps.

  • As I downloaded new software upgrade in my iPod nano 7 th gen and also new iTunes upgrade then all data on my iPod got erased and now when I am trying to sync it again then sync button is disabled on the windows screen . Kindly help

    As I downloaded new software upgrade in my iPod nano 7 th gen and also new iTunes upgrade then all data on my iPod got erased and now when I am trying to sync it again then sync button is disabled on the windows screen . Kindly help

    From the OP: "My old computer got a virus and when that happened all my music was lost. "
    They don't have the music on their computer so they cannot transfer the iTunes folder, from the computer to their iPod and then to the new computer. And if they try to enable disk use on the iPod it will erase all the music that is on it. The method you cited is moving the files in a data format using the iPod as a flash drive. It doesn't work if they are in music format. That is why I suggested Yamipod.

  • In Table contol,add and subtract button getting disabled.

    Hi ,
    My requirement is that in table control when user adds  more than four rows,error message will be displayed i.e maximum of 4 rows allowed.
    But after error message is displayed ,add and subtract button is disabled in table control and I am  not able to remove the rows.
    Any solution available on making add and subtract button active.
    Regards
    Nikhil

    Hi
    In PBO,
    module status_100.
    looop at itab with control tc.
    endloop.
    in program
    module status_100.
    describe table itab lines tc-lines.
    if tc-lines = 0.
    tc-lines = 4.
    elseif tc-lines > 1.
    tc-lines = 4.
    endif.
    endmodule.
    here there is no way you will get more than 4 rows at any time.
    instead of Error message you can give warning or information message. this will not disable your buttons.
    Cheerz
    Ram

  • GRC AC 10: Emergency Access Management, Logon button is disabled (GRAC_SPM)

    Hello Gurus,
    I have configured Emergency Access Management in GRC AC 10.
    GRC Box (SID) : GR1 client 100
    Backend ERP system : D24 client 100
    The FIREFIGHTER in GRC system : FFUSER1
    Z_SAP_GRAC_SUPERUSER_MGMTUSER
    Z_SAP_GRC_FN_BASE
    Z_SAP_GRC_NWBC
    In the Backend ERP system the FIREFIGHTER ID: ABC wants to access the FIREFIGHTER(FFUSER1)
    Hence in NWBC (Setup >Superuser Assignment>Firefighter ID) the assignment is done.
    ABC(FIREFIGHTER ID) <--->FFUSER1(FIREFIGHTER)
    Now the User login the GRC system using FFUSER1 assigned following roles
    Z_SAP_GRAC_SUPERUSER_MGMTUSER
    Z_SAP_GRC_FN_BASE
    Z_SAP_GRC_NWBC
    Z_SAP_GRAC_SPM_FFID
    and runs Transaction: GRAC_SPM
    and he is able to see that ABC is assigned .
    Now the user clicks on "Logon" and the status changes from green to "RED".
    A new SAP screen opens asking credintials for Backend ERP system D24 client 100
    The User enters his own Id : ABC and password and logs in.
    Runs the necessary transactions and logs out using transaction: /nex
    The session in GRC is still running and now the "LOGON button" is disabled , he comes out of that screen too.
    When the user tries to login again using FFUSER1 to do more task , the "LOGON Button" is seen disabled.
    and clicking the "unlock" button also doesn;t help.
    When checked in SM04, no live session is reflected .
    How can we "enable" the LOGON button in the transaction : GRAC_SPM for the same FIREFIGHTER (FFUSER1) assigned for Firefighter ID (ABC) ??
    As it is now not possible to click "LOGON" button and the status is "RED".
    Please let me know your opinion .
    Thank You.
    Regards,
    Premjit

    Thanks to All

  • Using Tiscali Webmail with Firefox 6. If I try and delete an email the Ok and Cancel buttons are disabled and nothing happens, have to use F5 to take me back. IE8 works so is this a compatibility issue?

    Using Tiscali Webmail with Firefox 6. If I try and delete an email the Ok and Cancel buttons are disabled and nothing happens, have to use F5 to take me back. IE8 works so is this a compatibility issue?

    It appears OP solved the problem: [/questions/874744]

  • Page back button is disabled after clicking to another web page, causing me to lose the original page.

    When I click to follow a link from one of my home pages, the back button becomes disabled. This has the effect of "disappearing" the first page and "stranding" the link I traveled to.
    The only work around is enter the site again. Subsequent clicks from the page don't cause it to disappear again.

    I would suspect a slightly incompatible addon of causing that to happen.
    Do you have that problem when running in the Firefox SafeMode?<br/> ''A troubleshooting mode.''<br />
    You can open the Firefox 4.0 SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut. Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut to open it again.''
    If not, see this: <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

  • Delete Button is disabled in Check status

    Hi Experts,
    We are on SRM 7.0 . In Check status POWL, if the shopping cart is in 'Awaiting approval' stage requisitioner can only display the cart , we want him to able to delete the cart as well but the delete button is disabled.
    We have assigned 'medium' level authorization in 'BBP_WFL_SECURITY' then the user can go into the details edit it and delete it..
    But we want the 'Delete' button to be enabled on POWL screen. It is enabled if the SC is in 'Saved' status.
    Any clues to achieve this?
    Thank you,
    Lavanya

    Hi Virendar / MASA
    Is RECALL facility new im SRM 700 ?
    till SRM 550 REQUESTER can delete his/her cart even till follow on docuemnt created ( before confirmation done)
    ln SRM 550 , requester can delete his cart though STATUS  awaiting for approval / contains error/ error in process /po created.
    Muthu

  • In OO Alv toolbar, sum and subsum buttons are disable as default, WHY ?

    i want to enable sum and subsum buttons in alv toolbar. However, as default those buttons are disable. How can i solve ?

    i defined ref_table and ref_field for quantity field in fieldcat  such as  
    ls_fcat-ref_table = 'V03RB'.
    ls_fcat-ref_field = 'KWMENG'.
    so i solve it. thank you for your help.

  • I want a stop button for disabling JavaScript only in the current tab

    I want a 'Stop' button for disabling JavaScript only in the current tab.
    I searched for a feature like this but couldn't find it. It would be a great new feature.

    Tab Permissions: https://addons.mozilla.org/firefox/addon/4757

  • CTI OS Toolkit - Buttons are disable when transfer the call

    Hello guys, i've been in a bad situation and i don´t know how to resolve the problem.
    Here where I work, I installed the CTI Toolkit, but when a agent try to transfer the call to another agent, the toolkit disable all the functions, but it still on, the agent still logged,receive others call, but he can't do anything, because all the buttons are disabled.
    I found a workaround, when occour this, i reset the IP Cisco 7960 Hardphone, so I logged out the agent and logged in again.
    I collect the cti server log, cti os log and the pg log, and I found something, but i don't know how to resolve this problem. Here is a little part of the logs, but I have all the logs completely here, if you want.
    Here is the problem: "The agent Simone Minelli (Id: 5012, ext: 2215)  reported that days 17.09.2010 at 10:25 until 10:26, the CTI OS toolkit  lost
    their task and got the buttons disabled, thereafter transfer  the call to the agent Laryssa Oliveira (ID: 5096, ext: 2202)".
    In appended, i fixed the cti os log, cti server log and the pg log. Thanks everybody!!
    Here is only the cti os log, but fixed there are others:
    10:25:32 CTIOS1-ctios Trace: [agent.5000.5012] AGENT_STATE_EVENT ( eTalking ) [CtiosBaseAgentObject,
         T_BASE_AGENT_AGENT_STATE_EVENT, 89501]
    10:25:32 CTIOS1-ctios Trace: [call.5000.17056904] RTP_STARTED_EVENT [CtiosBaseCallObject,
         T_BASE_CALL_RTP_STARTED_EVENT, 40001]
    10:25:44 CTIOS1-ctios Trace: ClientMgr[1]::OnConnectionClosed, Client[0x40754a0][01211]
    10:26:29 CTIOS1-ctios Trace: [call.5000.17056970] CALL_FAILED_EVENT [CtiosBaseCallObject,
         T_BASE_CALL_CALL_FAILED_EVENT, 2751]
    10:26:52 CTIOS1-ctios Trace: [call.5000.17056904] CALL_CONNECTION_CLEARED_EVENT [CtiosBaseCallObject,
         T_BASE_CALL_CALL_CONNECTION_CLEARED_EVENT, 39001]
    10:27:24 CTIOS1-ctios Trace: [skillgroup.5000.40] QUERY_SKILL_GROUP_STATISTICS_REQ
         [CtiosBaseSkillGroupObject, T_BASE_SKILL_QUERY_SKILL_GROUP_STATISTICS_REQ,
         788751]
    10:27:24 CTIOS1-ctios Trace: [skillgroup.5000.40] QUERY_SKILL_GROUP_STATISTICS_CONF
         [CtiosBaseSkillGroupObject, T_BASE_SKILL_QUERY_SKILL_GROUP_STATISTICS_CONF,
         788751]
    10:27:51 CTIOS1-ctios Trace: [agent.5000.5012]::DisableSkillGroupStatisticsReq()- Empty skill group number
         list provided.[CtiosBaseAgentObject,
         T_BASE_AGENT_DISABLE_EMPTY_SKILLGROUP_LIST, 985]
    10:27:51 CTIOS1-ctios Trace: [agent.5000.5012]::DisableSkillGroupStatisticsReq()- Empty skill group number
         list provided.[CtiosBaseAgentObject,
         T_BASE_AGENT_DISABLE_EMPTY_SKILLGROUP_LIST, 986]
    10:27:51 CTIOS1-ctios Trace: ClientMgr[1]::OnConnectionClosed, Client[0xf841a8][SILVMIN1-VM-2872-2796]
    10:29:41 CTIOS1-ctios Trace: [skillgroup.5000.35] QUERY_SKILL_GROUP_STATISTICS_REQ
         [CtiosBaseSkillGroupObject, T_BASE_SKILL_QUERY_SKILL_GROUP_STATISTICS_REQ,
         789001]
    10:29:41 CTIOS1-ctios Trace: [skillgroup.5000.38] QUERY_SKILL_GROUP_STATISTICS_CONF
         [CtiosBaseSkillGroupObject, T_BASE_SKILL_QUERY_SKILL_GROUP_STATISTICS_CONF,
         789001]
    10:30:03 CTIOS1-ctios Trace: [call.5000.17057099] CALL_DATA_UPDATE_EVENT [CtiosBaseCallObject,
         T_BASE_CALL_CALL_DATA_UPDATE_EVENT, 37001]
    10:30:39 CTIOS1-ctios Trace: [agent.5000.5056] AGENT_STATE_EVENT ( eAvailable ) [CtiosBaseAgentObject,
         T_BASE_AGENT_AGENT_STATE_EVENT, 89751]
    10:30:49 CTIOS1-ctios Trace: ClientMgr[1]::OnConnectionClosed, Client[0x40754a0][01213]
    10:30:56 CTIOS1-ctios Trace: [agent.5000.5012] QUERY_AGENT_STATE_REQ [CtiosBaseAgentObject,
         T_BASE_AGENT_QUERY_AGENT_STATE_REQ, 1501]
    10:30:56 CTIOS1-ctios Trace: [agent.5000.5012] QUERY_AGENT_STATE_CONF ( eLogout ) [CtiosBaseAgentObject,
         T_BASE_AGENT_QUERY_AGENT_STATE_CONF, 1501]
    Thanks!

    Is this with the out of the box CTIOS desktop?  Any customization?
    david

  • Command Button not disabled properly

    I am using a commandButton and its partial trigger is set to a table. The reason being that I need to update the label with the number of rows selected in table. And if no rows is selected, it should be disabled. So for the startup I have set the "disabled" attribute to true.
    Now I am facing this problem. The button is disabled. But when I hover the mouse over it, I can see it being highlighted and it seems enabled and I can click it when the mouse is over it. Otherwise its disabled. Why is it behaving like this?

    JDev version = 11.1.1.6.2
    No skins applied.
    Code:
    <af:panelStretchLayout topHeight="30" id="psl1" styleClass="AFStretchWidth">
    <f:facet name="top">
    <af:panelGroupLayout layout="horizontal" id="pgl1">
    <af:commandButton text="MyButton"
    id="cb1"
    actionListener="#{pageFlowScope.MyBean.doSomething}"
    inlineStyle="margin-top:4px;margin-left:4px;margin-bottom:4px"
    partialTriggers="pc1:t1" disabled="true"
    partialSubmit="true"/>
    </af:panelGroupLayout>
    </f:facet>
    <f:facet name="center">
    <af:panelCollection id="pc1" styleClass="AFStretchWidth"
    featuresOff="statusBar wrap freeze formatMenu detachMenuItem">
    <af:table value="#{pageFlowScope.MyBean.tableData}"
    var="row" rowBandingInterval="0" id="t1"
    summary="My table"
    columnStretching="multiple"
    styleClass="AFStretchWidth"
    rowSelection="multiple" contentDelivery="lazy"
    verticalGridVisible="false"
    fetchSize="0"
    selectionListener="#{pageFlowScope.MyBean.onTableSelection}">
    <af:column sortable="true"
    width="50%"
    headerText="First Column"
    rowHeader="unstyled" id="c1">
    <af:outputText value="Some Text" id="ot1"/>
    </af:column>
    <af:column sortable="true"
    width="50%"
    headerText="Second Column"
    id="c2">
    <af:outputText value="Some Other Text" id="ot2"/>
    </af:column>
    </af:table>
    </af:panelCollection>
    </f:facet>
    </af:panelStretchLayout>

Maybe you are looking for