How do you hide the columns in datagrid?

Answers were Sorted based on User's Feedback



How do you hide the columns in datagrid? ..

Answer / s

DataGridTableStyle Dts1=new DataGridTableStyle();
datagrid1.TableStyles.Add(Dts1);

Dts1.GridColumnStyles[0].Width=0;
Dts1.GridColumnStyles[1].Width=390;
Dts1.GridColumnStyles[1].HeaderText="Title";

Is This Answer Correct ?    2 Yes 0 No

How do you hide the columns in datagrid? ..

Answer / surya

In the html source of datagrid, add "visible=true" to the
item template of corresponding row.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Dot Net WindowsForms Interview Questions

What is the advantage of a form?

0 Answers  


What is the use of lock keyword in C#?

1 Answers  


How is anchoring different from docking?

0 Answers  


what is the Difference between listbox and combo box?

20 Answers   Alpha, Google,


where we are using NEW keyword other than create instance Pls Help me? Gopal

6 Answers  


What is a windows form application?

0 Answers  


What is boxing and how it is done internally?

4 Answers   Microsoft,


What is the synonym of form?

0 Answers  


List out controls which does not have events?

8 Answers   Silicon,


Name the property which is used to specify the source from where the crystal reports would be accessed.

0 Answers  


which property is used to change to some value to access a identity column in datacontrols?

0 Answers  


How to split a column header in gridview using c#.net?

0 Answers  


Categories