Dave Ranck
Top achievements
Rank 1
Dave Ranck
asked on 23 Aug 2010, 10:41 PM
Hello,
I want to stop the grid from highlighting text when the user clicks, holds, and drags across the cell. Is this possible?
Attached is an image of what I'm trying to avoid.
I want a single click to highligh the row (which works fine), a double click to return a postback (works fine), but don't want any text highlighted on single click / drag.
Thanks!
I want to stop the grid from highlighting text when the user clicks, holds, and drags across the cell. Is this possible?
Attached is an image of what I'm trying to avoid.
I want a single click to highligh the row (which works fine), a double click to return a postback (works fine), but don't want any text highlighted on single click / drag.
Thanks!
5 Answers, 1 is accepted
0
Hi Mike,
Please add the following CSS rule to your page:
.RadGrid .rgRow,
.RadGrid .rgAltRow
{
user-select:none;
-moz-user-select:-moz-none;
}
Regards,
Dimo
the Telerik team
Please add the following CSS rule to your page:
.RadGrid .rgRow,
.RadGrid .rgAltRow
{
user-select:none;
-moz-user-select:-moz-none;
}
Regards,
Dimo
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items
0
Dave Ranck
Top achievements
Rank 1
answered on 24 Aug 2010, 02:46 PM
Hi Dimo,
Thank you for the reply. Unfortunately in IE8 I am still seeing the selected text when the user clicks and drags or double clicks on some text (see attached). Everything looks good in Firefox though. Is there something that can be added to satisfy IE 8?
Thanks again Dimo :)
Thank you for the reply. Unfortunately in IE8 I am still seeing the selected text when the user clicks and drags or double clicks on some text (see attached). Everything looks good in Firefox though. Is there something that can be added to satisfy IE 8?
Thanks again Dimo :)
0
Accepted
Hi Mike,
Due to IE's lack of support for the user-select CSS property, you can use
Best wishes,
Dimo
the Telerik team
Due to IE's lack of support for the user-select CSS property, you can use
protected
void
RadGrid1_ItemCreated(
object
sender, GridItemEventArgs e)
{
foreach
(TableCell cell
in
e.Item.Cells)
{
cell.Attributes.Add(
"unselectable"
,
"on"
);
}
}
Best wishes,
Dimo
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items
0
Dave Ranck
Top achievements
Rank 1
answered on 24 Aug 2010, 03:51 PM
Yea Dimo!! Thanks - You're the best! :)
0
William
Top achievements
Rank 1
Iron
answered on 26 Mar 2024, 07:43 PM
| edited on 26 Mar 2024, 07:43 PM
Anyone landing here trying to do the same but in a web version might try using this on the <Grid ... :
style={{ userSelect: 'none', MozUserSelect: '-moz-none' }}