How can I select text to be copied in a DetailViewer? Users want to select text by dragging over it with their cursor then copy it to the clipboard, but they can't.
Code:
isc.DetailViewer.create({
ID:"countryDetails",
width:500, top:250,
fields:[
{name:"countryName", title:"Country"},
{name:"countryCode", title:"Code"},
{name:"government", title:"Government"}
],
data:[
{countryName:"asdfac",countryCode:"asdf",government:"asdcoi"}
]
})
Comment