hi
i want to filter the grid of multicolumncombobox by using filtering row so i use this code
DataTable dt = new DataTable();
dt.Columns.Add("id");
dt.Columns.Add("Name");
dt.Rows.Add("1", "a");
dt.Rows.Add("2", "b");
dt.Rows.Add("3", "c");
radMultiColumnComboBox1.DataSource = dt;
radMultiColumnComboBox1.EditorControl.EnableFiltering = true;
radMultiColumnComboBox1.EditorControl.EnableCustomFiltering = true;
radMultiColumnComboBox1.EditorControl.ShowFilteringRow = true; ///by using this we only can see the filtering row
so i can see the filteringrow but it dosent work .i cant filter the grid of multicolumn and i cant do customfiltering like some thing we do in radgridviews.
please help me if you know a way to do it
i want to filter the grid of multicolumncombobox by using filtering row so i use this code
DataTable dt = new DataTable();
dt.Columns.Add("id");
dt.Columns.Add("Name");
dt.Rows.Add("1", "a");
dt.Rows.Add("2", "b");
dt.Rows.Add("3", "c");
radMultiColumnComboBox1.DataSource = dt;
radMultiColumnComboBox1.EditorControl.EnableFiltering = true;
radMultiColumnComboBox1.EditorControl.EnableCustomFiltering = true;
radMultiColumnComboBox1.EditorControl.ShowFilteringRow = true; ///by using this we only can see the filtering row
so i can see the filteringrow but it dosent work .i cant filter the grid of multicolumn and i cant do customfiltering like some thing we do in radgridviews.
please help me if you know a way to do it