Skip to content

Instantly share code, notes, and snippets.

@eazyorganizer
Created February 27, 2018 02:55
Show Gist options
  • Save eazyorganizer/94762c26a07bcbbacd41a36bc483f084 to your computer and use it in GitHub Desktop.
Save eazyorganizer/94762c26a07bcbbacd41a36bc483f084 to your computer and use it in GitHub Desktop.
vaadin grid html api
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