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 can u split a column header in gridview using C#.net
What is the use of form?
Which method of the messagebox class is used to display a message in the message box?
What is a windows form application?
how to call constructor in abstract class
What are different options to store state in ASP.NET applications?
Explain about crystal report in brief?
I have two combobox .. and i have some items in both combobox now i need to check the item in both combobox if same item is Present in both combobox i need to display that item in message box
Which window displays messages for the status of various features provided in the visual studio .net ide?
write a program to create login form
What are the forms of graphics?
What is the advantage of a form?