Hello, is there a way to change the arrow size of a radpopupeditor ?
I tried the following, that changes the dropdown button size but I cannot find a way to edit the arrow size, the problem is that (on windows 10, 4k monitor, 200dpi screen) the arrow is almost invisible.
radPopupEditor1.PopupEditorElement.ArrowButtonElement.Size = getSizeByUnit(4.5F,6.35F); <--this works
radPopupEditor1.PopupEditorElement.ArrowButtonElement.Arrow.Size = getSizeByUnit(2, 2); <--no effect.
Best regards
Andrea
I have two classes
One is EQConfig, the other is HSMSConfig (I attached) and EQConfig has a property which name is hsmsConfig and HSMSConfig type.
Then, I set below
this.radPropertyGrid1.SelectedObject = EQConfig;
Then I expected I can expand hsmsConfig property like
Hi folks,
i am working on a project where is want to plot multiple lineseries to compare racing times off different drivers on track during a race.
My problem is that i don't know the number or the maximum number of drivers on track at design time.
Of course i could add several series at runtime and simply don't fill the unused, but how can i manage this from code let's say in a For Next Loop.
Suggestion in vb would be nice. Using
Dim lineSeries As New LineSeries()
For id = 0 To arrFahrer.Count - 1
For i As Integer = 0 To arrFahrer(id).douRundenZeiten.Count - 2
rcvRundenzeiten.Series(id).DataPoints.Add(New CategoricalDataPoint(arrFahrer(id).douRundenZeiten.Item(i)))
Next i
rcvRundenzeiten.Series.Add(lineSeries)
Next
just creates one series with all points.
Kind regards
Martin
Hello all
how to add button in radtextboxcontrol in UI
thanks before
Hengky
Hello,
i'm trying to translate the PopUp for filtering a column in RadGridView.
I am using "FilterPopupRequired(object sender, FilterPopupRequiredEventArgs e) " to manipulate the popup.
I got all Elements translated except of two: (attached is a image that shows the two problematic elements)
- Textbox that shows "Search...":
I tried:
foreach (var item in ((RadListFilterPopup)e.FilterPopup).Items)
{
if (item as FilterMenuTextBoxItem != null)
{
var textBox = ((FilterMenuTextBoxItem)item).TextBox;
//textBox.Text = "...";
textBox.NullText = "NULL";
}
}
If i set .ext i see it is the right control im changing but i want to set the text if the user did not enter any text so i tried NullText but it is not working. Any ideas?
- First Element in TreeView that shows "All":
i tried to get the elements of the Treeview but i can't get them.
Here is my code:
foreach (var item in ((RadListFilterPopup)e.FilterPopup).Items)
{
if (item as FilterMenuTreeItem != null)
{
var items = ((FilterMenuTreeItem)item).Items; // here items count is 0
}
}
Thank you very much.
Best Regards,
Yves
RadGridView1.CurrentCell.Column.ToString();
RadGridView1.CurrentCellInfo.Column.ToString();
RadGridView1.CurrentColumn.ToString();
Hello,
I am dynamically creating a RadDropDownList and I add a handler to the KeyDown event. When this event gets called the sender is a RadDropDownListElement. How can I find the RadDropDownList that the element belongs to? I've tried the obvious properties like "parent" (It is a RadElement) with no luck.
Thanks!