Rendering a column before the nodeStamp column in an af:treeTable

I have a requirement to show a column before the nodeStamp column in a treeTable.
Is there a way to achieve this?
Code looks like the following -
<af:column id="t3c1" width="50px" headerText="#{dbdiscoveryuiBundle.SELECT}" align="center">
<af:selectBooleanCheckbox .... />
</af:column>
<f:facet name="nodeStamp">
<af:column id="t3c2" rowHeader="unstyled" headerText="#{dbdiscoveryuiBundle.TARGET_NAME}" width="80%" align="start">
  <af:outputText ...." />
</af:column>
</f:facet>
Expected order -> Checkbox first followed by OutputText
NOTE - Making rowHeader=true is not an option because of accessibility violations
Thanks,
Vishwesh

Hi user,
Do you need the header for the select one choice? you could so something like:
<af:column id="c1">
                        <af:panelGroupLayout id="pgl1" layout="horizontal">
                            <af:selectOneChoice value="#{bindings.DepartmentsView1.inputValue}"
                                                label="#{bindings.DepartmentsView1.label}"
                                                required="#{bindings.DepartmentsView1.hints.mandatory}"
                                                shortDesc="#{bindings.DepartmentsView1.hints.tooltip}" id="soc1">
                                <f:selectItems value="#{bindings.DepartmentsView1.items}" id="si1"/>
                                <f:validator binding="#{bindings.DepartmentsView1.validator}"/>
                            </af:selectOneChoice>
                            <af:outputText value="#{node}" id="ot1"/>
                        </af:panelGroupLayout>
                    </af:column>
But that will be all in the same column so I guess you tried that already.

