Announcement

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

    Get primary keys for selected records in ListGrid

    Hi,

    Have hard time to find how to extract primary keys for the selected records in the ListGrid with attached datasource (ListGridRecord[] records = listGrid.getSelection()). The primary key column has detail=true so it's not presented as a ListGridField.

    Thanks

    #2
    It is still part of the listgridrecord even if it not displayed as a listgridfield. It is extracted in the same manner as any other field. ListGridRecord.getAttribute("nameOfPKField");

    Comment

    Working...
    X