Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Copy and Paste from DetailViewer

    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"}
        ]
    })

    #2
    Set canSelectText:true.

    Comment

    Working...
    X