I have a Dialog Modal that pops up with a Grid on it with a check box
<e-column type='checkbox' :allowFiltering='false' :allowSorting='false' width='60'></e-column> I would like to have all of the check boxes checked / selected when it displays. If I use
this.$refs.gridDialog.selectRowsByRange(0,1); This only works with a visible grid.
How can I make this work? Is there something else that I should be using?