How do you hide the columns in datagrid?
Answers were Sorted based on User's Feedback
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 |
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 |
How do I change the console application in windows?
How do you display an editable drop-down list?
write a program to create login form
what are the diffrences between windows application and windows service?
where we are using NEW keyword other than create instance Pls Help me? Gopal
Explain how to split a column header in gridview using c#.net?
which property of menu cannot be set at run time?
Explain the need of z-order method?
What is the need of z-order method?
What is a windows forms application?
What is the difference between the add() and insert() methods of a listbox control?
____ property is used to lock a textbox to enter data.