Skip to content

Commit 769e2c1

Browse files
author
syshex
committed
1.1.1
1 parent c4c4f2d commit 769e2c1

File tree

6 files changed

+34
-20
lines changed

6 files changed

+34
-20
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.1.1 (June 1, 2017)
4+
5+
* Added more Events
6+
37
## 1.1.0 (May 30, 2017)
48

59
* Remote data loading (through ajax call)

README.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
vue-bootstrap-table is a sortable and searchable table, with Bootstrap styling, for Vue.js.
44

5-
### VUE 1
6-
7-
Use current release : 1.1.0
5+
### VUE 1 : 1.1.1
86

97
### Vue 2 : [jbaysolutions/vue2-bootstrap-table](https://github.com/jbaysolutions/vue2-bootstrap-table)
108

@@ -331,7 +329,7 @@ Example:
331329
* `ajaxLoadedEvent` - When ajax call is executed successfully an `ajaxLoadedEvent` event is dispatched.
332330
* `ajaxLoadingError` -When ajax call is executed unsuccessfully an `ajaxLoadingError` event is dispatched.
333331

334-
### Handling `cellDataModifiedEvent`
332+
### Handling Events
335333

336334
```javascript
337335
@@ -344,6 +342,12 @@ Example:
344342
" | Complete Entry : " + entry );
345343
346344
},
345+
ajaxLoadedEvent: function( data ) {
346+
console.log("ajaxLoadedEvent - data : " + data );
347+
},
348+
ajaxLoadingError: function( error ) {
349+
console.log("ajaxLoadingError - error : " + error );
350+
},
347351
},
348352
```
349353

@@ -368,6 +372,10 @@ If you have a feature request, please add it as an issue or make a pull request.
368372

369373
## Changelog
370374

375+
### 1.1.1
376+
377+
* Added more Events
378+
371379
### 1.1.0
372380

373381
* Remote data loading (through ajax call)

dist/vue-bootstrap-table.js

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue-bootstrap-table.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-bootstrap-table2",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "A sortable and searchable vue table, as a Vue component, using bootstrap styling.",
55
"keywords": [
66
"table",
@@ -29,32 +29,33 @@
2929
"qs": "^6.0.0"
3030
},
3131
"devDependencies": {
32-
"cross-env": "^2.0.0",
3332
"babel-cli": "^6.5.1",
3433
"babel-core": "^6.x",
3534
"babel-eslint": "^4.1.8",
3635
"babel-loader": "^6.x",
37-
"babel-plugin-transform-runtime": "^6.0.0",
3836
"babel-plugin-transform-flow-comments": "^6.7.0",
37+
"babel-plugin-transform-runtime": "^6.0.0",
3938
"babel-plugin-typecheck": "^3.6.1",
4039
"babel-preset-es2015": "^6.5.0",
4140
"babel-preset-es2015-loose": "^7.0.0",
4241
"babel-preset-stage-1": "^6.5.0",
42+
"bootstrap": "3.3.7",
43+
"cross-env": "^2.0.0",
4344
"css-loader": "^0.23.1",
45+
"ejs": "^2.4.1",
46+
"eslint": "^1.10.3",
47+
"exports-loader": "^0.6.3",
48+
"extract-text-webpack-plugin": "^1.0.1",
49+
"imports-loader": "^0.6.5",
4450
"style-loader": "^0.13.1",
4551
"stylus-loader": "^1.2.1",
52+
"vue": "^1.0.26",
53+
"vue-hot-reload-api": "^1.3.3",
4654
"vue-html-loader": "^1.0.0",
47-
"vue-style-loader": "^1.0.0",
4855
"vue-loader": "^8.5.2",
49-
"vue": "^1.0.26",
50-
"bootstrap": "3.3.7",
56+
"vue-style-loader": "^1.0.0",
5157
"webpack": "^1.13.1",
52-
"webpack-dev-server": "^1.14.1",
53-
"extract-text-webpack-plugin": "^1.0.1",
54-
"ejs": "^2.4.1",
55-
"eslint": "^1.10.3",
56-
"exports-loader": "^0.6.3",
57-
"imports-loader": "^0.6.5"
58+
"webpack-dev-server": "^1.14.1"
5859
},
5960
"license": "MIT"
6061
}

src/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ new Vue({
1414
showPicker: true,
1515
paginated: true,
1616
ajax: {
17-
enabled: true,
17+
enabled: false,
1818
url: "http://localhost:9430/data/test",
1919
method: "POST",
2020
delegate: true,

0 commit comments

Comments
 (0)