This inquiry pertains to the development of the Serenity platform.
I am working with a grid that uses __id as idfield:
protected getIdProperty() { return "__id"; }
In addition, I have added a checkbox for each row:
this.rowSelection = new Serenity.GridRowSelectionMixin(this);
The query at hand is: How can the value of the check box be changed from __id to one of the column values (for instance: StudentID which may not always be unique)?
Thank you