public static HtmlTableCell AddTo(this HtmlTableCell cell, HtmlTableRow row,
                                   string classes = null, bool clear = false)
 {
     row.Cells.Add(cell);
     if (classes != null)
     {
         cell.AddCssClasses(classes, clear);
     }
     return(cell);
 }