is it possible to drop a hyperlink object - as a custom cell, no doubt - into a virtual grid
I downloaded the example from another post in this forum but it was for a checkbox
I found a HyperlinkElement but it is calling for the specific row and column before instantiating
any assistance is greatly appreciated
Hi I am developing an application where Image URLs are saved onto a SQL database (Local paths) The images are in a JPEG/PNG format. Would it be possible to get the Image URLs from the database and insert them into the carousel? If so please can I get some help on how to do so :)
Kind regards
I am working on rewriting our grid reporting system using the Telerik GridView. I have run into one thing I have no been able to do. When I group a report, I need to show a summary row for all group levels. I have attached an example of what I need to do. In it I am grouping on two columns: View & User Id. I show a summary row for each user (pink) and then another summary row for each view (blue).
I have tried to do the same thing with the gridview but i have only been able to show a summary row for the lowest level group.
Does any one have an suggestions on how to do this?
Hi
I am trying to make a search function in a treeview.
Using this code will find what i am looking for:
Dim result As RadTreeNode() = RadTreeView1.FindNodes("Anders And")
result(0).RootNode.ExpandAll()
result(0).Selected = True
but all nodes are expanded, like 'expand1.png'
I would like it to look like 'expand2.png'
Kindly Peter
In measured document of Word-inspired project we have to use IDocument interface. How do I add a new paragraph to document and set its text alignment without having to know the alignment of previous paragraph? ChangeParagraphTextAlignment method behaves differently based on the current paragraph alignment. If current is Center, and we "change" to Center the result is Left. If current is Left and we "change" to Left the result is Justify. The method really really wants to change the alignment.
So in my code I do InsertParagraph(), not knowing how the previous paragraph was aligned. How to center-align this new paragraph?
I suppose I can use ClearAllFormatting, but now here's the followup question. How to reuse all other paragraph properties from previous paragraph, like indentation and spacing, and just set text alignment to Center?
I could make two calls, "change" to Justify, and then to Center. Whatever was the starting state we should reach Center, but this looks like a hack to me. In case we want to set the alignment to Left we would have to make three calls to make sure we actually reach Left state (for instance "change" to Right, then Justify, then Left).I feel this should not be so complicated.