How can i make custom column added to inbox sortable

I had a requirement to add custom column to workflow inbox, i was able to achieve this without much difficulty.
But i have noticed this custom column is not sortable, against the OOTB columns.
Not sure what i am missing, Thanks in Advance
in the json, i dont see any different between OOTB column values and custom column values
startTime: 1359678539512,
lifestage: "Approve",
duedate: 1368769500000,
Environment CQ 5.5

Hi efish,
          I followed steps specified at below post. The column is sortable.
          http://forums.adobe.com/message/5032804#5032804
Thanks,
Sham

Similar Messages

  • How can I make a column of sums out of a repeating pattern of 24 changing numbers

    How can I make a column of sums out of a repeating pattern of 24 changing numbers in Numbers.
    I have a long list of 8760 numbers of which I need to take the sum (and store in a column) of each 24 numbers.

    Here's one way. I've reduced the example, taking groups of five numbers from a set of 20. I've used 3 as the data number in all cases to make the sum easily recognizable.
    Original column of numbers in Data::column A.
    Data::B2 (and filled down): =QUOTIENT(ROW()+3,5)
    This adds 3 to the row number, then divides by 5, returning the quotient and ignoring the remainder.
    The result is a 'group number' for each group of five rows.
    Sums of each group are reported in the Sums table.
    Sums::A2 (and filled down): =ROW()-1
    Sums::B2 (anf filled down): =SUMIF(Data::$B,A2,Data::$A)
    For your example, assuming the 8760 numbers are listed in column A of a table named Data, starting at cell A2:
    Add a second column to the table (column B).
    In B2 enter the QUOTIENT formula above, with these two revisions:
    =QUOTIENT(ROW()+22,24)
    Fill down to all cells in the column.
    Provided you have named the first table "Data", both formulas in the Sums table will be as written above. You will need to extend the Sums table to 366 rows (including the Header row) to accommodate all 365 groups of 24.
    Regards,
    Barry
    PS: For details on the functions used, see the iWork Formulas and Functions User Guide. You can download the guide via the Help menu in Numbers '09.

  • How can i make hidden column in JTable

    hi, how can i make hidden column in JTable,
    basically i have a ID field in JTable, i have to use this ID , but i also dont want to show this ID in JTable.
    any idea how ??

    staiji its not working
    i did this :
    first :
    TableColumnModel columnModel =
    usersTable.getColumnModel();TableColumn column =
    columnModel.getColumn(1);
    usersTable.removeColumn(column);
    then when i trying to get this :
    Integer userId =
    (Integer)usersTable.getValueAt(UserBrowser.this.usersTa
    le.getSelectedRow(), 0);
    it not give me ID column's value .
    i have a column in JTable like :
    ID | Username | First name | Last name
    i want to hide ID column , but get this ID's value
    when user clicks on JTable row.Hi, if you would read the documentation about JTable.getValueAt(...) you will find, that there is a significant difference between this method and the datamodels getValueAt(...) method. JTables getValueAt(...) method interprets column-index as index in its TableColumnModel - in your TableColumnModel there is no column any longer that holds ID values, therefore you were not able to get it by JTable.getValueAt(...). Do not use these methods for the purpose you want it for - you will also get the wrong values, if the user has repositioned columns - the column index is always interpreted as index in the currently used TableColumnModel and IS NOT A MODELINDEX.
    greetings Marsian

  • How can i make custom login  and priviliges pages  depend on database ?

        Hi all,
       how can i make custom login page and custom security pages depend on oracle database tables.

    User, please tell us your Jdev version!
    Have you used the search field in the forum?
    This had been asked a couple of times.
    http://biemond.blogspot.in/2008/12/using-database-tables-as-authentication.html and
    http://biemond.blogspot.in/2008/12/using-weblogic-provider-as.html
    Timo

  • How can I make custom cloud brushes?

    How can I make custom cloud brushes?

    I can't stand the limitations of the Contacts method of printing address labels. I don't want to waste a partial sheet if my selection doesn't come out even with the number of labels. I'd like to duplicate addresses which I use often to fill up the partial sheet. I like being creative with fonts, colors and even borders or images. Your ability to be creative with Contacts printing is severely limited.
    I've used Pay&Play's Label Printer Pro software for years. I originally paid MUCH more for this program. It's extremely versitle. Design one label and you can copy it to the rest of the labels in the drop down menu with one click. Chose how many of whichever lablel you want to duplicate with a simple cut and paste to fill up the page.
    I can vouch that it works perfectly with Mountain Lion, v 10.8.2.
    Here's the link to their direct download from their website for $6.95:
    http://www.payplaysoftware.com/download.html
    Or you can look up Label Printer Pro 7 on the app store and pay $9.99.
    No, I don't work for or have any ties to the company other than being a satisfied customer of a product which suits my needs perfectly.
    Also check the iWork Community for freebies:
    http://www.iworkcommunity.com/category/downloads/pages/labels

  • How can I make custom event alerts?

    This is what I'm offered when I try to sent an event alert:
    http://img543.imageshack.us/img543/5805/img0017w.png
    But what if for example I would like to set the alert 3 hours and 20 minutes before?
    Thank you in advance

    killwin98 wrote:
    I'm using Google Calendar as my 3rd party program, but the whole point is to set these events on the iPhone. Is there an iPhone app that can create these custom event alerts?
    I have not yet found an app that creates custom times for Calendar's, only on Tasks.

  • How can I make a column of sums of the column next to it up to the row each sum is on?

    Hi Forum,
    I would like to find a fast way to do this:
    Numbers
    Sums
    1
    1 [sum of cell 1]
    2
    3 [sum of cells 1 and 2]
    3
    6 [sum of cells 1 through 3]
    4
    10 [sum of cells 1 through 4]
    5
    15 [sum of cells 1 through5]
    6
    21 [sum of cells 1 through 6]
    7
    28 [sum of cells 1 through 7]
    8
    36 [sum of cells 1 through 8]
    9
    45 [sum of cells 1 through 9]
    10
    55 [sum of cells 1 through 10]
    I have 500 cells.  I know how to do the SUM function one sum at a time, but I am hoping for an easier technique.
    Bruce

    the first thing to realize is that each sum is the sum of all the previous rows plus the row you are on.  This means that each row can simply add itself to the previous sum.
    row 1 is a special case because there is no row before it so B1 = A1.
    All other rows in B are:
    Bn = B(n-1) +An   (where n is the current row number)
    Wayne
    Message was edited by: Wayne Contello

  • How can I make Mobile column ?

    we here in Egypt have specific format for mobiles number ..... it's like that :-
    0129231239
    0109283746
    0168483873
    ect,.
    so .... I want create table with mobile column whither this column be ten numbers only no more no less , and first two numbers be (01)
    I did that code but didn't work !
    create table mob ( Mobile varchar2(10) check (length(mobile)='10' , substr(mobile,1,2)='01');
    what's the right code for what I need ?!
    and thanks in advance

    but I can't see what's the point from use it here ?!!! Well as said - the point is to refuse to insert characters:
    SQL> create table mob ( mobile varchar2(10) check (length(mobile)=10 and translate(mobile,'0123456789','01')='01'))
    Table created.
    SQL> insert into mob values ('0123456789')
    1 row created.
    SQL> insert into mob values ('01A3456789')
    insert into mob values ('01A3456789')
    Error at line 10
    ORA-02290: check constraint (MICHAEL.SYS_C0013702) violatedIsn't that what you wanted?
    Just realized: It is still not perfect. But I am sure you or someone else can modify accordingly in case ;)
    Message was edited by:
    michaels

  • How can I make two columns in DropDownList

    like this
    I remember that the solution met.
    Except alignment spaces in a text string.

    from the Documentation
    Creating multi-column lists
    In list controls (ListBox, DropDownList, TreeView), a set of ListItem objects represents the individual
    choices in the list. Each choice can be labeled with a localizable string, an image, or both, as specified by
    the text and image properties of the ListItem (see “Displaying images” on page 72).
    You can define a ListBox to have multiple columns, by specifying the numberOfColumns creation
    parameter. By default, the number of columns is 1. If you specify multiple columns, you can also use the
    creation parameters to specify whether headers are shown, and the header text for each column.
    If you specify more than one column, each ListItem object that you add to the box specifies one selectable
    row. The text and image of the ListItem object specifies the label in the first column, and the subitems
    property specifies labels that appear in that row for the remaining columns.
    The subitems value is an array, whose length is one less than the number of columns. That is, the first
    member, ListItem.subitems[0], specifies the label in the second column. Each member specifies one
    label, as a JavaScript object with two properties:
    { text : displayString , image : imageFileReference }
    For example, the following fragment defines a list box with two columns, and specifies the labels in each
    column for the two choices:
    // create list box with two titled columns
    var list = dlg.add ('ListBox', [0, 0, 150, 75], 'asd',
    {numberOfColumns: 2, showHeaders: true,
    columnTitles: ['First Name', 'Last Name']});
    // add an item for the first row, with the label value for the first column
    var item1 = list.add ('item', 'John');
    // add the label value for the second column in that row.
    item1.subItems[0].text = 'Doe';
    // add an item for the second row, with the text for the first column label
    var item2 = list.add ('item', 'Jane');
    // add the label text and image for the second column in the second row
    item2.subItems[0].text = 'Doe';
    item2.subItems[0].image = File ("~/Desktop/Step1.png");

  • How can I Make one column into Multiple columns

    Id
    SCM-01-015
    SCM-01-020
    SFA-02-021
    SFC-02-042
    STB-03-035
    STP-04-167
    SVF-06-150
    I want the output like this
    Id 01 02 03 04 06
    SCM-01-015 5
    SCM-01-020 10
    SFA-02-021 15
    SFC-02-042 15
    STB-03-035 20
    STP-04-167 50
    SVF-06-150 5
    thank you in advance

    Hi,
    801668 wrote:
    Id
    SCM-01-015
    SCM-01-020
    SFA-02-021
    SFC-02-042
    STB-03-035
    STP-04-167
    SVF-06-150
    I want the output like this
    Id 01 02 03 04 06
    SCM-01-015 5
    SCM-01-020 10
    SFA-02-021 15
    SFC-02-042 15
    STB-03-035 20
    STP-04-167 50
    SVF-06-150 5
    thank you in advanceWhenever you post formatted text (such as query output) on this site, type these 6 characters:
    \(small letters only, inside curly brackets) before and after formatted text, to preserve spacing.
    Do you want output something like this, which is from the scott.emp table?ENAME ANALYST CLERK MANAGER PRESIDENT SALESMAN
    ALLEN 1600
    JONES 2975
    FORD 3000
    CLARK 2450
    MILLER 1300
    SMITH 800
    WARD 1250
    MARTIN 1250
    SCOTT 3000
    TURNER 1500
    ADAMS 1100
    BLAKE 2850
    KING 5000
    JAMES 950
    (ALLEN is a SALESMAN, JONES is a MANAGER, ..., JAMES is a CLERK.)
    If so, do a pivot, somehting like this:SELECT     ename
    ,     MIN (CASE WHEN job = 'ANALYST' THEN sal END)     AS analyst
    ,     MIN (CASE WHEN job = 'CLERK' THEN sal END)     AS clerk
    ,     MIN (CASE WHEN job = 'MANAGER' THEN sal END)     AS manager
    ,     MIN (CASE WHEN job = 'PRESIDENT' THEN sal END)     AS president
    ,     MIN (CASE WHEN job = 'SALESMAN' THEN sal END)     AS salesman
    FROM     scott.emp
    GROUP BY ename
    Always say which version of Oracle you're using.
    The query above will work in Oracle 8.1 or higher, but starting in Oracle 11 there's a better way:  SELECT ... PIVOT.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How can I make my mail MOVE from inbox to a smart mailbox???

    Hi, I do business on my computer and I set up some smart mailboxes for some mail I get daily. However, the mail that goes into these smart mailboxes, doesn't seem to move there, now I have two copies of that mail. I want these files to MOVE OUT OF MY INBOX into these smart mailboxes, HOW do I do that? Or is that not the purpose of the smart mailboxes?
    Anyone have an answer?
    thanks

    Smart mailboxes are not separate folders that can store files, they are indexes to files that are stored elsewhere. The same mail item can appear in a dozen smart boxes, if it matches the criteria, but only in one normal mailboxes.
    Make some normal mailboxes and set up rules to sort your incoming mail to them.
    AK

  • How can i make a field mandatory in SO header .

    Dear expart
    How can i make Customer group  mandatory in SO header data.Under sales tab pricing and static.
    Plz give me spro or the direct transaction code if any.
    Yeasin

    Hi Yeasin,
    There are three ways.
    1) By using incompletion procedure by using OVA2 T.Code which is already discussed by Raja.After this assign this incompletion procudere to your document type in VOV8 and also check the box incompletion messages.
    2)By using SHD0 T.Code.
    Goto SHD0 T.Code.
    Enter the transaction code as "VA01".
    Select the transaction variant as "BUS2032".
    Two programs will appear .Select the last one(BUS2032_4480).Click on details.
    Search for the field "VBKD-KDGRP" using "CTRL+F".
    Against that field tick the mark Required.
    Save.
    3) By using SE51 T.Code.
    Enter the program name as "SAPMV45A" and screen number as "4301".
    Select Layout editor.
    Click on Change.
    The screen layout will be opened.
    Select the field "Customer group" and double clik on it.
    Attributes screen will be opened.
    Goto Program tab and for the Input field,tick this and for input select the option required from the dropdown.
    Save.
    Now If you then you can find it as mandatory.Among these three you can use any one.
    Regards,
    Krishna.

  • I have created a spreadsheet on numbers for ipad with a list of customers as a drop down menu. How can i make their address appear underneath when i select the customer?

    I have created a spreadsheet on numbers for ipad with a list of customers as a drop down menu. How can i make their address appear underneath when I select the customer?
    iselect the customer?

    Hi bazza,
    We won't be able to put the address from a formula into the same cell that you enter the customer's name. We can put the address in the cell under the customers name.
    First let's take James advice and concatenate the address in the address table.
    Here is the formula in G2
    =CONCATENATE(B2&"
    ",C2&"
    ",D2&"
    ",E2)
    It shows this way because after I clicked on B2 and typed [&"] (no brackets) I typed option-return
    This gives you your new line. Then I typed the closing ". I repeated this for the rest of the address.
    Next we want to bring this to your order sheet. I prefer using the two formulas OFFSET and MATCH instead of VLOOKUP.
    base tells OFFSETwhere to start counting from. Click A1.
    row-offset is for the row. we will use MATCH() -1 to give us the row.
    What MATCH does is give you the row number where something is found and you can specify an exact match. I usually construct the MATCH formula first and then cut and paste it into OFFSET. MATCH looks like this: MATCH(A2,Table 1::A,0). A2 is what we are looking for, Table 1A::A is where we are looking (the entire column A), and 0 means we want an exact match. Can you see it inside the OFFSET formula? Notice that we had to subtract 1 from its result.
    column-offset tells OFFSET which column A=0 so we want 6.
    we ignore "rows", "colomns" we don't need them.
    If this seems like too much, just break it down into small pieces.
    quinn

  • How can I make a custom book size in iBooks Author

    How can I make a custom book size in iBooks Author?

    Book sizes (Landscape or Portrait) are fixed when using iBooks Author.
    Covers, however, can be square.

  • How can I make a bullet item with a custom Bullet character such as a check mark ?

    Hi Everyone,
        I'd like to make a list with Bullets, but I can find a bullet character which I am looking for. Especially I'd like to make Bullet characters available in PowerPoint, such as check mark, and others. How can I make a bullet item with a custom Bullet character or picture such as a check mark ?
      Regards
      Cem

    Cem777 wrote:
    Hi Everyone,
        I'd like to make a list with Bullets, but I can find a bullet character which I am looking for. Especially I'd like to make Bullet characters available in PowerPoint, such as check mark, and others. How can I make a bullet item with a custom Bullet character or picture such as a check mark ?
      Regards
      Cem
    Search InDesign help for "change bullet characters" (without quotes,) and use the technique described there with the Zapf Dingbat font as suggested by Peter S.
    You can also use InDesign's glyphs panel (Window > Type & Tables > Glyphs) to scroll through all the character sets in all the fonts that InDesign has access to on your system, to look for check mark characters.
    After you have created a paragraph style that applies the customized check-mark-bullet that you want, every time you apply that paragraph style, the custom bullet appears. So, while it's a few steps to set up the style the first time, from then on it's automatic.
    If you really need a particular bullet that's not in any font you have, you'll need to search for fonts that have check mark characters and buy one or use a free one. Caution: free fonts aren't always created to the same strict standards that commercial fonts from reputable font foundries observe; free fonts sometimes cause problems when printing or exporting to PDF. You can search Google for "fonts with check mark" (without quotes.)
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

Maybe you are looking for