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!
Hi,
I want to Display all the items binded to Autocompletetextbox (expanded) the moment we get the focus of the radAutocompletetextbox and apply filter as and when user starts typing characters.
Filtering is happening when the user starts typing but first pat is not working.
Any help is appreciated.


Hi,
There's a graphical problem with RadPageView Q1 2015.
I tested it on a new project (cf screenshot)
When on ExplorerBar mode, you have more than 1 Page and use scroll button of your mouse, the component blinks.
Happens too if your scrollvalue=0 and you move up and scrollvalue=max and you move down.

So I know how to return any value using the CurrentRow. Let's say a user has one row selected, and they right-click on a different row, I need to retrieve the value from that row. I've been looking at CurrentRowChanging & Changed as I suspect I need to capture the value there. I think my issue is the value being returned now is the value from the previously selected row and I'm not aware of the event trigger hierarchy.
Any help? Thanks

I'm trying to create GridViewComboBoxColumn that works like a RadComboBox with the CheckBoxes property set to True.
Reading through this post, I cannot find the RadGridView_RowLoaded event.
Under the section "Customize the DropDownListEditor in GridViewComboBoxColumn​" in this post, would I do something like that to create CheckBoxes? From this example, it looks like it would affect all GridViewComboBoxColumns. How would I make it only affect the specific column?
