We have achieved your requirement to reduce the detail indent width by overriding the _getIndentCol of grid prototype and have returned the indent col width as “1em” in this method. Please refer to the below code example and sample.
ej.Grid.prototype._getIndentCol= function() {
return ej.buildTag("col", "", { width: "1em" });
} |
Regards,
Jayaprakash K.