Unplanned
Last Updated: 21 Jun 2018 14:39 by ADMIN
ADMIN
Dimitar
Created on: 19 Mar 2018 08:49
Category: GridView
Type: Bug Report
0
FIX. RadGridView - the result index is not updated when using the SelectNextSearchResult/SelectPreviousSearchResult methods
To reproduce:
private void radButton1_Click(object sender, EventArgs e)
{
    radGridView1.MasterView.TableSearchRow.SelectNextSearchResult();

}
Check the index in the search textbox, it is not updated. 

Workaround:
var cell = radGridView1.TableElement.FindDescendant<GridSearchCellElement>();
if (cell != null)
{
    cell.FindNextButton.PerformClick();
}
0 comments