Hi Isomorphic,
retesting this issue in this modified sample (v12.1p_2023-06-27) I noticed that there is no groupSummary AutoChild like the summaryRow AutoChild.
In the sample this results in not selectable groupSummary text (normal content and summaryRow content as selectable as expected), but I'm sure it will also show in other cases.
Not sure this is a bug or an improvement suggestion.
Best regards
Blama
retesting this issue in this modified sample (v12.1p_2023-06-27) I noticed that there is no groupSummary AutoChild like the summaryRow AutoChild.
In the sample this results in not selectable groupSummary text (normal content and summaryRow content as selectable as expected), but I'm sure it will also show in other cases.
Not sure this is a bug or an improvement suggestion.
Code:
isc.ListGrid.create({ ID:"dsListGrid", width: "100%", height: "100%", dataSource: "supplyItem", autoFetchData: true, // Not working for group rows canDragSelectText: true, // GroupSummary itself is OK (but no text selection) groupByField:"category", groupByMaxRecords: 10000, showGroupSummary: true, // GridSummary is OK (with text selection) showGridSummary: true, summaryRowDataSource: "supplyItem", summaryRowCriteria: {"SKU": 45300}, summaryRowProperties: { selectionType: "none", canDragSelectText: true } });
Blama
Comment