doc cleanup

This commit is contained in:
Mottie 2013-03-28 22:50:28 -05:00
parent 6de2cc930c
commit 2e12043b91
2 changed files with 4 additions and 3 deletions

View File

@ -108,6 +108,7 @@
<li><code>group_collapsible</code> - when <code>true</code> the group headers become clickable and collapse the rows below it.</li> <li><code>group_collapsible</code> - when <code>true</code> the group headers become clickable and collapse the rows below it.</li>
<li><code>group_count</code> - Allows you to add custom formatting, or remove, the group count within the group header. Set it to <code>false</code> or an empty string to remove the count.</li> <li><code>group_count</code> - Allows you to add custom formatting, or remove, the group count within the group header. Set it to <code>false</code> or an empty string to remove the count.</li>
<li><code>group_months</code>, <code>group_week</code> and <code>group_time</code> - Name arrays included so that the language of the date groups can be modified easily.</li> <li><code>group_months</code>, <code>group_week</code> and <code>group_time</code> - Name arrays included so that the language of the date groups can be modified easily.</li>
<li><code>group_formatter</code> - Use this function to modify the group header text before it gets applied. It provides various parameters to make it work for any of the table columns and data. See the comments in the example below for more details.</li>
</ul> </ul>
</li> </li>
<li>Group header class names (when changing the grouping, notice that the <em>sort doesn't change, just the position and names of the group headers</em>): <li>Group header class names (when changing the grouping, notice that the <em>sort doesn't change, just the position and names of the group headers</em>):
@ -125,7 +126,7 @@
<li><code>"group-date-week"</code> - group the rows by day of the week<span class="remark">*</span></li> <li><code>"group-date-week"</code> - group the rows by day of the week<span class="remark">*</span></li>
<li><code>"group-date-time"</code> - group the rows by time<span class="remark">*</span></li> <li><code>"group-date-time"</code> - group the rows by time<span class="remark">*</span></li>
</ul> </ul>
<span class="remark">*</span> When sorting some columns, different group headers with the same group name may exist (try "group-date-week" and "group-date-time"). To make these columns sort specifically by the group you want, you'll need to modify the parser. <span class="remark">*</span> When sorting some columns, different group headers with the same group name may exist (try "group-date-week" and "group-date-time"). To make these columns sort specifically by the group you want, you'll need to modify the parser.
</li> </li>
</ul> </ul>
@ -198,7 +199,7 @@ $(function(){
theme : &#39;blue&#39;, theme : &#39;blue&#39;,
headers: { headers: {
0: { sorter: 'checkbox' }, 0: { sorter: 'checkbox' },
2: { sorter: 'select' }, 3: { sorter: 'select' },
6: { sorter: 'inputs' } 6: { sorter: 'inputs' }
}, },
widgets: [&#39;group&#39;], widgets: [&#39;group&#39;],

View File

@ -312,7 +312,7 @@
<li><a href="example-widget-zebra.html">Zebra stripe widget</a></li> <li><a href="example-widget-zebra.html">Zebra stripe widget</a></li>
<br> <br>
<li><a href="example-parsers-dates.html">Assorted date parsers</a> <span class="tip"><em>New</em></span> v2.8.</li> <li><a href="example-parsers-dates.html">Assorted date parsers</a> <span class="tip"><em>New</em></span> v2.8.</li>
<li><a href="example-parsers-ignore-articles.html">Ignore leads parser</a> (Ignore "A", "An" and "The" in titles) <span class="tip"><em>New</em></span> v2.8.</li> <li><a href="example-parsers-ignore-articles.html">Ignore leading articles parser</a> (Ignore "A", "An" and "The" in titles) <span class="tip"><em>New</em></span> v2.8.</li>
<li><a href="example-widget-grouping.html">Input/select parsers</a> (used by Grouping rows widget) <span class="tip"><em>New</em></span> v2.8.</li> <li><a href="example-widget-grouping.html">Input/select parsers</a> (used by Grouping rows widget) <span class="tip"><em>New</em></span> v2.8.</li>
<li><a href="example-parsers-metric.html">Metric parser</a> <span class="tip"><em>New</em></span> v2.8.</li> <li><a href="example-parsers-metric.html">Metric parser</a> <span class="tip"><em>New</em></span> v2.8.</li>
<li><a href="example-parsers-feet-inch-fraction.html">Feet-inch-fraction parser</a> <span class="tip"><em>New</em></span> v2.8.</li> <li><a href="example-parsers-feet-inch-fraction.html">Feet-inch-fraction parser</a> <span class="tip"><em>New</em></span> v2.8.</li>