I have a Main form that is set to MDI Parent This has a RadRibbon and a RadDock.the Dock is set to Auto Detect Mdi Children
I then Load a Form which contains a DataGridView in a Panel. I want to change the RadRibbon on the Main form to a Context Menu for the DataGridView when it is clicked and when the Form is Clicked the menu should return to the Form context.
I can switch to the DataGridView using its GotFocusEvent
To switch back the Form it is on does not fire the GotFocus, Activated or Click Events. is is possible to find out when the user has clicked on a form?
I have created a class that derives from the RadRibbonBar so that i can create the elements on the bar in code and create an instance of the bar to apply them to my Form.
publicclassSappsRibbonBar : RadRibbonBar
{
publicvoidCreateSappsRibbonBar(MenuType MenuType)
{
BuildFromDB(MenuType);
}
}
this builds the bar ok but there seems to be no theme attached to the bar. is there something i'm missing?
i want to know how to add the rows added by the users to be added on the top
and also want to know how to add the rows that added by programatically to be added on the top.
i use the bound mode.i bind List<> to the "gridview.DataSource".
How do I load the existing themes (e.g. Office2007Black) into the visual style builder to customize them? Loading the RadForm control simply loads the control default, and I cannot add from assembly because, I believe, the RadForm does not inherit from RadControl and thus is not a choice.
We are willing to update an application we started to develop since a few months with the Telerik components. I was wondering if there is a simple way to convert all the Winforms (about 100 of them) into Radforms easily?
I have also another question:
Once I convert all my winforms into radforms. I would like to display the forms inside the mainform with radribbonbar according on which button in the radribbonbar the user clicks. I found a solution: add a panel into the mainform. On each radform, below all the components there will be another panel which will be added or removed from the panel in the mainform according to what is needed. Do you think it's the best solution? Do you have any other solution?
I could not find much information about the radform in the documentation... that's why I am asking on the forum.
Hi. I use RadMaskedEditBox to display percent values. My code used the value property of the control to obtain the numeric value without the masked format and to assign values to the control form database fields. In Q2 2011 this is no longer possible because the value property returns the same values as the text property and when I assign values it no longer displays them correctly.
If my masked box displayed "4.00 %", the value property used to return 0.04. Now it returns "4.00 %". In the same way, if the database field had a value of 0.04 the masked box used to display "4.00 %" and now it displays "0.04 %".
Am I doing something wrong or is there a new way of doing this?
I Have a Radgridview and I want to hide other columns when I doubleclick a certain column
Im doing it through this code
Private Sub DataGridView1_CellDoubleClick(ByVal sender As Object, ByVal e As Telerik.WinControls.UI.GridViewCellEventArgs) Handles DataGridView1.CellDoubleClick
DataGridView1.Columns("Column1").IsVisible = False
DataGridView1.Columns("Column2").IsVisible = False
End Sub
But the problem is that I want to use this event when is certain column is doubleclicked and not for all columns. I want this code to run when I double clicked on column5 for example.
Im using vb.net and totally new to telerik controls
Dear Support ,
Just returning from extensive use of Telerik ASP.Net Grid :) I am unable to find DataKeyNames property in WinForms GridView . Kindly do let me know how I can find and use this in WinForms GridView.I am using Telerik controls version Q3 2010
I would like to know if there is a possibililty to just filter on the RadGridView by passing a string to a certain property.
I've seen that there is FilterExpressionChanged Event which has the FilterExpressionChangedEventArgs as argument and that argument has a property FilterExpression.
What I would like to have is to be able to just call this property FilterExpression so I know in a string the filter expression on the entire grid and can also pass a string to this Expression to be able to filter.