What's New?
It's possible now to define column width percentage wise:
colDef : [
{
...
width : '20%',
...
},
...
],
|
Also you can attach and unattach toolbars ResetPanel and SearchPanel:
tableDef
{
...
useResetPanel : true|false
useSearchPanel : true|false
...
}
|
useSort property allows you to cancel the sort icons and sort functions.
usePagePanel - to cancel the page panel (with number of rows and page turn control).
tableDef =
{
...
useSort : true|false,
usePagePanel : true|false,
...
};
|
Note: All these features are available with version only.
Read more about CodeThatTable >>
|