datatable disabled text selection
Posted: Thu Apr 20, 2023 12:58 am
Hi guys,
Maybe you have seen this before.
I know you can add things to a web page to disable text selection...
but if you create a simple web page with a datatable like this one:
and you try to copy the text MARY to your clipboard, it is disabled and you cannot copy it...
how you enable it? without making changes to make those fields input.
kind regards
Maybe you have seen this before.
I know you can add things to a web page to disable text selection...
but if you create a simple web page with a datatable like this one:
Code: Select all
Begin_Com Role(*EXTENDS #PRIM_WEB) Theme(#SYS_THEME)
Define_Com Class(#PRIM_LIST) Name(#List) ColumnHeaderHeight(48) ColumnLines(False) DisplayPosition(1) Height(360) Left(48) Parent(#COM_OWNER) RowHeight(48) TabPosition(1) Top(53) Width(500) SelectionStyle(All)
Define_Com Class(#PRIM_LIST.String) Name(#ListColumn1) ColumnWidth(117) DisplayPosition(1) Parent(#List) SortOnClick(True) Source(#STD_CODE)
Define_Com Class(#PRIM_LIST.String) Name(#ListColumn2) ColumnWidth(246) DisplayPosition(2) Parent(#List) SortOnClick(True) Source(#STD_DESC)
Evtroutine Handling(#Com_owner.Initialize)
#STD_CODE := "A1"
#STD_DESC := "JOHN"
Add_Entry
#STD_CODE := "A2"
#STD_DESC := "MARY"
Add_Entry
Endroutine
End_Comhow you enable it? without making changes to make those fields input.
kind regards