Similar Messages

  • Add a New Column Before An Existing Column in 10g.

    Hi all,
    I Want to add column in a table ,before an existing column in Oracle 10G database.
    table A:
    id number,
    name varchar,
    job varchar,
    status char.
    i want to add a column before "JOB".
    I.E) USING AFTER OR BEFORE IN ALTER TABLE SYNTAX.

    887268 wrote:
    Hi all,
    I Want to add column in a table ,before an existing column in Oracle 10G database.
    table A:
    id number,
    name varchar,
    job varchar,
    status char.
    i want to add a column before "JOB".
    I.E) USING AFTER OR BEFORE IN ALTER TABLE SYNTAX.There's no such option, and to be honest there's no real need to do it as Oracle doesn't care what order the columns are in, and you can select out the columns in your queries in whatever order you want. You could use the DBMS_REDEFINITION package (http://docs.oracle.com/cd/B19306_01/appdev.102/b14258/d_redefi.htm) but unless you're really struggling then that's perhaps a little bit over the top. The simplest way if you really feel you need to do it is to create a new table based on the existing one with your new column in it and selecting the data into it at the same time...
    create newtable as
    select id, name, cast(null as varchar2(10)) as newcolumn, job, status from tableA;and then drop the original table and rename the new one...
    drop table tableA;
    rename newtable to tableA;of course you would need to recreate any constraints, indexes, triggers etc., and it could be problematic if you have foreign keys etc. but you have to weigh up what you are wanting to do and why you really need to put a new column in the middle of other columns rather than just putting it on the end.

  • How to decrease the width of left column in the "2 column layout"?

    Hi all,
    I create two webdynpro based iViews in the EP, then I create a page use the "2 column layout(Narrow:Wide)".I put one iview in the left column and another iview in the right column. When I preview my page, I found the left column still too wide. So how to decrease the width of my page's left column?
    Thanks and Best regards
    Deyang

    Hi Deyang,
    You have to create your own layout:
    - Navigate to System Administration->Support
    - Choose Portal Runtime -> Browse Deployment
    - Navigate under pcd or under temp, and download the layouts par (com.sap.portal.layouts.default.par.bak if I recall correctly)
    - Import that par as a project to Developer Studio
    - Make your changes (create a new jsp acording to the existing examples, and update the portalapp.xml accordingly)
    - Export to par (in a different name!) and deploy
    - In the portal content: new from par -> Layout (don't forget to mark it as a template).
    - Your new layout template will now be available when you create new pages.
    good luck!

  • I want to return a number from a column, if the adjacent column contains either "nurse" or Receptionist"

    I have a table with dates which i have converted to a number using the Month Fx.  This number is then in a seperate column, which inus e for charts.  I am trying to return this number only if the adjacent column contains either "nurse" or "receptionist". ie I dont want them all....

    Kang,
    Yes.  Happy Easter!  was cloudy yesterday in Austin, Texas.
    I do not know where the formula you posted in your previous post came from.  It is certainly not correct.  What confuses me about the bottom table is I do not know how it connects to the top table.
    Are the groups of people "Clinical Staff", "PDR", "Fire Training"  (bottom table column A) groupings of the staff types listed in in the top table, column C?
    If so then it may be worth adding some columns to define how the roles map to the training groups.
    At this point it must be defined and assumed.  Which row are you wanting to fill out for "Nurse" and "Nurse Practitioner"?
    A little exaplaination:
    the countif() function contains two arguments like this:
    =countif(range, test)
    the range is a group of cells (often, but not always, a column).  The test must be an expression that evaluates to true or false.
    so if the column is set to column C of the top table then the range would be expressed as (assuming the table name is "Table 1"):
    "Table 1::$G"
    to test whether the role is a "Nurse" the test (or condition) would be:
    "Nurse"
    putting these together you would get a countif() function like this which would return the number of Nurses (not really what you want but getting close):
    =countif(Table 1::$G, "Nurse")
    you actually want to count when:
    A) the month is a particular month and
    B) the role is a "Nurse"
    you also want to count when:
    C) the month is a particular month and
    D) the role is a "Secialist Nurse Practitioner"
    so you can use the countifs() function.
    the countifs() function counts the occurances where only ALL conditions are met.
    you would use the counifs() twice and add the results together like this:
    =COUNTIFS(test-values1,condition1, test-values2,condition2)
    you can add as many test values and conditions as you like (you must add in pairs)
    To do this you should add an extra row in the header of the bottom table to hold the month number.  Jan is 1, Feb is 2, etc.
    Here is what I think you want:
    The top table corresponds to the bottom table in your post.  notice I added an extra row (to contain the month number):
    B3=COUNTIFS(Table 4::$C, "Nurse", Table 4::$G, B$1) + COUNTIFS(Table 4::$C, "Specialist Nurse Practitioner", Table 4::$G, B$1)
    this is shorthand for select cell B3, then type (or copy and paste from here) the formula:
    =COUNTIFS(Table 4::$C, "Nurse", Table 4::$G, B$1) + COUNTIFS(Table 4::$C, "Specialist Nurse Practitioner", Table 4::$G, B$1)
    no select B3 and fill to the right by hovering the cursor over the right edge of the, now select, cell B3 and dragging the little yellow circle to the right.

  • Dock conversationwindow incoming conversations, without rendering stand-alone before the .Dock() call

    We are busy developing a desktop application which uses the Lync 2013 client SDK. One of the features is to dock the conversation window of the Lync client into our own app. At the moment, this is working but the flow is not ideal:
    The (incoming) conversation is created and the ConversationAdded event is fired
    In the mean time, Lync already rendered the conversation window
    The app gets the handle to the conversation window and docks it into a container
    This results in a bit of "flickering" of screens, because Lync renders the conversation window, before the app is able to dock it into its' own panel.
    I was wondering this behavior could be bypassed in any way.
    I know from the samples of MS, when starting a conversation with a StartInstantMessagingButton you can initialize it with a ConversationContextualInfo object, which in turn has a ParentWindowHandle property. This is the behavior that would be IDEAL for our
    app, but obviously this only works for outgoing IM conversations. Is there any way to tell Lync that all new conversations must dock?
    Another possibility is to tell Lync the spot where all new conversationwindows must spawn. Is this possible?
    Does anyone have done this some other way maybe?
    One last thing, Our app is already visible before the conversation window, so spawning our app on top (or exactly behind) the conversation window is not possible.
    Thanks

    Unfortunately no, the UI does not wait for the SDK to proceed with it's functionality.  The best you can do is dock as soon as you can, but as you found it will create a stand alone window briefly before you have the opportunity to dock.

  • How to insert data to the specified row column of the multi column list box

    Hi All
    How do i insert data into the specified column of the multi cplumn list box?
    I have a table that containsall station nos and name.Then another table contains the data the various stations having at  for 24 hrs.That is 12 am to 11 pm.
    And i want to display each stations details as follows using a multi column list box/table
    My stationinfo table
    stnno   stnname......................
    s1           stn1
    s2            stn2
    s3             stn3
    The other table
    stnno      sysdatetime       data
    s1             12am                   1
    s2              12am                   4
    s1               1  am                 2
    So the station s1,s2.... will have data for 24 hrs.
    And i want to display it as follows using a multicolumn listbox
    stnname        12am   1 am ......................................11pm
    s1                   ...................
    s2                 ........................
    What i have in my  mind is to get all station nos
    and in a for loop get the station's data from 12 am to 11 pm
    or
    select every statios data for each hor.But in this case i have to query the database 24 times.So i dont think its a good way.
    Or any other better query available?
    Can anybody suggest me a good idea?
    One more thing...how to insert data into the specified field row or column of a multi column list box?
    Thanks in advance

    hi
    i want to know,,can u say ur need clearly...and i attached two image u see that one
    Indrajit
    | [email protected] | [email protected] .
    Attachments:
    station.JPG ‏35 KB
    station2.JPG ‏79 KB

  • Filter on 1 item in a column and the whole column is removed from output

    If I open a report in Bex Analyzer.  I have a column for customer.  If I double click on 1 customer name in the column to filter, it does the filter but the customer column is no longer displayed in the report output.  I want to do the filter but still have the column in the report.  I know I can go back to the filter tab and add it back in but is there a way to tell it not to remove columns after filtering on one item in that column?

    You must to execute the command "Fix Filter Value to Axis". Choose it if you only want to see data for one characteristic value and want the characteristic value to continue to appear in the drilldown.

  • Autosizing columns in the finder column view

    would anyone happen to know how to get the columns to "autosize" each time you enter the finder in column-view?
    i have seen a manual option before, i believe when saving files (in a save-as dialog box), however am not sure...
    would very much appreciate the help.

    Christopher,
    Check out these links:
    https://discussions.apple.com/thread/5009306?start=0&tstart=0
    http://productforums.google.com/forum/#!topic/drive/1z1IAedEAC8

  • Get the month from a date column with the calculated column

    I am trying to get the month from a date field with the help of calculated column. However I get this syntax error whenever I want to submit the formula:
    Error 
    The formula contains a syntax error or is not supported. 
    the default language of our site is German and [datum, von] is a date field.

    Hi,
    I have created two columns
    Current MM-YY
    Calculated (calculation based on other columns)
    Today
    Date and Time
    Current MM-YY is calculated value with formula as
    =TEXT(Today,"mmmm")
    But the output shows as December instead of May.
    I have tried =TEXT([Datum, von];"mmmm") but no help.
    I am trying to populated the column automatically with current month..ex: if its May the field should show May, next month it should show June an so on.
    Any kind help is grateful.
    Regards,
    Pradeep

  • Limit the data on a particular column with the corresponding column

    Hi,
    I had a report.
    id   submitdate        informationdate                  information
    10    06/7/10           07/07/10    10.12             submitted
    10     06/07/10        07/11/10    12.12             delivered to highleevel
    10     06/07/10          07/13/10   15.13             Resolved
    I just want to limit the data on a information date with the latest entry and along with its corresponding information.I mean to say only 3rd row  I need.,
    I applied Max( <Inofrmationdate>). Then ok with this function.I am trying to put the information object.Then I am nt geting the relevant data.
    The report contains only one data provider.
    Please can you suggest me with possible solutions.
    Thanks,

    Hi,
    Here you are using max(<Inofrmationdate>) and you will not get relevant result because in the backend at database end the query will be generated with group by clause and the remaining objects as group. Please check the query that is generated at the database end.
    Go to edit query -
    > SQL -->> check SQL query and validate it by running at backend
    Or You can use different functions using Rank, place rank field in information date and make report to populate only with highest or lowest rank (based on the ranking you decide)
    Please let me know if you need more information.
    Regards,
    Chitha.

  • How to display nodestamp column in ApplicationsTreeTable -ViewMenu- Columns

    I have ApplicationsTree table on my UI screen with the columns ex: col1, col2, col3, col4.
    col1 is inside node stamp.
    col1 is not displaying under View Menu -> Columns.
    How can I display nodestamp column in ViewMenu -> Columns?
    Thanks,
    Swathi

    select a column, then use the contextual menu for the column and select "Add Column Before" or "Add Column After"
    you can also highlight a column then use the key combination:
    <option> + <right arrow> to add a column after (or to the right) and
    <option> + <left arrow> to add a column before (or to the left)

  • Problem with columns in the middle of my book

    I am writing my second book with Pages 2.02 and have run into a problem with columns. I want to add a long list of items as a list with check boxes for readers to check off. If I paste in enough text for three or four pages of two columns it gets messed up in various ways - the text flows into the following text if I don't use section breaks at the end instead of layout breaks, if I use section breaks it solves that one, but if I add anything to the list it changes all the columns across the pages so that one or several of the pages has way less in the right column than in the left. So far the left column fills the entire page all the time, but the right column has lots of spaces. If I switch back and forth from one column to two, it fixes it. If I add text before the list section it messes everything up again and because there is a section break I end up with a little bit of text on the last page and a huge gap before the single column part that follows.
    Does anyone know how to get reliable results that will not mess me up when adding content before the list or in the list itself?
    PowerBook G4   Mac OS X (10.4.8)  

    Hi Cymru,
    Thank you for thinking about my problems. I guess I s half asleep when I posted and it didn't make sense.
    I have so far 77 pages of the book divided into several chapters via section breaks. Inside the 5th section there is almost two pages of paragraphs. Those paragraphs could become 3.75 pages or who knows how long before the list of items. The list of items is 226 items separated by carriage returns and go from one word with 5 characters to 7 words and 34 characters. It needs to be a list with check boxes before them so that the user can check off the items that apply. It is a workbook about turning bipolar into an advantage and is currently 8.5 x 11 and printed on my laser printer for now, but when completed will be more like 8 x 10, so it needs to resize without major hassles.
    I have tried every combination of breaks to get the list to flow in two columns, but perhaps have not done the correct combination. I show invisibles and layout. At the end of my paragraphs I do a paragraph return. I then do either a section break or a layout break, followed by a paragraph return and another layout or section break. I then put my curser before the paragraph break, but after the first section/paragraph break, and set columns to 2, evenly divided by default with 3.2026" columns and .3375" gutter, but I want them to change with page size in the future.
    Once set up, I copy the text out of BBEdit and paste into the left column. It takes up several pages because it is formatted to do double spaces, so I use one of my styles to make it bold and single spaces. I then apply list style with image bullets and one of the default box images that came with Pages. There are 5 items in each column on the first page because it is close to the bottom, but flows into the next two pages. (with text edits it might end up 20 items in each column on the first page) The second page has 39 items in each column and the last page has 8 items in the left column only, but if with section breaks take up the whole page and the next paragraphs start on the next page. If I then add items to the list, every page gets messed up and the second page ends up with 39 on the left column and less items in the right column for each added item.
    If I use layout breaks instead of section breaks, the paragraphs following my lists (now with only one column) end up under the list. What that means is I can see my bold items, but beneath them are my paragraphs that belong after the list. I can see the layout break at the end of the list, but the columns that are shown as part of the 'view layout' are visible right over the single column text also for the rest of the page. The only way to solve that is to go with section breaks and put up with the gap from the end of the list to the following paragraphs.
    I hope this makes more sense.
    Tom
    PowerBook G4   Mac OS X (10.4.8)  

  • How do I change the length of a column in the metadata?

    A very simple package, reads data from SQL Server and FTPs it to a destination. I have zero experience with SSIS.
    I had to add a new column (HEA_ID) to the input and output. The output record has a filler at the end (I hope you know what a filler is) and the new column has to go before the filler and the filler length reduced accordingly.
    Problem: there is no apparent way to place the new column anywhere but after the Filler. The filler in the metadata is the wrong length and there is no way that I can see to change the length.
    There is a yellow exclamation mark on the Flat File destination (where the filler is wrong length)
    I get these erros when I run the updated package.
    "The external metadata column is out of sync with the data source column. The column 'HEA_ID' needs to be updated in the external metadata column collection".
    "The column filler needs to be updated in the external metadata column collection"
    I have no idea how to fix these errors. Help needed.

    Hi AllTheGoodNamesWereTaken,
    According to your description, you add a new column HEA_ID and make some changes in filler column in the External Columns, so those two columns are out of sync with the data source column.
    Please note that columns are created based on the data source columns. So we couldn’t directly change them in the Flat File Destination Advanced Editor.
    To avoid this error message, just as Visakh said, just review mappings once again in the Flat File Destination. If we want to change the columns in the Flat File Destination, we need change the source columns.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Does not do the sorting if I click twice to the same column.

    Hello
    I am new to winforms.
    I have a listview. I want it to toggle the sorting of the records of the listview when the columns are clicked
    Please guide me as to how to do the same.
    The code that I have attached does not do the sorting if I click twice to the same column. I have to click a different column ten the previous column 
    The code is attached below
    regards
    Manoj Gokhale
    private void SiteInChargeorSupervisor_Load(object sender, EventArgs e)
    this.listView1.ColumnClick += new ColumnClickEventHandler(listView1_ColumnClick);
    private void listView1_ColumnClick(object sender, ColumnClickEventArgs e)
    ListViewSorter Sorter = new ListViewSorter();
    listView1.ListViewItemSorter = Sorter;
    if (!(listView1.ListViewItemSorter is ListViewSorter))
    return;
    Sorter = (ListViewSorter)listView1.ListViewItemSorter;
    if (Sorter.LastSort == e.Column)
    if (listView1.Sorting == System.Windows.Forms.SortOrder.Ascending)
    listView1.Sorting = System.Windows.Forms.SortOrder.Descending;
    else
    listView1.Sorting = System.Windows.Forms.SortOrder.Ascending;
    else
    listView1.Sorting = System.Windows.Forms.SortOrder.Descending;
    Sorter.ByColumn = e.Column;
    listView1.Sort();
    public class ListViewSorter : System.Collections.IComparer
    public int Compare(object o1, object o2)
    if (!(o1 is ListViewItem))
    return (0);
    if (!(o2 is ListViewItem))
    return (0);
    ListViewItem lvi1 = (ListViewItem)o2;
    string str1 = lvi1.SubItems[ByColumn].Text;
    ListViewItem lvi2 = (ListViewItem)o1;
    string str2 = lvi2.SubItems[ByColumn].Text;
    int result;
    if (lvi1.ListView.Sorting == System.Windows.Forms.SortOrder.Ascending)
    result = String.Compare(str1, str2);
    else
    result = String.Compare(str2, str1);
    LastSort = ByColumn;
    return (result);
    public int ByColumn
    get { return Column; }
    set { Column = value; }
    int Column = 0;
    public int LastSort
    get { return LastColumn; }
    set { LastColumn = value; }
    int LastColumn = 0;

    Every time through the ColumnClick event handler, you are creating a new sorter. This means that any values set in the sorter from the previous click are not saved.
    Try this.
    private void listView1_ColumnClick(object sender, ColumnClickEventArgs e)
    // Only create a new sorter if we don't have one already.
    if(listView1.ListViewItemSorter == null)
    ListViewSorter Sorter = new ListViewSorter();
    listView1.ListViewItemSorter = Sorter;
    // And so on with the rest of your code.

  • Change LOV of column in view, based on values of another LOV of column in the same view

    Hi,
    I am using Jdeveloper 11.1.1.5.
    I have a scenario in which I have two columns in the view. column names are:
    1- Column A
    2- Column B
                        both the columns have LOV's
    LOV in column A contains values as: 1, 2. Now, when I select the value 1 in column A, In the column B, an LOV named ABC should be shown. and when I select value 2 from LOV in column A,  LOV named XYZ should be shown in column B.
    how can I do that?
    thanks in advance (^.^).

    Use onchange attribute of the first drop-down. On change, submit the form. On server side, fetch the values for second drop-down based on the value selected for the first drop-down.

