hide DataGrid Cell

  • Thread starter Thread starter Andrew Chen
  • Start date Start date
A

Andrew Chen

How do I hide any particular DataGrid Cell from visible,
or any DataColumn for the matter?
 
this is also for infragistic datagrid examle i hope this will help you

if(UG_ElectionChest.DisplayLayout.Bands[loop].Columns["_ID"].Hidden==false)

{

UG_ElectionChest.DisplayLayout.Bands[loop].Columns["_ID"].Hidden =true;

UG_ElectionChest.DisplayLayout.Bands[loop].Columns["ChestCheck"].Hidden
=true;

UG_ElectionChest.DisplayLayout.Bands[loop].Columns["State_ID"].Hidden =true;

}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top