If my tree node text is empty I want to display special text to the user but I when the node is edited I want the text to be blank. How can I achieve this? Currently when hitting F2 I still have the "(Not Set)" text displayed.
<telerik:RadTreeView telerik:TextSearch.TextPath="DisplayName"
public override string DisplayName { get { if ( string.IsNullOrEmpty ()) { return "(Not Set)"; } return this.m_displayName; } set { this.m_displayName = value; } }Hi
is it possible to add a row like the red marked ones between the normal rows?
The picture is from a Java-Webapplication. I like to have the same in my WPF-Application
And how can i do this with the Gridview?
Thx in advance
Hi,
Currently i am binding the column of RadGridView with an interface type; which causes the filtering on the column for the RadGridView to not show.
Could you please provide a solution, where i can view the filter for a column that is bound with an Interface type.
Regards,
Swapnil
Hello Telerik,
I have a RadGridView and I set to it an EventBinding like this :
<telerik:EventToCommandBehavior.EventBindings> <telerik:EventBinding Command="{Binding CommandDeleteFolderRSP}" EventName="KeyUp" CommandParameter="Delete" /></telerik:EventToCommandBehavior.EventBindings>=> I want to bind a command if the user wants to delete the selected row.
The problem is that all of the keys are fired the command, not only the 'Delete' key.
What is my error ?
Thank you.
Hello Telerik,
I'm using a RadDiagram containing shapes. These shapes has TextBlock to display some text.
I search to get the position of a TextBlock inside this RadDiagram.
I did it (tb is a TextBlock and Me.MirBuilderDiagram is a RadDiagram) :
tb.TransformToAncestor(Me.MirBuilderDiagram).Transform(New Point(0, 0))
The problem is that values are false : the top-left corner of the RadDiagram is set to 20;20, and for a TextBock next to this corner, I get the wrong value. I tried to get the position with the parent of the RadDiagram (a Grid), but I have the same result.
I attached 2 screenshots with :
- raddiagram : showing you the visual RadDiagram
- debug : showing you the debug with an attached watcher.
How I can get the good values ?
Thank you.
Hello!
I have:
1. CandlestickSeries
2. X-Axis (datetime): CategoricalAxis
3. Y-Axis (double): LinearAxis
4. ChartPanAndZoomBehavior DragToZoomThreshold="0" MouseWheelMode="Zoom" DragMode="Pan" ZoomMode="Both" PanMode="Both"
How to make it so that:
1. When scrolling along the X-axis, all data on the Y-axis was displayed (in the visible range of X-axis)
Hello,
I have a project in which I have a radgridview that needs to be styled with different colors based on the values that are in the cell. So each cell can have different colors depending on its value. To do this I have just been programmatically changing the cell color from the cell loaded event. This is working fine for me but coloring the cells is having a weird effect that I would like to remove if possible. It appears that the cell colors are rendered on top of the row color and the selected row highlight when you mouse over a row. Is there a way I can easily reverse this so that the row color overrides the cell color while the row highlight is on top of the row color?
Thanks
I want to always disable and, if I can, clear the content of the first cell in the first row of my RadGridView. I know there is the readonly property to use, but that doesn't really work because then my objects need that field to bind to. It is static for me that in the first row, the first cell is always disabled. So no matter how the user moves around the rows or data, that cell remains static.
How can I do this?
