Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
305
can i add hyperlink or Button to a Subitem??
posted

Can i add a hyperlink or button in my  UltraListView?

my idea is add a link or a button "View" that when i click the link i open a form.

it's possible???

many thanks 

Parents
No Data
Reply
  • 69832
    Suggested Answer
    Offline posted

    Sub-items cannot be edited so you could assign a FormattedLinkEditor to the UltraListViewSubItemColumn's Editor property, but clicking it would not navigate to a URL. You could assign one to the MainColumn's Editor property and that would respond to clicks. For a button, you could use an EditorWithText on the MainColumn and add an EditorButton to it's ButtonsRight or ButtonsLeft collection.

Children