I have I datagrid, on which I want to select multiple rows on a other user interaction than the one intended by the Programm. I'm wondering, whether I can programmatically select some rows depending only on code?

Thanks, Markus

link|improve this question

63% accept rate
feedback

1 Answer

up vote 2 down vote accepted

You can set the selectedIndices property to an array of indexes, or the selectedItems property to an array of items.

For example:

myDataGrid.selectedIndices = [1,2,5,8];
link|improve this answer
Oh Thanks, thats great! – Markus Mar 17 '10 at 16:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.