Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changing column properties in execution time #375

Open
wants to merge 4 commits into
base: fixes-and-features
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ src/*.map
*~
*.diff
*.patch
.DS_Store
.DS_Store
settings.json
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 1.3.1

### Enhancements & Features
- Replaced href attributes in order to prevent hash tags so *angular JS* works proper; see issue [#69](http://github.com/rstaib/jquery-bootgrid/issues/69) for more details

### Breaking Changes
There are no breaking changes but some HTML templates changed during development. In case you want to use the full new feature set be sure you did not override any affected (actionDropDownItem and paginationItem) templates.

## 1.3.0

### Enhancements & Features
- Option to hide column from the selection box; see issue [#62](http://github.com/rstaib/jquery-bootgrid/issues/62) for more details

## 1.2.0

### Enhancements & Features
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"accessibility",
"bootstrap"
],
"version": "1.2.0-rc",
"version": "1.3.1",
"authors": [
{
"name": "Rafael Staib",
Expand Down
14 changes: 13 additions & 1 deletion demo/index.htm
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
<th data-column-id="received" data-css-class="cell" data-header-css-class="column" data-filterable="true">Received</th>
<th data-column-id="link" data-formatter="link" data-sortable="false" data-width="75px">Link</th>
<th data-column-id="status" data-type="numeric" data-visible="false">Status</th>
<th data-column-id="hidden" data-visible="false" data-visible-in-selection="false">Hidden</th>
</tr>
</thead>
<tbody>
Expand All @@ -79,76 +80,87 @@
<td>11.12.2014</td>
<td>Link</td>
<td>999</td>
<td>Hidden value 1</td>
</tr>
<tr>
<td>2</td>
<td>[email protected]</td>
<td>12.12.2014</td>
<td>Link</td>
<td>999</td>
<td>Hidden value 1</td>
</tr>
<tr>
<td>3</td>
<td>[email protected]</td>
<td>10.12.2014</td>
<td>Link</td>
<td>2</td>
<td>Hidden value 1</td>
</tr>
<tr>
<td>4</td>
<td>[email protected]</td>
<td>12.08.2014</td>
<td>Link</td>
<td>999</td>
<td>Hidden value 1</td>
</tr>
<tr>
<td>5</td>
<td>[email protected]</td>
<td>12.06.2014</td>
<td>Link</td>
<td>3</td>
<td>Hidden value 1</td>
</tr>
<tr>
<td>6</td>
<td>[email protected]</td>
<td>12.12.2014</td>
<td>Link</td>
<td>999</td>
<td>Hidden value 1</td>
</tr>
<tr>
<td>7</td>
<td>[email protected]</td>
<td>12.11.2014</td>
<td>Link</td>
<td>999</td>
<td>Hidden value 1</td>
</tr>
<tr>
<td>8</td>
<td>[email protected]</td>
<td>15.12.2014</td>
<td>Link</td>
<td>999</td>
<td>Hidden value 1</td>
</tr>
<tr>
<td>9</td>
<td>[email protected]</td>
<td>24.12.2014</td>
<td>Link</td>
<td>0</td>
<td>Hidden value 1</td>
</tr>
<tr>
<td>10</td>
<td>[email protected]</td>
<td>14.12.2014</td>
<td>Link</td>
<td>1</td>
<td>Hidden value 1</td>
</tr>
<tr>
<td>11</td>
<td>[email protected]</td>
<td>12.12.2014</td>
<td>Link</td>
<td>999</td>
<td>Hidden value 1</td>
</tr>
</tbody>
</table>
Expand Down Expand Up @@ -177,7 +189,7 @@
return "<a href=\"#\">" + column.id + ": " + row.id + "</a>";
}
},
rowCount: [-1, 25, 50, 75]
rowCount: [-1, 10, 50, 75]
});
}

Expand Down
Binary file removed dist/jQuery.Bootgrid.1.2.0-rc.nupkg
Binary file not shown.
Binary file added dist/jQuery.Bootgrid.1.3.1.nupkg
Binary file not shown.
Binary file removed dist/jquery.bootgrid-1.2.0-rc.zip
Binary file not shown.
Binary file added dist/jquery.bootgrid-1.3.1.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion dist/jquery.bootgrid.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* jQuery Bootgrid v1.2.0-rc - 04/17/2015
* jQuery Bootgrid v1.3.1 - 09/11/2015
* Copyright (c) 2014-2015 Rafael Staib (http://www.jquery-bootgrid.com)
* Licensed under MIT http://www.opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.bootgrid.fa.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* jQuery Bootgrid v1.2.0-rc - 04/17/2015
* jQuery Bootgrid v1.3.1 - 09/11/2015
* Copyright (c) 2014-2015 Rafael Staib (http://www.jquery-bootgrid.com)
* Licensed under MIT http://www.opensource.org/licenses/MIT
*/
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.bootgrid.fa.min.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* jQuery Bootgrid v1.2.0-rc - 04/17/2015
* jQuery Bootgrid v1.3.1 - 09/11/2015
* Copyright (c) 2014-2015 Rafael Staib (http://www.jquery-bootgrid.com)
* Licensed under MIT http://www.opensource.org/licenses/MIT
*/
!function(a){"use strict";a.extend(a.fn.bootgrid.Constructor.defaults.css,{icon:"icon fa",iconColumns:"fa-th-list",iconDown:"fa-sort-desc",iconRefresh:"fa-refresh",iconSearch:"fa-search",iconUp:"fa-sort-asc"})}(jQuery,window);
!function(a,b,c){"use strict";a.extend(a.fn.bootgrid.Constructor.defaults.css,{icon:"icon fa",iconColumns:"fa-th-list",iconDown:"fa-sort-desc",iconRefresh:"fa-refresh",iconSearch:"fa-search",iconUp:"fa-sort-asc"})}(jQuery,window);
Loading