Is there a way to capture when the "Clear Button" in the RadTextBox/RadTextBoxControl is clicked?
Thank you
This happens on both a RadMenu and a RadContextMenu.
I have a contextmenu tied to a text box. THere are 2 items on the context menu. One is defined as RadMenuItem, one is defined as cMyMenuItem.
My Code:
Public Class cMyMenuItem
Inherits Telerik.WinControls.UI.RadMenuItem
Sub New()
End Sub
End Class
Now, when the program is run, the menu item defined as RadMenuItem is fine, but the one defined as cMyMenuItem has a heavy border around it.
What do i need to setup in my class so the border isn't there.
I read in a previous forum post about changing the column display order by using the MOVE argument.
My question is does that really move the COLUMN or just where it is displayed?
With the standard windows listview, you can change the DisplayIndex, which only displays where that column is displayed, but the index of the column doesn't change, only the display index.
When you do a move, is it really moving the INDEX of the column
For example
Vendor # Name Contact Name
Move
Vendor # Contact Name Name
These are my columns in a DetailsView RadListView. If i move name from column 2 to 3 (or 1 to 2 is zero-based), is the DISPLAY only changing, or the actual index of the column. After the MOVE, to get the contact name of the selected column, is that index 2 or is it still the original index 3?
I have a radlistview setup for viewtype=DetailsView. The HOME/END keys work, but the Page up/down only move the scroll area, not the selected item.
You will notice when running the below code, page up/down will always keep the selected item as FIELD 0 (the top one), but END moves the select to the last entry, and HOME moves the select to the first entry.
How can i get the page up/down to move the selected item. I am probably just missing something really simple that i can't seem to find.
ListViewDetailColumn1.HeaderText = "Column 0"
ListViewDetailColumn1.Width = 100.0!
ListViewDetailColumn2.HeaderText = "Column 1"
ListViewDetailColumn2.Width = 100.0!
Me.RadListView1.Columns.AddRange(New Telerik.WinControls.UI.ListViewDetailColumn() {ListViewDetailColumn1, ListViewDetailColumn2})
Me.RadListView1.ItemSpacing = -1
Me.RadListView1.KeyboardSearchEnabled = True
Me.RadListView1.Location = New System.Drawing.Point(200, 72)
Me.RadListView1.Name = "RadListView1"
Me.RadListView1.Size = New System.Drawing.Size(296, 208)
Me.RadListView1.TabIndex = 2
Me.RadListView1.ViewType = Telerik.WinControls.UI.ListViewType.DetailsView
We use the standard windows UI LinkLabel to display a hyperlink in our software. I found
https://docs.telerik.com/devtools/winforms/knowledge-base/link-label
but, the issue with this is it is forcing color/font to the label - which i know a linklabel does. But, doesn't the theme have a linklabel "standard"?
Also, I don't understand the radlabel.linkarea value, and i can't seem to find that explained anywhere.
Thanks.
Hi Everyone,
Is there a way to hide the customize button of a CommandBarStrip ?
Thank you very much :)
There seems to be an issue expanding/collapsing the first grouped row on a different page.
If I collapse or expand the 1st row on the first page, it behaves normally. However, if I navigate to the 2nd page and attempt to expand or collapse the first row, the RadGridview changes the page to the first page. Collapsing or expanding any other row on the 2nd page works as designed.
If I navigate to the fourth page and expand the first row, it changes to the third page and expands the first row on that page.
The application is quite complicated. So, the best I can do is display screenshots. I will try to create a test application. Perhaps, I am missing something.
If I were to navigate to page 2 and expand row 1, it would change to page 1 and expand the first row on page 1.
I attached a video of the behavior.
Thank you for any help.
Using Visual Studio 2019 and Winforms. I have a hierarchical radgridview with my own search function. How can I change the yellow color when the search has found what was requested? I've been working with Visual Style Builder to try to find this but have had no luck. Thanks.