1 protected void Page_Load(object sender, EventArgs e)
2 {
3 WebGrid Grid = this.contentWebPaneManager.FindControl("allergiesGrid") as WebGrid;
4 int count = Convert.ToInt32(Grid.RootTable.Rows.Count);
5 if (count == 0)
6 {
7 Grid.RootTable.AllowAddNew = ISNet.WebUI.WebGrid.AddNew.Yes;
8 Grid.RootTable.NewRowInfoText = "Click Add to add an Items...";
9
10 }
11
12 bindAllergicReaction();
13
14
15 this.btnHelp.Attributes.Add("onclick", "return helpDialogBox();");
16 this.btnCancel.Attributes.Add("onclick", "return clearAll('aspnetForm');");
17
18
19
20 }