Created
February 27, 2018 02:55
-
-
Save eazyorganizer/94762c26a07bcbbacd41a36bc483f084 to your computer and use it in GitHub Desktop.
vaadin grid html api
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.js | |
customElements.whenDefined('vaadin-grid').then(_ => { | |
const grid = document.querySelector('vaadin-grid'); | |
console.dir(grid); | |
grid.dataProvide = (params, callback) => { | |
fetch('http://url'). | |
then(response => response.json()).then ( | |
json => callback(json, json.lenth)); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment