I have a dhtmlXList which contains som text in an html-template.
I would like the user to be able to select the text for copying (with the left mouse-click, like with a regular html/text-element).
I’ve tried over-riding the .dhx_list user-select class, but I can’t get it to work.
.dhx_list {
-webkit-user-select: text; /* Chrome, Opera, Safari /
-moz-user-select: text; / Firefox 2+ /
-ms-user-select: text; / IE 10+ /
user-select: text; / Standard syntax */
}
Snippet:
[url]DHTMLX Snippet Tool
Maybe I’m using the wrong control for this?
I basically want something that looks like a list (and with the dynamic item height) but with the possibility for selecting
content the way explained above.
Thanks