Skip to content

Commit

Permalink
1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
syshex committed Jun 1, 2017
1 parent c4c4f2d commit 769e2c1
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 20 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.1.1 (June 1, 2017)

* Added more Events

## 1.1.0 (May 30, 2017)

* Remote data loading (through ajax call)
Expand Down
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@

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

### VUE 1

Use current release : 1.1.0
### VUE 1 : 1.1.1

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

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

### Handling `cellDataModifiedEvent`
### Handling Events

```javascript
Expand All @@ -344,6 +342,12 @@ Example:
" | Complete Entry : " + entry );
},
ajaxLoadedEvent: function( data ) {
console.log("ajaxLoadedEvent - data : " + data );
},
ajaxLoadingError: function( error ) {
console.log("ajaxLoadingError - error : " + error );
},
},
```

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

## Changelog

### 1.1.1

* Added more Events

### 1.1.0

* Remote data loading (through ajax call)
Expand Down
5 changes: 3 additions & 2 deletions dist/vue-bootstrap-table.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/vue-bootstrap-table.js.map

Large diffs are not rendered by default.

25 changes: 13 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-bootstrap-table2",
"version": "1.1.0",
"version": "1.1.1",
"description": "A sortable and searchable vue table, as a Vue component, using bootstrap styling.",
"keywords": [
"table",
Expand Down Expand Up @@ -29,32 +29,33 @@
"qs": "^6.0.0"
},
"devDependencies": {
"cross-env": "^2.0.0",
"babel-cli": "^6.5.1",
"babel-core": "^6.x",
"babel-eslint": "^4.1.8",
"babel-loader": "^6.x",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-plugin-transform-flow-comments": "^6.7.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-plugin-typecheck": "^3.6.1",
"babel-preset-es2015": "^6.5.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-stage-1": "^6.5.0",
"bootstrap": "3.3.7",
"cross-env": "^2.0.0",
"css-loader": "^0.23.1",
"ejs": "^2.4.1",
"eslint": "^1.10.3",
"exports-loader": "^0.6.3",
"extract-text-webpack-plugin": "^1.0.1",
"imports-loader": "^0.6.5",
"style-loader": "^0.13.1",
"stylus-loader": "^1.2.1",
"vue": "^1.0.26",
"vue-hot-reload-api": "^1.3.3",
"vue-html-loader": "^1.0.0",
"vue-style-loader": "^1.0.0",
"vue-loader": "^8.5.2",
"vue": "^1.0.26",
"bootstrap": "3.3.7",
"vue-style-loader": "^1.0.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"extract-text-webpack-plugin": "^1.0.1",
"ejs": "^2.4.1",
"eslint": "^1.10.3",
"exports-loader": "^0.6.3",
"imports-loader": "^0.6.5"
"webpack-dev-server": "^1.14.1"
},
"license": "MIT"
}
2 changes: 1 addition & 1 deletion src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ new Vue({
showPicker: true,
paginated: true,
ajax: {
enabled: true,
enabled: false,
url: "http://localhost:9430/data/test",
method: "POST",
delegate: true,
Expand Down

0 comments on commit 769e2c1

Please sign in to comment.