This is a migrated thread and some comments may be shown as answers.

How to make column label BOLD in pop up edit form

1 Answer 78 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Orlando
Top achievements
Rank 1
Orlando asked on 23 Sep 2010, 05:25 AM
I use popup edit form in RadGrid, how to make a required column label 'bold'?

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 23 Sep 2010, 12:58 PM
Hello Orlando,

One suggestion is to try the following code snippet in Prerender event. .

C#:
protected void RadGrid1_PreRender(object sender, EventArgs e)
   {
       RadGrid1.MasterTableView.GetColumn("EmployeeID").EditFormHeaderTextFormat = "<b>EmployeeID</b>";
   }

Thanks,
Princy.
Tags
Grid
Asked by
Orlando
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or