Announcement

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

    How to add statis data to listgridfield.

    Hi ,
    I want to add static data to the list grid field. Please let me know how can I do it.

    I tried like this.

    ListGridField s = new ListGridField();
    s.setValueMap("a","b","c");

    but it is not showing any data in the grid. Please let me know how can I do it.

    Thanks

    #2
    See ListGrid.addData(), you need to add ListGridRecords, what you are trying is defining the listgridfield's editor.

    Comment

    Working...
    X