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
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.
I don't see assigning a FormattedLinkEditor to the UltraListViewSubItemColumn's Editor property and make it work like as if it's clickable UIElement where I can track the click event and do desirable operation in EventHandler. I don't even see it as Link it just appears as normal text on columnPlease advise or give us working sample to take inspiration from. I'm using Infragistics4.v11.2Kapil