jquery - Table row selection, but text in it doesn't want to be selected -
I have a jquery table with lots of lines and I have also done row selection, but I do not want cell If I drag, then select the value to select the row. How do I work with selecting the enabled row, and do not select the drag and click?
For most browsers, you should add a category to the table (such as 'select') and the following The CSS declaration is:
. Selecting {-moz-user-select: -moz-none; -webkit-user-select: none; Select user: none; }
For IE, however, you must subscribe to selectstart and Daggert events and have to cancel them by javascript .
Comments
Post a Comment