Tuesday, September 1, 2015

Set the Caption setting at a DevExpress ASPxGridView to put a big loud message above the column headers inside the grid itself.

catch (Exception ex)
{
   ReportGrid.Caption = ex.Message;
}

 
 

Advertise an error even more so with an applicable CSS styling!

#ReportGrid caption {
   color: red;
}

No comments:

Post a Comment