Hello,
I have sfdatagrid1 with about 16000 records. Some records starting the same name for example:
SMC. nejakyText1
SMC. nejakyText2
SMC. nejakyText3
When I write keyword "SMC." into user filtering window, window select correct data. But when I approve filtered data, sfDataGrid1 show all data.
When I write keyword "SMC. nejakyText3" everything is OK.
I recorded short video: https://www.youtube.com/watch?v=5nqrgeQ1qsU&feature=youtu.be
sfDataGrid1.AllowFiltering = true;
DataTable dt = new DataTable();
dt = someFunction();
sfDataGrid1.DataSource = dt;
Thank you