Hello,
For fields views we have a method like:
This tells us the field is being displayed in list mode. Is there some way to also determine if the field is being displayed in list mode for 'selecting' vs. just listing ?
As an example, say we have a link field in detail view. User selects it to open a window for selecting a record. One of the fields in those records is `myField` which has a custom view. Can we determine if `myField` is being displayed in listMode AND for selecting records vs just being displayed in listMode ?
For fields views we have a method like:
Code:
this.isListMode()
As an example, say we have a link field in detail view. User selects it to open a window for selecting a record. One of the fields in those records is `myField` which has a custom view. Can we determine if `myField` is being displayed in listMode AND for selecting records vs just being displayed in listMode ?
Code:
this.isListMode() && (i'm in a window for selecting records)
Comment