Skip to content

Commit

Permalink
add 'draggable' feathure
Browse files Browse the repository at this point in the history
  • Loading branch information
ekokotov committed Jun 29, 2015
1 parent 8810e4a commit 6d5c7f1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ editable | no | Allows to edit content inside cells. Editing update
select | no | select="multiply" allows to select more than one row. Selected rows are accessible.
selected-model | no | It exports selected model to controller variable. selected-model="yourModel"
resize | no | *default: true*. Use column resizing.
drag-columns | no | *default: false*. It allows to reorder your columns using drag-n-drop.

##Themes
Please check new 'Dark-sky' and 'Blue-dust' themes:
Expand Down
17 changes: 12 additions & 5 deletions example/partials/attributes.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ <h4 class="label label-primary">Optional:</h4>
<code>resize="true"</code>
Use column resizing.
</li>
<li>
<code>drag-columns="true"</code>
It allows to reorder your columns using drag-n-drop.
</li>
</ul>

<h4 class="label label-success">Default values:</h4>
Expand All @@ -69,12 +73,15 @@ <h4 class="label label-success">Default values:</h4>
<li>
<code>paging="true"</code>
</li>
<li>
<li>
<code>sorting="simple"</code>
</li>
</li>
<li>
<code>resize="false"</code>
</li>
</li>
<li>
<code>resize="false"</code>
</li>
<li>
<code>drag-columns="false"</code>
</li>

</ul>

0 comments on commit 6d5c7f1

Please sign in to comment.