Hi.
I would like to achieve highlight of checkbox to be the same as mouse hover when I focus on checkbox with tab button. VisualStyleBuilder doesn't support this (or I just can't see this option). How can I achieve my goal?
Cheers,
Kuba.
Is there a simple way to fill DropDownList with data from database instead of enum?
I've seen examples with "EditorInitialized" but that is too incomprehensible for me and to messy form my code.
I'am not real programmer and jusing only simple things, Is there something like this:
Dim x As New PropertyStoreItem(GetType(Something), "Status", Nothing, "Status", "", False)
Something.DataSource = linqquery
I am trying to merge one RadDocument into other, I have numbered list added to RichTextBox from Ribbon menu and after i merge this raddocument, by below statements, i dont see the numbers in the numbered list
We have notice an issue with the vertical scroll behavior . When we click the small arrow (top or bottom) the list continue to scroll even if the mouse id released.
We also noticed that if we click the scroll bar, the indicator scrolls to the mouse location then stops.
How can I attached a zip file of the sample project and a video to demonstrate the issue?
Public Overrides Function ProcessKey(ByVal keys As KeyEventArgs) As Boolean
Try
If keys.KeyCode = Windows.Forms.Keys.Tab Or keys.KeyCode = Windows.Forms.Keys.Enter Then
If GridViewElement.Navigator.IsLastColumn(GridViewElement.CurrentColumn) Then
'Me.GridControl.ClearSelection()
Me.GridControl.GridNavigator.SelectNextRow(1)
Dim columnIndex = Me.GridControl.Columns("NewPrice").Index
GridViewElement.CurrentRow.Cells("NewPrice").IsSelected = True
GridViewElement.CurrentRow.Cells("NewPrice").BeginEdit()
End If
End If
Catch ex As Exception
End Try
Return MyBase.ProcessKey(keys)
End Function
I am using rad gridview for my winforms. Here i am showing n number of rows in the grid (say for example i have 10 rows), based on some condition i am making few rows invisible to the user (i.e. out of 10 i am displaying 3).
Is there way to get row count which are visible to user?
IEnumerator gridRowEnumerator = RadGridView1.Rows.GetEnumerator();
while (gridRowEnumerator.MoveNext())
{
bool found = false;
if (searchBox.Text == "") // if blank then all rows are visible.
{
found = true;
}
else
{
foreach (GridViewCellInfo g in gridViewRowInfo.Cells)
{
if (g.Value != null && g.Value.ToString().ToLower().Contains(searchBox.Text.ToLower()))
{
found = true;
break;
}
}
}
hi. i have one problem. i use telerik 2013 Q3.
how solve multi column filter in multicolumnCombobox ?i can do multi column filter ,but when on resalt row press enter, then another row info show ?
and not current row set?!!!
please help me.!
thank you
Not sure where this best belongs. Basically I am looking to change the default value of the EnableCodedUITests property for all controls that use it to true instead of the default false.
I don't want to do this on a per control basis or a per project basis I want to do it globally.