Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    setAlwaysShowEditors hiding checkbox

    I have my list grid setting as follows

    tradeListGrid.setWidth100();
    tradeListGrid.setHeight(200);
    tradeListGrid.setAlwaysShowEditors(true);

    tradeListGrid.setAutoSaveEdits(false);
    tradeListGrid.setShowAllRecords(true);
    tradeListGrid.setSelectionType(SelectionStyle.SIMPLE);
    tradeListGrid.setSelectionAppearance(SelectionAppearance.CHECKBOX);

    but when i show listgrid in window, some how not able to see check box. pls let me know what i'm doing wrong

    #2
    Facing Exact Same Issue

    I'm trying to do exactly as the original poster.

    I would **like** to AlwaysShowEditors and selection/checkbox column, e.g.

    Code:
    grid.setAlwaysShowEditors(true);
    
    grid.setSelectionType(SelectionStyle.SIMPLE);	
    grid.setSelectionAppearance(SelectionAppearance.CHECKBOX);
    However, always showing the editors fails to show the checkboxes.

    Is this a bug? Is this a missing feature?

    Is there an API call on the ListGrid that WILL enable BOTH?

    Thanks,
    Nate
    Last edited by chimpeenuts; 27 Aug 2014, 13:18. Reason: Code format cleanup.

    Comment

    Working...
    X