I have a list of articles, I want to use the multi select feature to select multiple articles, can I disable some rows on it if it does not satisfy certain conditions?
Hi, welcome to the forum
Yes, the multiselect options have a "disabled" property which greys them out and prevents them being selected. You can use this field to write some logic inside {{ }}
to decide if it should be disabled or not
1 Like
Thanks @dcartlidge
I'm sorry. It seems like I didn't convey my idea fully
And I have a solution for this:
Create a new selectList -> delete items with value of field is false -> assign it with selectRow.
table1.selectRow({ mode: 'index', indexType: 'data', index: table1.selectedDataIndexes })
1 Like