Hi Isomorphic,
Creating this related testcase I noticed this issue. Please see this modified sample (v12.1p_2023-06-27, also in 13.0p).
I fulfill the "return only one row" rule of summaryRowDataSource by adding a criterion. Then I get 2 rows (unexpected, does not happen in my application) that looses it's design on click (unexpected, does also happen in my application using v12.1p_2022-08-10).
Please see the screenshot at the end.
Best regards
Blama
Creating this related testcase I noticed this issue. Please see this modified sample (v12.1p_2023-06-27, also in 13.0p).
I fulfill the "return only one row" rule of summaryRowDataSource by adding a criterion. Then I get 2 rows (unexpected, does not happen in my application) that looses it's design on click (unexpected, does also happen in my application using v12.1p_2022-08-10).
Please see the screenshot at the end.
Code:
isc.ListGrid.create({
ID:"dsListGrid",
width: "100%",
height: "100%",
autoFetchData: true,
dataSource: "supplyItem",
showGridSummary: true, // Added
summaryRowDataSource: "supplyItem", // Added
summaryRowCriteria: {"SKU": 45300} // Added
});
Blama
Comment