Hi all.
I have 1 table called 'POB' with three fields.
Id, Name, Mustered
.
Mustered field is a checkbox and the table is in spreadsheet mode, so Mustered can be checked and unchecked on the fly.
I then have a Custom View of this table called validated which is sorted by Mustered Ascending, so the idea is when the Checkbox for Mustered is checked, somebody viewing on another screen the custom view of validated I want this page to refresh.
I have tried the below form the help, but it dont seem to work for me.
if( !pageObj.myAfterInline ) {
this.on('afterInlineEdit', function( fieldsData ) {
pageObj.reload({});
} );
pageObj.myAfterInline = true;
}