Hi,
I have a list grid with some enabled and some disabled rows.
I am setting the hover on a cell.
When I hover I am getting hover on enabled rows properly, but not getting it on disabled rows.
Here is the sample for your reference.
ListGrid myGrid = new ListGrid();
ListGridField fld1 = new ListGridField("Status");
fld1.setShowHover(true);
ListGridField fld2 = new ListGridField("Name");
ListGridField fld3 = new ListGridField("Description");
fld3.setShowHover(true);
myGrid .setFields(fld1,fld2,fld3);
myGrid.setData(getRecords());
The getRecords function returns records with some set to disabled based on some business logic.
record.setEnabled(false); Where record is ListGridRecord.
I have a list grid with some enabled and some disabled rows.
I am setting the hover on a cell.
When I hover I am getting hover on enabled rows properly, but not getting it on disabled rows.
Here is the sample for your reference.
ListGrid myGrid = new ListGrid();
ListGridField fld1 = new ListGridField("Status");
fld1.setShowHover(true);
ListGridField fld2 = new ListGridField("Name");
ListGridField fld3 = new ListGridField("Description");
fld3.setShowHover(true);
myGrid .setFields(fld1,fld2,fld3);
myGrid.setData(getRecords());
The getRecords function returns records with some set to disabled based on some business logic.
record.setEnabled(false); Where record is ListGridRecord.
Comment