I use the following code to change fonts size in print:
1.void grid_PrintCellFormatting(object sender, PrintCellFormattingEventArgs e)2.{3. e.PrintCell.Font = new Font("Tahoma", 14, FontStyle.Regular);4.}Now, how can I make auto size the rows height in print without using the AutoSizeRows property of grid?

Hello all,
i have issue when filtering column, actually i want reoad my datasource when filterChanged, bbuut filterchanged always return before i completely what i type
Ex , when i wan filter By : " Data", D first enter in filterChanged event, i am really just need completely like " Data"
so i think if i can catch event enter in FilterChanged event it solve my issue, tell me how its work?
this below my snippet code :
private void RadGridMsHost_FilterChanged(object sender, GridViewCollectionChangedEventArgs e)
{
// i want use code like this, how to catch event enter in this section
if(xxx = enter)
FillRadGrid();
}
Please fast response,

Hello,
I have a RadTrackBar that has an odd scale. The minimum value is 0 and the maximum value is 5, but the large tick frequency is 3. I'd like to show a label at the last position of the trackbar (at the 5). Is this possible?
Look at the attached file for an example. I would like to show a label at the very right hand side of the trackbar.
Thank you!


When you filter a column on radgridview , a context menu is displayed,which contions a list of items like "no filter", "is null", "not null","Start with" ,"custom" and ...
I wan to change font of it. How can I do?

Hi to all,
I have this method, I'm trying to format in backcolor only column editable.
I setted all columns with ReadOnly = True, and then I setted only particular Column ReadOnly = False
Now I would test if I format cells by Name or by ReadOnly status, but in both ways, BackColor appears Yellow only when I doubleclick into editable cell.
I would show to user the editable columns with Yellow backcolor.
How can I do?
01.Private Sub UpdateCellFormatting(ByRef e As CellFormattingEventArgs)02. 03. Dim _IsEditable As Boolean = False04. 05. If _SelectedItem IsNot Nothing Then06. 07. If _SelectedItem.Personalizzazione = ListinoCliente.StringaListinoStandard Then08. 09. If e.CellElement.ColumnInfo.FieldName = "PrezzoListino" Then10. _IsEditable = True11. End If12. 13. Else14. 15. If e.CellElement.ColumnInfo.FieldName = "Sconto" Then16. _IsEditable = True17. End If18. 19. End If20. 21. End If22. 23. If _IsEditable Then24. e.CellElement.BackColor = Drawing.Color.Yellow25. Else26. e.CellElement.ResetValue(LightVisualElement.BackColorProperty, Telerik.WinControls.ValueResetFlags.Local)27. End If28. 29.End SubHow can I change font of filter in radgridview? Actually I want change font of texts like "no filter", "contains","Does not contain","custom", "Null" and ...

Hi
I am having big issues (lack of knowledge) with creating combo boxes on a gridview bound to a dataset, Can someone please point me in the right direction?
My current setup of the gridview is a SQL view that fills a dataset, which is then bound to the gridview. I have a column called 'Course', which is a column generated within the view that uses the Course_ID from the main User Table to lookup the Course name from the Course Table (see attachment). I would the Course column to be a combobox, when I auto generate the columns from the dataset it creates it as a textbox currently; and for the course names (from the course table) to be the options in the drop down . I would then like the user to see the selected options after a dataset update. Is there a way of doing this?
Thank you.
