protected internal virtual TableCell CreateHeaderCell(int layoutLevel, GridViewColumn column, GridViewHeaderLocation location, bool removeLeftBorder, bool removeRightBorder)
 {
     if (layoutLevel == 0)
     {
         if (column is SmartGridViewCommandColumn)
             return new ASPxSmartGridViewCommandColumnHeaderCell(this, column as SmartGridViewCommandColumn, location, removeLeftBorder, removeRightBorder);
     }
     
     return new ASPxSmartGridViewTableHeaderCell(this, column, location, removeLeftBorder, removeRightBorder);
 }
 public ASPxSmartGridViewCommandColumnHeaderCell(ASPxGridViewRenderHelper renderHelper, SmartGridViewCommandColumn column, GridViewHeaderLocation location, bool removeLeftBorder, bool removeRightBorder) 
     : base(renderHelper, column, location, removeLeftBorder, removeRightBorder)
 {
 }
 public ASPxSmartGridViewHtmlHeaderContent(GridViewColumn column, GridViewHeaderLocation location)
     : base(column, location)
 {
 }
        protected internal virtual TableCell CreateHeaderCell(int layoutLevel, GridViewColumn column, GridViewHeaderLocation location, bool removeLeftBorder, bool removeRightBorder)
        {
            if (layoutLevel == 0)
            {
                if (column is SmartGridViewCommandColumn)
                {
                    return(new ASPxSmartGridViewCommandColumnHeaderCell(this, column as SmartGridViewCommandColumn, location, removeLeftBorder, removeRightBorder));
                }
            }

            return(new ASPxSmartGridViewTableHeaderCell(this, column, location, removeLeftBorder, removeRightBorder));
        }
 public ASPxSmartGridViewTableHeaderCell(ASPxGridViewRenderHelper renderHelper, GridViewColumn column, GridViewHeaderLocation location, bool removeLeftBorder, bool removeRightBorder)
     : base(renderHelper, column, location, removeLeftBorder, removeRightBorder)
 {
 }
 public ASPxSmartGridViewHtmlHeaderContent(GridViewColumn column, GridViewHeaderLocation location) 
     : base(column, location)
 {
 }
 public ASPxSmartGridViewECAllButtonsBlockContent(SmartGridViewCommandColumn column, GridViewHeaderLocation location)
 {
     Column = column;
     Location = location;
 }
Example #8
0
 public ASPxSmartGridViewECAllButtonsBlockContent(SmartGridViewCommandColumn column, GridViewHeaderLocation location)
 {
     Column   = column;
     Location = location;
 }