Dear Admins.
I was Using the following code for populating radGridView. But it was little bit slower (items Count was more then 40,000)
BindingSource source =
new
BindingSource
{
//GetItemTable Return the DataTable
DataSource = _ItemRepository.GetItemTable()
};
radGridView1.MasterTemplate.DataSource = source;
Then i give a try to use VirtualGrid (By using the Example given in the Documentation), to check the performance difference.it is good.
I have some question regarding presentation/ populating of VirtualGrid.
The ItemClass is used to populate the VirtualGrid have 15 columns(Attributes),
- I want to load only some of them, Locating at different Column Numbers not in Sequence. Like i have Column Number from 1...15, I want to display only 1,3,6,10th Column Numbers(Index Numbers).
- How to Hide any Column which is already populated in the Grid.
- I want to make custom filter functionality. I Have a Text Box above the VirtualGrid. I want to use that TextBox to apply the Filter on the Grid by Typing the Item Name, and Grid filter the Number of items according the typed text and display in the grid.
- How to Clear VirtualGrid rows.
I can use these functionalities by using the radGridView, but due to performance i want to use Virtual Grid.
I have achieved this behavior using the Microsoft DataGridView. But due to Conversion. I want to use all the controls only from telerik. (Using R2 2019 SP1)
If possible any working example will be appreciated.