BUG: CheckBox colum inside table (ADF 11.1.2.1)

I find a bug using CheckBox inside table, this are steps to get the bug.
1.Create a view object from database table.
2.Create a where clause in view Object
3.Create a parameter form (using where clause)
4.Create a editable table with filter enable
-- AFTER TEST, ALL WORK
5. Convert inputText to af:selectBooleanCheckbox
-- AFTER TEST GET THIS ERROR:
1- FIlter adf tabla and data is ok.
2- Apply a filter using parameter form and same time adf:table filter. (Data is not well.)
As I say this happend only when i change my inputText to af:selectBooleanCheckbox.
With inputText work well, with booleanCheacBox work bad..
Someone know if this was fix in 11.1.2.2 ??

My attribute is not boolean but I fix it in viewRowImplementation accesor:
  public String getProgramada() {
        String dbValue= (String) getAttributeInternal(PROGRAMADA);
        if("S".equals(dbValue))
            retreturn  "true";
        else
            return  "false";       
public void setProgramada(String value) {
        String valorSeleccionado = null;
        if("true".equals(value))
            valorSeleccionado = "S";
        else
            valorSeleccionado = "N";       
        setAttributeInternal(PROGRAMADA, valorSeleccionado);
    }Seems that change was the problem.. this code work bat generate the BUG i post here.
SOLUTION:
1. Revert the viewRowImpl to default accesor.
2. Modify page definition in tis way using idea from Vinay Agarwal
<tree IterBinding="VSiriusCorreriasUsuView1Iterator" id="VSiriusCorreriasUsuView1">
      <nodeDefinition DefName="modelo.vistas.VSiriusCorreriasUsuView" Name="VSiriusCorreriasUsuView10">
        <AttrNames>
          <Item Value="Correria"/>
          <Item Value="Descripcion"/>
          <Item Value="Instleer"/>
          <Item Value="Descargadas"/>
          <Item Value="Ejecutadas"/>
          <Item Value="Codusuario"/>
          <Item Value="Codterminal"/>
          <Item Value="Placaveh"/>
          <Item Value="Fechaprog"/>
          <Item Value="Programada" Binds="Programada"/>
        </AttrNames>
      </nodeDefinition>
    </tree>
<button IterBinding="VSiriusCorreriasUsuView1Iterator" id="Programada" DTSupportsMRU="false" StaticList="true">
      <AttrNames>
        <Item Value="Programada"/>
      </AttrNames>
      <ValueList>
        <Item Value="S"/>
        <Item Value="N"/>
      </ValueList>
    </button>And everything Seems to work Well. Seems to be more easy than add code to accesors in viewRowImpl and work better.
My checkbox value is get from tree component:
<af:selectBooleanCheckbox value="#{row.bindings.Programada.inputValue}"
                                             shortDesc="#{bindings.VSiriusCorreriasUsuView1.hints.Programada.tooltip}"
                                             id="it7" label="#{bindings.Programada.label}" simple="true" autoSubmit="true">
</af:selectBooleanCheckbox>

Similar Messages

  • Is it possible to center a checkbox in a table filter?

    Hi I am using Studio Edition Version 11.1.1.2.0.
    Is it possible to center a checkbox in a table filter without getting a bug? I have tried using a panelgroup with horizontal layout and Halign center. It looks good at first but when I use the filter the checkbox gets a dublicate which is left aligned above the original checkbox. Is there any way to center a checkbox inside a filter?

    Ok I will explain it as well as I can. I have a table with some columns that have an af:selectBooleanCheckBox in their body. These columns I have set the Align property to center because I think the layout looks better that way. This works fine.
    Now I also want to be able to filter these columns. Then I put an af:selectBooleanCheckBox in the filter facet and set the value of that checkbox to #{vs.filterCriteria.attributeName} which also seems to work but the checkbox in the filter facet is left aligned.
    So while I set the Align of the column to center the filter is not center aligned.
    I tried to get the checkbox in the filter center aligned by putting an af:panelGroupLayout where I set Layout: horizontal and Halign: center into the filter facet of the column and then put the checkbox into that af:panelGroupLayout.
    At first when the page is run the checkbox in the filter is in the center and everything seems fine but when you use the filter another checkbox that is left aligned and above the original one appears in the filter so that now I suddenly have 2 checkboxes in the filter.
    Below I have pasted the code of the table and one of these columns so you can see what I mean in case you still don´t understand me. I thought it would be enough to only paste the code of the table and one column but if the rest of the code is neccasary let me know and I will paste that here too.
    <af:table value="#{bindings.FvgQsPeriodTypeQuestionTyVO1.collectionModel}"
    var="row"
    rows="#{bindings.FvgQsPeriodTypeQuestionTyVO1.rangeSize}"
    emptyText="#{bindings.FvgQsPeriodTypeQuestionTyVO1.viewable ? 'No rows yet.' : 'Access Denied.'}"
    fetchSize="#{bindings.FvgQsPeriodTypeQuestionTyVO1.rangeSize}"
    filterModel="#{bindings.FvgQsPeriodTypeQuestionTyVO1Query.queryDescriptor}"
    queryListener="#{bindings.FvgQsPeriodTypeQuestionTyVO1Query.processQuery}"
    filterVisible="true" varStatus="vs"
    selectedRowKeys="#{bindings.FvgQsPeriodTypeQuestionTyVO1.collectionModel.selectedRow}"
    selectionListener="#{bindings.FvgQsPeriodTypeQuestionTyVO1.collectionModel.makeCurrent}"
    rowSelection="single" id="table2"
    partialTriggers=":::pc1:table1"
    columnStretching="column:QTCol">
    <af:column sortProperty="P01AsBoolean" filterable="true" sortable="true"
    headerText="#{bindings.FvgQsPeriodTypeQuestionTyVO1.hints.P01AsBoolean.label}"
    width="50" align="center" id="c6">
    <af:selectBooleanCheckbox
    label="#{bindings.FvgQsPeriodTypeQuestionTyVO1.hints.P01AsBoolean.label}"
    value="#{row.bindings.P01AsBoolean.inputValue}"
    id="sbc1"/>
    <f:facet name="filter">
    <af:panelGroupLayout id="pgl1" halign="center"
    layout="horizontal">
    <af:selectBooleanCheckbox value="#{vs.filterCriteria.P01AsBoolean}"
    id="sbc2"/>
    </af:panelGroupLayout>
    </f:facet>
    <f:facet name="footer"/>
    </af:column>
    </af:table>

  • Pages '09: Can't use AppleScript for selected text inside tables?

    When I run get selection on selected text in a Pages document, I get something like this:
    <pre>text from character 1 to character 4 of body text of document id 9943974 of application "Pages"</pre>
    When I run get selection on selected text inside a table cell in a table in a Pages document, I get something like this:
    <pre>text from character 1 to character 4 of some table of document id 3539679 of application "Pages"</pre>
    When I run get selection on selected text inside a table cell in ANOTHER table in the same Pages document, I get the exact same thing. It still says "some" table. So there is no way to distinguish between tables if there are more than one table in the same Pages document.
    Am I correct in understanding that this means that most AppleScript commands for manipulating text are unusable inside table cells?
    For example, it seems impossible to get the properties of the selection when the selection is selected text inside "some" table. So it's impossible do anything about text styles, etc.
    Is AppleScript support in Pages ’09 really that limited, or am I missing something?

    The first script below should return the character style of any selection made in Pages ’09, whereas the second script should apply the "XXX" character style to any selection:
    --BEGINNING OF SCRIPT 1
    tell application "Pages"
    activate
    tell application "System Events" to tell process "Pages"
    -- Show the format bar:
    if not (pop up button 1 of window 1 exists) then
    click menu item "Show Format Bar" of menu 1 of menu bar item "View" of menu bar 1
    end if
    -- Show the styles drawer and character styles:
    if menu item "Show Styles Drawer" of menu 1 of menu bar item "View" of menu bar 1 exists then
    keystroke "t" using {shift down, command down}
    end if
    tell front window
    tell checkbox 1 of group 1 of drawer 1 -- “Show or hide character styles.” checkbox
    repeat until it exists
    delay 0.1 -- wait until the styles drawer is open
    end repeat
    if description is "show character style" then click
    end tell
    -- Get the row index (although it is not a property) of the character style:
    tell menu button 2 -- “Choose a character style.” menu button
    click
    set k to 0
    repeat
    set k to k + 1
    if value of attribute "AXMenuItemMarkChar" of menu item k of menu 1 exists then exit repeat
    end repeat
    keystroke return -- hide the menu
    end tell
    -- Get the character style name:
    if k > 1 then set k to k + 1
    value of static text 1 of row k of outline 1 of scroll area 2 of splitter group 1 of group 1 of drawer 1
    end tell
    end tell
    end tell
    --END OF SCRIPT 1
    --BEGINNING OF SCRIPT 2
    set myStyle to "XXX" -- the name of the character style you want to apply
    tell application "Pages"
    activate
    tell application "System Events" to tell process "Pages"
    -- Show the format bar:
    if not (pop up button 1 of window 1 exists) then
    click menu item "Show Format Bar" of menu 1 of menu bar item "View" of menu bar 1
    end if
    -- Show the styles drawer and character styles:
    if menu item "Show Styles Drawer" of menu 1 of menu bar item "View" of menu bar 1 exists then
    keystroke "t" using {shift down, command down}
    end if
    tell front window
    tell checkbox 1 of group 1 of drawer 1 -- “Show or hide character styles.” checkbox
    repeat until it exists
    delay 0.1 -- wait until the styles drawer is open
    end repeat
    if description is "show character style" then click
    end tell
    set characterStyles to value of static text 1 of rows of outline 1 of scroll area 2 of splitter group 1 of group 1 of drawer 1
    set k to 0
    repeat with thisStyle in the characterStyles
    set k to k + 1
    if thisStyle as text is myStyle then exit repeat
    end repeat
    -- Apply the character style:
    if k > 1 then set k to k - 1
    click menu button 2 -- “Choose a character style.” menu button
    click menu item k of menu 1 of menu button 2
    end tell
    end tell
    end tell
    --END OF SCRIPT 2
    I suppose that +paragraph styles+ should work the same.
    I'm beginning to know Pages ’09 a little better now.
    Message was edited by: Pierre L. (show format bar)

  • Checkbox  in a table loop - without using Tableview or Iterator.

    My client doesnt want to use tableview or iterator. We are using basic html to create the page. I know I can accomplish much easily using tableviews...but I am not allowed to use it.
    My requirement is simple. In my layout I loop at my internal table and display the contents. The last field is displayed as a checkbox.
    Ex:
    Name  status flag
    Tom  10         [ ]
    Ted    20        [X]
    Rob    10       [X]
    My loop in the Layout is as below:
    <%
      loop at t_rqdt into l_rqdt.
      if l_rqdt-flag = 'X'.
         l_chk = 'checked'.
      endif.
    %>
    <tr bgcolor="#EFEFEF">
    <td></td>
    <td <%= l_rqdt-name %> </td>
    <td <%= l_rqdt-status %></td>
    <td class=tdstatus width=40% >
    <input type=checkbox name="flag" value="flag" <%= l_chk %> > </td>
      </tr>
    <%
      endloop.
    %>
    When I select couple of rows and mark the flag field checkbox, and SUBMIT at the end, and when I see my internal table t_rqdt field r_rqdt-flag.. I dont see them having value X for the rows I marked the check boxes.
    Can anyone please help me how can I trap the checkboxes marked inside a table loop in my on input processing?
    Thanks
    PK

    Much Thanks Raja! It worked!!
    I declared as below for the form fields and was able to get values.
        DATA:  t_form_fields TYPE tihttpnvp.
        DATA:  l_form_fields TYPE LINE OF tihttpnvp.
        CALL METHOD request->get_form_fields
          CHANGING
            fields = t_form_fields.
    One more before my client asks me to do..
    if I place a button CheckALL and Uncheck All on the layout, how can we check/uncheck all the checkboxes on the client side. Any simple Javascript method available? I know I can pass the itab to on input processing and get the flags set, but if it can be achieved on the client side using a script that would help.
    Please let me know.
    Thanks.

  • "No text target or text model" when accessing notes inside table cells.

    I'm using the InDesign Automation Objects through Delphi to scan all the notes inside a document and that works fine as long as the notes aren't inside tables.
    For those notes inside tables as soon as I try to get the instance for a note I get the error "No text target or text model". Tried several ways of scanning the document to get to the notes but it doesn't make a difference.
    Here's my code:
        for I := 1 to FDoc.Stories.Count do
          for J := 1 to FDoc.Stories.Item[I].Tables.Count do
            for K := 1 to FDoc.Stories.Item[I].Tables.Item[J].Notes.Count do
              Note := FDoc.Stories.Item[I].Tables.Item[J].Notes.Item[K];
    The last line throws the error.
    This seems like an InDesign bug, or is there maybe something wrong with the document or a different way to get the note content?
    Thanks.

    intolight wrote:
    > i'm bewildered by this behavior. I was building a site
    last night and
    > everytime i put text in a table cell it appeared bolder.
    No other attributes
    > were changed by me. Didn't matter if i typed it new or
    pasted text from outside
    > the table. Whne put in a table it goes heavier or
    bolder. . I don't remember
    > this ever happening before.
    >
    > As a matter of fact as a work around i was able to take
    a table from a
    > previous web page that has text in a table cell that
    doesn't go bold and paste
    > that into the new document and type over that text. But
    i don't want to have to
    > do that all the time.
    >
    > Am i going crazy? Ok you don't have to answer that. But
    please help me fiqure
    > out what's going on here. thanks!!!
    >
    >
    > page with text going bold in table cells
    >
    http://intolight.biz/text/
    >
    > page where text doesn't go bold in table cells
    >
    http://www.intolight.biz/ai/frame_index.htm
    >
    It's a table heading (th) and most browsers (all?) turns such
    tag bold.

  • File Upload UI element is not working properly inside Table Popin container

    Hi Expert,
    I created a table with popin, i placed file-upload UI element inside table popin contatiner.
    The file upload UI element is displaying properly but, when i click the browse button to select  the file, the file open dialog box is not popping out.
    will table popin support file-upload UI element inside it?
    it not is there any other way to call a file_open dialog box from inside the table popin.
    Thanks,
    James

    If you are on NetWeaver 7.01, you can try both the ACFUpDownload UI element or try creating your own FileUpload in Adobe Flex with Flash Islands.  ACFUpDownload requires the KPRO by default (which is why the same application isn't working for you), but you can write your own handler class to act as the KPRO receiver.  Here is an eLearning on the topic:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/109b9b52-bc00-2c10-8786-e4c5e96d7e04
    and source code:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/70645070-bb00-2c10-f086-f126721acdb4
    If you want an eLearning on the FlashIslands approach, you can find it here as well:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50d42644-91ef-2b10-228c-9e0ae75b274e
    and Source Code:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f044b62c-90ef-2b10-64a6-9ec25294d133
    However in both of these approaches you still have to be careful with how you handle large files.  The problem is that they are processed often a single binary string.  This makes the processing easy, but requires total amount of session memory at least as large as the file being uploaded.  In NetWeaver 7.02 ABAP adds the concept of Streams and Locators to help with the partial processing of large files.  This feature doesn't come until later this year, but if you are interested you can learn about it here:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/80f983df-213e-2c10-ba89-b5a12ef178e8

  • PayPal buttons inside table scramble Design View in DW CS5.5

    I developed my web site using Dreamweaver 8:
    http://www.harmonize.com/hatleymusic/classic.html
    As  you see, I have PayPal buttons inside table cells.  I did this using  Design View, putting the insertion point in the table cell, going to  code view, and pasting the PayPal button code at the insertion point.   This all worked fine.
    I just upgraded to DW CS5.5. and now  when I try to use the same procedure, the Design View image gets  scrambled  after I paste the button code in code view.  The table format  is no longer in place, and I can no longer see where the cells of the  table are.  However, when I go to Live View, everything looks fine  including the table and the buttons.
    Can anyone tell me  how to overcome this problem?  As it stands, I cannot use DW to work on  my web site, which is a major problem for me.
    Thanks.

    How do I get someone to respond to my question here?
    Let me try again.
    With DW CS5.5 when I try to insert a PayPal button into a table (which I always did with DW8) the table in Design View gets scrambled, making it unusable.  Please would one of you out there who is much more knowledgeable about DW than me try it and see if there is a solution?  If you create a new HTML page in Design view, create a table in it, place the insertion point inside one of the table cells, go to the code view and locate the insertion point there, then paste the PayPal button code at that point. Here's the code:
    <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_s-xclick">
    <input type="hidden" name="hosted_button_id" value="XSXQ9CUMUVLQC">
    <input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_cart_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
    <img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
    </form>
    Now go back to Design view and see how it looks.  If it acts the way it does for me, the table is no longer visible, but if you go to Live View everything looks fine with the table and the button inside it.  Of course, I can't design in Live View.
    PLEASE can someone out there help me.
    Many thanks.

  • How to work with checkbox in a table

    hi im working with a table than shows SQL result and i put a column with checkboxes in the table
    how can i handle the rows with the checkbox in true ? i want to do it with a button
    thanks

    Here are more resources. By the way, I don't understand what you mean by "how can i handle the rows with the checkbox in true ? i want to do it with a button "
    http://blogs.sun.com/roller/page/divas?entry=using_checkboxes_in_a_table
    http://blogs.sun.com/roller/page/divas?entry=table_component_sample_project

  • Layers don't appear properly inside table in Internet Explorer, but are fine in Firefox and Safari

    How can I get layers that are inside tables that are
    inside another layer to appear properly in Internet Explorer. It
    works fine in Firefox and Safari on Mac and PC? The layers that are
    causing the problems contain a table with an image and a caption,
    so 2 cells. Then the layers are within a larger table that is
    within a layer. I don't use IE (cause it is the bain of my
    existence) but for a client they may want it to look good on all
    browsers, even if it is IE 6 on a PC, maybe the browser version is
    too old and I shouldn't worry about it? I know IE is not compliant
    with web standards so is this the problem or is there a way to fix
    the problem so it will look good in all the browers? The URL is
    http://uweb.txstate.edu/~ts20/scevents/spec-coll-events.html
    so if anyone could look at it IE and firefox and see how I could
    fix it, this would be very appreciated!
    Much needed help. Thanks for any input.

    >>I knwow IE is not compliant with web standards
    That is too broadly stated to be credible. Certainly IE6 has
    its problems
    but is highly compliant with most web standards. To be an
    effective
    designer/developer one must have a working knowledge of IE's
    deficiencies,
    not just write it off as non-compliant. After all, it is
    still used by some
    70% or web users (based on W3C Schools data.)
    Please post a link to your site.
    Walt
    "starryeyestara" <[email protected]> wrote
    in message
    news:eq3jc0$7cs$[email protected]..
    >
    How can I get layers that are inside tables that are
    inside
    > another
    > layer to appear properly in Internet Explorer. It works
    fine in Firefox
    > and
    > Safari on Mac and PC? The layers that are causing the
    problems contain a
    > table
    > with an image and a caption, so 2 cells. Then the layers
    are within a
    > larger
    > table that is within a layer. I don't use IE but for a
    client they may
    > want it
    > to loog good on all browsers, even if it is IE 6 on a
    PC. I knwow IE is
    > not
    > compliant with web standards so is this the problem or
    is there a way to
    > fix
    > the problem so it will look good in all the browers?
    > Much needed help. Thanks for any input.
    >

  • How to create checkbox group and table dynamically?

    HI All
    How to create checkbox group and table dynamically?
    Regards
    Ravi

    hi
    check this links for creating  tables dnamically
    How to Create a table dynamically?
    Re: how to create a table dynamically in webdynpro
    and for checkboxgroup
    IWDTransparentContainer rootContainer =
    (IWDTransparentContainer)view.getElement("RootUIElementContainer");
    IWDCheckBox check = (IWDCheckBox)view.createElement(IWDCheckBox.class,"Check"+k);
    //Here "check"+k k represents a unique value every time u create so that u wont get a duplicate instance
    check.setChecked(false);
    rootContainer.addChild(check);
    or Re: adding checkboxes dynamically

  • Validating 'Initial Values' checkbox in the table

    hi all
    i have a requirement
    i need to put a condition based on the 'Initial values' checkbox of the table.
    eg: let us say I have a table KNA1
    and i have fields KUNNR, LAND1 and NAME1 in my table
    if 'Initial values' checkbox for KUNNR is checked i need to put my condition
    and if 'Initial values' checkbox for LAND1 is checked i need to put another condition
    and if 'Initial values' checkbox of NAME1 field is checked i need to put some other condition.
    in the similar way as per my requirement i need to put conditions for almost all the fields available in the table.
    can any one tell me how to write the above logic.

    Hi vamsi,
    1. one way is
    2. First take all records with all field values, in one ITAB.
    3. Then.
    4.
    data : tabix like sy-tabix.
    data : delflag type c.
       LOOP AT ITAB.
      <b> tabix = sy-tabix.
       clear delflag.</b>
       if not condit1.
      delflag = 'X'.
      endif.
    if not condit2.
      delflag = 'X'.
      endif.
    ..... other if conditions.
    <b>   if delflag = 'X'.
       delete itab index tabix.
      endif.</b>
      ENDLOOP.
    4
    regards,
    amit m.

  • Controlling spry menu inside tables

    I am trying to add a spry menu bar widget inside a table on my web page. The problem
    I am having is the spry menu floats and does not move with the table. Is there something
    I must do to nest the spry menu bar inside the table ?
    I tried inserting a div tag and then placeing the menu inside of that but the menu still
    floats above the table. Any help would be greatly apprieciated

    le chin wrote:
    My code is below. I am trying to insert spry menu bar inside table but for some reason the
    bar does not move with the table.
    <body>
    <table width="741" height="800" border="0" align="center">
    <tr>
      <td width="738" height="100" align="left"><table width="750" height="64" border="0">
        <tr>
          <td>
    <ul id="MenuBar1" class="MenuBarHorizontal">
    <li><a href="#">Item 1</a>          </li>
    <li><a href="#">Item 2</a></li>
    <li><a href="#">Item 3</a>          </li>
    <li><a href="#">Item 4</a></li>
    </ul>
    </td>
    </tr>
    </table></td>
    Why nested tables? What are you try to do? Centre the menu or have it aligned to the left?
    Steve

  • How to iterator inputtext inside table

    hi i have situation where i have table inside a table i have inputtext which got emailaddress how can i iterator in order to return that email
    this is my table
    <af:table value="#{bindings.DeltMember1.collectionModel}"
                              var="row" rows="#{bindings.DeltMember1.rangeSize}"
                              emptyText="#{bindings.DeltMember1.viewable ? 'No data to display.' : 'Access Denied.'}"
                              fetchSize="#{bindings.DeltMember1.rangeSize}"
                              rowBandingInterval="0"
                              selectedRowKeys="#{bindings.DeltMember1.collectionModel.selectedRow}"
                              selectionListener="#{bindings.DeltMember1.collectionModel.makeCurrent}"
                              rowSelection="single" id="t5" width="1155"
                              partialTriggers="cb9" columnStretching="last"
                              inlineStyle="height:134px;">
                      <af:column sortProperty="Username" sortable="false"
                                 headerText="#{bindings.DeltMember1.hints.Username.label}"
                                 id="c15">
                        <af:inputText value="#{row.bindings.Username.inputValue}"
                                      label="#{bindings.DeltMember1.hints.Username.label}"
                                      required="#{bindings.DeltMember1.hints.Username.mandatory}"
                                      columns="#{bindings.DeltMember1.hints.Username.displayWidth}"
                                      maximumLength="#{bindings.DeltMember1.hints.Username.precision}"
                                      shortDesc="#{bindings.DeltMember1.hints.Username.tooltip}"
                                      id="it6">
                          <f:validator binding="#{row.bindings.Username.validator}"/>
                        </af:inputText>
                      </af:column>
                      <af:column sortProperty="Firstname" sortable="false"
                                 headerText="#{bindings.DeltMember1.hints.Firstname.label}"
                                 id="c14">
                        <af:inputText value="#{row.bindings.Firstname.inputValue}"
                                      label="#{bindings.DeltMember1.hints.Firstname.label}"
                                      required="#{bindings.DeltMember1.hints.Firstname.mandatory}"
                                      columns="#{bindings.DeltMember1.hints.Firstname.displayWidth}"
                                      maximumLength="#{bindings.DeltMember1.hints.Firstname.precision}"
                                      shortDesc="#{bindings.DeltMember1.hints.Firstname.tooltip}"
                                      id="it11">
                          <f:validator binding="#{row.bindings.Firstname.validator}"/>
                        </af:inputText>
                      </af:column>
                      <af:column sortProperty="Surname" sortable="false"
                                 headerText="#{bindings.DeltMember1.hints.Surname.label}"
                                 id="c13">
                        <af:inputText value="#{row.bindings.Surname.inputValue}"
                                      label="#{bindings.DeltMember1.hints.Surname.label}"
                                      required="#{bindings.DeltMember1.hints.Surname.mandatory}"
                                      columns="#{bindings.DeltMember1.hints.Surname.displayWidth}"
                                      maximumLength="#{bindings.DeltMember1.hints.Surname.precision}"
                                      shortDesc="#{bindings.DeltMember1.hints.Surname.tooltip}"
                                      id="it7">
                          <f:validator binding="#{row.bindings.Surname.validator}"/>
                        </af:inputText>
                      </af:column>
                      <af:column headerText="#{bindings.DeltMember1.hints.Emailaddress.label}"
                                 id="c18">
                        <af:outputText value="#{row.Emailaddress}" id="ot6"/>
                      </af:column>
                      <af:column id="c17">
                        <af:panelGroupLayout id="pgl6">
                          <af:panelFormLayout id="pfl8" rows="1" maxColumns="2">
                            <af:commandButton actionListener="#{bindings.Delete1.execute}"
                                              text="Remove" id="cb9">
                              <af:setActionListener from="{true}"
                                                    to="#{pageFlowScope.addMember.deleteAction}"/>
                            </af:commandButton>
                          </af:panelFormLayout>
                        </af:panelGroupLayout>
                      </af:column>
                    </af:table>
    something like this
        public String getCountry(){
            DCIteratorBinding it = ADFUtil.findIterator("IntUsr1Iterator");
           RowSetIterator rsi = it.getRowSetIterator();
             Row rw =   rsi.first();
             testusername = (String)rw.getAttribute("Countrycode");
            return testusername;      
    but my problem is the details are inside table not inputtextEdited by: adf009 on 2013/05/28 3:35 PM

    but the value is inside table column,
    what must i iterator
    DCIteratorBinding it = ADFUtil.findIterator("IntUsr1Iterator");
    <af:column headerText="#{bindings.DeltMember1.hints.Emailaddress.label}"
                                 id="c18">
                        <af:outputText value="#{row.Emailaddress}" id="ot6"/>
                      </af:column>
    pagedef of table
    <tree IterBinding="DeltMember1Iterator" id="DeltMember1">
          <nodeDefinition DefName="uam.model.UpdOrgDetails.DeltMember"
                          Name="DeltMember10">
            <AttrNames>
              <Item Value="Username"/>
              <Item Value="Firstname"/>
              <Item Value="Surname"/>
              <Item Value="Emailaddress"/>
            </AttrNames>
          </nodeDefinition>
        </tree>Edited by: adf009 on 2013/05/28 5:00 PM
    Edited by: adf009 on 2013/05/28 5:01 PM

  • HIDING SOME COLUMS IN TABLE CONTROL

    Hi
    i have a module pool program i want to hide the some colums in table control dynamically

    typing error, use LOOP AT CTRL-COLS into COLS, then you can use COLS-INVISIBLE or COLS-SCREEN-<attribute of screen>.
    TYPE-POOL CXTAB .                                                                               
    TYPES:                                                                               
    BEGIN OF CXTAB_COLUMN,                                                             
             SCREEN      LIKE SCREEN,     "Attributes struktur SCREEN                         
             INDEX       TYPE I,         "Position of a column on the screen                  
             SELECTED(1) TYPE C,          "Indicator 'column selected'                        
             VISLENGTH   LIKE ICON-OLENG, "Visualised length of a column                      
             INVISIBLE(1) TYPE C,         "Indicator 'column invisible'                       
           END   OF CXTAB_COLUMN,                                                                               
    BEGIN OF CXTAB_CONTROL,                                                            
             FIXED_COLS    TYPE I, "Number of fixed columns                                   
             LINES         TYPE I, "Number of lines to display                                
             TOP_LINE      TYPE I, "Top line during next PBO                                  
             CURRENT_LINE  TYPE I, "Current line during LOOP/ENDLOOP                          
             LEFT_COL       TYPE I, "Fist scrollable column after fixed area                  
             LINE_SEL_MODE    TYPE I, "Line-selection  : none(0), single(1),                  
             COL_SEL_MODE     TYPE I, "Column-selection:        multiple(2)                   
             LINE_SELECTOR(1) TYPE C, "Indicator: 'With line-selection col'                   
             V_SCROLL(1) TYPE C,            "not used                                         
             H_GRID(1) TYPE C,        "Indicator: 'Horizontal  grid-lines'                    
             V_GRID(1) TYPE C,     "Indicator: 'Vertikal    grid-lines'                       
             COLS      TYPE STANDARD TABLE OF CXTAB_COLUMN                                    
                            WITH NON-UNIQUE DEFAULT KEY,                                      
             INVISIBLE(1) TYPE C,                                                             
           END   OF CXTAB_CONTROL,      
    Regards

  • How to bind dynamic checkbox to a table

    Hi,
    I have a table that holds many fields. I put these fields on the screen dynamically.
    I would like to bind a checkbox to select a field row.
    I tried to bind the checkbox to the table but with no success. I keep getting the binding to the first element.
    Does anyone has an example?
    Thanks,
    Itay

    Hi P,
    here is my code:
      LOOP AT lt_available_items ASSIGNING <item>.
        ADD 1 TO lv_col.
        IF lv_col > lv_cell_per_col.
          lv_col = 1.
          ADD 1 TO lv_row.
          lv_new_line = 'X'.
        ENDIF.
    *   Add dynamic group
        CONCATENATE 'GROUP_' lv_col '_' lv_row INTO lv_str.
        lr_new_group = cl_wd_group=>new_group( id = lv_str view = view design = '02' ).
        IF lv_new_line = 'X'.
          CLEAR lv_new_line.
          cl_wd_matrix_head_data=>new_matrix_head_data( element = lr_new_group ).
        ELSE.
          cl_wd_matrix_data=>new_matrix_data( element = lr_new_group ).
        ENDIF.
        lr_new_group->set_width( '230' ).
        cl_wd_matrix_layout=>new_matrix_layout( container = lr_new_group ).
        lr_group->add_child( lr_new_group ).
    *   Left side container
        CONCATENATE 'CONT_L_' lv_col '_' lv_row INTO lv_str.
        lr_new_container = cl_wd_transparent_container=>new_transparent_container(
              id = lv_str view = view ).
        cl_wd_matrix_head_data=>new_matrix_head_data( element = lr_new_container ).
        cl_wd_matrix_layout=>new_matrix_layout( container = lr_new_container ).
        lr_new_group->add_child( lr_new_container ).
    *   Add checkbox
        CONCATENATE 'CHK_' lv_col '_' lv_row INTO lv_str.
        lr_checkbox = cl_wd_checkbox=>new_checkbox( view   = view
                                                    id     = lv_str ).
        lr_matrix_head = cl_wd_matrix_head_data=>new_matrix_head_data( element = lr_checkbox ).
        lr_checkbox->set_layout_data( lr_matrix_head ).
        lr_checkbox->bind_checked( 'AVAILBLE_ITEMS.SELECTED' ).
        lr_new_container->add_child( lr_checkbox ).
    endloop.
    my node is AVAILABLE_ITEMS and it has the attributes: SELECTED, MATNR, MAKTX...
    thanks,
    Itay

Maybe you are looking for

  • How do you slow down audio files?

    Hey everyone! I was wondering if there is a way that you can slow down audio (not midi) in Logic. I really need that ability so I can start transcribing a lot of pieces for my music lessons... If Logic doesn't have anything like that, is there a free

  • Adobe Preflight 9.2 bug in XMP by pdf/a-1b validation ?

    Hello, I am trying to validate my pdf/a-1b document conformance using Adobe Professional 9.2  Preflight function and becoming and error in XMP complaining that "http://purl.org/dc/elements/1.1/dc:date" property is not defined and no extension schema

  • Re Create Joins in Complex folder?

    Hi all, I have a question regarding complex folders. I am reading the Oracle Discoverer Handbook, and it says that when a complex folder is created and Items are dragged in, the Joins are not copied, and must be created. (I noticed that the joins are

  • Variables for dates

    Hi Experts, i am trying to design an query,in which i have two charecteristics named as Start Date & End Date. The values for start date & end date are diffrent for some records and same for same records. i have the requirement to use start date and

  • Vision Demo Application Jinit Error

    Hi, I am running Apps 11.5.8 on Redhat 7.3 (Ker. 2.4.20-28.7). The installation is fine and database and processes are running OK. When trying to access the Vision DB application selections after logging in,I get the following error. Workflow / Workf