You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<li>implementing expand/collapse as a filter for DataView</li>
</ul>
<h2>View Source:</h2>
<ul>
<li><Ahref="https://github.com/mleibman/SlickGrid/blob/gh-pages/examples/example5-collapsing.html" target="_sourcewindow"> View the source for this example on Github</a></li>
// wire up the search textbox to apply the filter to the model
$("#txtSearch").keyup(function(e){
Slick.GlobalEditorLock.cancelCurrentEdit();
// clear on Esc
if(e.which==27){
this.value="";
}
searchString=this.value;
dataView.refresh();
})
})
</script>
</body>
</html>
The aforementioned supports nesting <td> and <th> rows in the <tbody>. However, does it support nesting <th> column headers in the <thead>? I ask because sometimes I want to indicate that multiple headings are part of a group.
As a poor demonstration, consider the undermentioned:
SlickGrid/examples/example5-collapsing.html
Lines 1 to 278 in 7a3f3dc
The aforementioned supports nesting
<td>
and<th>
rows in the<tbody>
. However, does it support nesting<th>
column headers in the<thead>
? I ask because sometimes I want to indicate that multiple headings are part of a group.As a poor demonstration, consider the undermentioned:
The text was updated successfully, but these errors were encountered: