Is it possible to select multiple cells in a WebDataGrid without holding CTRL?
I don't find anything about this in the selection behavior tag.
Parus,
I assume you are asking if selecting multiple cells by simply clicking will be possible in the future. I don't think it is currently on the radar, but that is what a feature request is for. We try to design our controls to fit your needs. In the meantime, another possibility would be to use custom javascript. You could attach a handler for the grid's mouse click event and then determine the cell clicked. From there, you could simply select/unselect it through code. I hope this helps you accomplish what you're trying to do.
-Dave
Will this be possible in the future?
It is possible to select multiple cells or rows by using mouse drag on cells. But only one area could be selected at a time. This will work as long as CellSelectType is set to Multiple. Currently, multi-column selection is not possible using mouse drag.