| if (e.Item is GridHeaderItem) |
| { |
| GridHeaderItem headerItem = (GridHeaderItem)e.Item; |
| headerItem["CheckboxSelectColumn"].ToolTip = "Select all or Deselect"; |
| headerItem["imgHeader"].ToolTip = "Action Past Due"; |
| headerItem.Attributes["onmouseover"] = "this.style.background='#dde9ff'; this.style.fontWeight='normal';this.style.cursor='pointer'"; |
| headerItem.Attributes["onmouseout"] = "this.style.background=''; this.style.fontWeight='';this.style.cursor=''"; |
| } |