HomeHelpTrac

Changeset 15685 for trunk/templates


Ignore:
Timestamp:
11/20/11 22:31:38 (6 months ago)
Author:
Alexander Trofimov
Message:

Grid - docs and samples

Location:
trunk/templates/base
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/templates/base/grid.html

    r15682 r15685  
    2323    <div id="__id_cont__"> 
    2424 
    25         <table id="__id_table__" class="bx-grid-table bx-def-margin-bottom bx-def-margin-top bx-def-border-bottom bx-def-border-top"> 
    26             <thead> 
    27                 <tr class="bx-def-border-bottom"> 
     25        <table id="__id_table__" class="bx-grid-table bx-def-margin-bottom bx-def-margin-top"> 
     26            <thead class="bx-def-border-bottom bx-def-border-top"> 
     27                <tr> 
    2828                    <bx_repeat:row_header> 
    2929                        __header_cell__ 
     
    3131                </tr> 
    3232            </thead> 
    33             <tbody> 
     33            <tbody class="bx-def-border-bottom"> 
    3434                    <bx_repeat:rows_data> 
    3535                        <tr id="__id_row__"> 
  • trunk/templates/base/scripts/BxBaseGrid.php

    r15682 r15685  
    1212 
    1313/** 
     14 * Grid representation. 
    1415 * @see BxDolGrid 
    1516 */ 
     
    318319 
    319320    protected function _getFilterControls () { 
    320         // TODO: don't duplicate code here, get it form forms somehow 
     321        // TODO: don't duplicate code here, get it from forms somehow 
    321322        $this->_oTemplate->addCss('forms.css'); 
    322323        return ' 
Note: See TracChangeset for help on using the changeset viewer.