I am working with the Rad gridview with Two Child Templates.I want to the Row Formatting for my ViewTemplates, So I used this Code ,
Private Sub RadGrid_RowFormatting1(ByVal sender As Object, ByVal e As Telerik.WinControls.UI.RowFormattingEventArgs) Handles RadGrid.RowFormatting
If e.RowElement.ViewTemplate.Parent IsNot Nothing Then
e.RowElement.ForeColor = Color.Blue
e.RowElement.BackColor = Color.SkyBlue
End If
Yes..its working ..Is there any way to give alternative colour to the second child template..I want to differentiate the colour between second template to first template.
I am populating the treeview's nodes on a Task in the background. As part of this, I want to prevent the user performing any actions on the treeview, such as clicking nodes etc. Therefore I want to disable any mouse and keyboard input/interactions.
SuspendUpdate is no good as I still want to be able to resize a form and the control to resize too. Also setting Enabled to false will not suffice as this greys out the control.
I’m using PageView with the PageViewPage AutoScroll set to “true”. I also have the PageView dock set to “Fill”. So when the form maximums so should the entire PageView.
However, when the PageViewPage as a scroll-bar and you scroll all the way down before maximizing
the form the scroll-bar still appears on the form at its original position. The expected result is to disappear as the content below is now visible.
I use a GridViewDecimalColumn where the value can be a double?. If the initial value is null, the cell is empty. When the user then enters a value, it is set. However, after this, if the user tries to get back to an empty cell, he tries to clear the value in the editor, but in this case, the value is always set back to 0. How to change this behaviour ?
I'm trying to figure out a way to rename (or remove) the default background colors on the Edit Appointments dialog box. I found the way to add items via something similar to this: Me.RadScheduler1.Backgrounds.Add((New AppointmentBackgroundInfo(13, "Green", Color.YellowGreen, Color.YellowGreen, Color.White, Color.White)))
One of users commented that the cursor in the rich text editor sits too close to the text. In fact, the cursor overlaps the last typed character - when this is an "i" or an "l" it becomes difficult to see the last character.
In MS Word there is a small gap between the last character and the cursor.
Is it possible to move the cursor so that there is a small gap?
Screenshots of Telerik, and MS word attached
I set the AutoRowSize of my grid to true as there are rows with a lot of text in one column - works fine, text is shown in multiple lines.
But when I add ColumnGroupsViewDefinitions to the grid's ViewDefinition (need 2-lines heading), the row's height is not adjusted anymore though grid.AutoRowSize was again set to true.