Is it possible to make a LinkButton selectable? That is, the text from the LinkButton can be selected and then copied. LinkButton does not have the selectable property.
Is it possible to make a LinkButton selectable? That is, the text from the
Share
It is probably easier to create your own
LinkButtonby extending aTextcontrol. Just style it to look like theLinkButton(blue, underlined) and set the following properties:Then just handle the MouseEvent.CLICK event as you would with any
Button.