Maybe you are looking for

  • Need help recording three shows at the same time

    I have the FiOS DVR, and have a problem this TV season.  There are 3 shows that we watch that are on at the same time.  if we are home that night, we can record two on the DVR and watch the other in another room.  Not ideal, but we can handle it.  Bu

  • Ad Mob not working in Application Loader Error

    Hi Adobe AIR community, I've been having this problem for a while now. Basically I have been using AIR for iOS 15.0, Flash CC (2014) and Milkman Games Ad Mob ANE v.4.4.0. I can test my apps perfectly on both iPhone and iPad devices. The Ad Mob banner

  • The secret to HDTV using a VGA connection

    Took some trial and error, but I discovered how to get HDTV on my Toshiba 40" LCD TV using the VGA port.  I thought I post here to save somebody else the trouble.  Here's all you need to do: 1)  Set your computer to drive the external monitor at 1280

  • [iphone] how to do a fade out/in transition on switch to landscape

    In my app when I switch from portrait to landscape I completely change the view. Right now it does the normal animated transition from portrait to landscape and then paints in my new view. This looks kind of stupid.... so what I want is when I switch

  • Jasper Report closing application also what to do

    Hello friends, i can able to open the jasper report in jasper viewer from my application(developed in Swings). But when i am closing the jasper report itz also closing my application window . Please give your valuable advise thanking you in advance r