vote up 1 vote down star

Hi

i have a jquery table with lots of row and i did the row selection work also. but i dont want the cell value to be selected if i drag select the row. how do i work with selecting the able row and not the values by drag select.

PraDheep

flag

1 Answer

vote up 1 vote down

For most browsers, you should add a class to the table (e.g. 'selecting') and have the following CSS declaration:

.selecting {
   -moz-user-select: -moz-none;
   -webkit-user-select: none;
   user-select: none;
}

For IE, however, you should subscribe to the selectstart and dragstart events and cancel them through javascript.

link|flag
Thanks, so can we give this for the whole table. or the div that i use – pradheep Jul 24 at 12:27
it should be applied to the area that you don't want to be selected – Alexander Gyoshev Jul 24 at 12:31
thats of great help and let me implement and let you know – pradheep Jul 24 at 12:44

Your Answer

Get an OpenID
or

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