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
Hi Boris,I've reviewed your code and seems it's close to what I want. I was assigning UltraFormattedLinkLabel to MainColumn's Editor property instead of EditorComponent - I'm not well versed on Infragistics but what's the difference between this two property's behavior and which one to use when? Also, Ideally I wanted to have a button for a subitem column as well along with LinkLabel in MainColumn. Is it possible without me using the UltraGrid? Also, instead of just button I tried ultraFormattedLinkLabel on both Editor & EditorComponent property as per earlier suggestion from Brian Fallon and that didn't help me either. I'm guessing if FormattedLinkLabel is possible then Button should be possible as well. Is it safe to assume?I've attached modification of your sample with Form2.Thanks again for your help!Kapil
Hi Kapil,
Could you please review the sample attached to this post and see if it meets your requirements.Please feel free to let me know if I misunderstood you or if you have any other questions.
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
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.