I have a ListGrid component with columns configured using frozen=true and the grid also has canExpandRecords=true.
The problem is that the expand component is displayed to the right of the frozen columns, and when the grid is scrolled horizontally it can move out of the visible area.
Is it possible to make the expand component appear inside the frozen columns area so that it stays visible and does not move during horizontal scrolling?
For demonstration purposes I slightly modified your example from this link:
https://smartclient.com/smartclient-...tedWithDetails
and defined the fields like this:
fields: [
{name: "itemName", width: 250, frozen:true},
{name: "SKU", width: 250},
{name: "category", width: 250}
],
The problem is that the expand component is displayed to the right of the frozen columns, and when the grid is scrolled horizontally it can move out of the visible area.
Is it possible to make the expand component appear inside the frozen columns area so that it stays visible and does not move during horizontal scrolling?
For demonstration purposes I slightly modified your example from this link:
https://smartclient.com/smartclient-...tedWithDetails
and defined the fields like this:
fields: [
{name: "itemName", width: 250, frozen:true},
{name: "SKU", width: 250},
{name: "category", width: 250}
],
Comment