Hi,
I need to dynamically hide grid attributes and ideally datasource fields based on user access. Is there a way to add a showIf condition to every ListGrid / TreeGrid field?
I have tried :
Thanks,
Gary
I need to dynamically hide grid attributes and ideally datasource fields based on user access. Is there a way to add a showIf condition to every ListGrid / TreeGrid field?
I have tried :
Code:
isc.ListGridField.addClassProperties ({
showIf:"enabled(this.name)"
)};
Gary