Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. var small_film_set = [
  2. { id:1, title:"The Shawshank Redemption", year:1994, votes:678790, rating:9.2, rank:1, category:"Thriller"},
  3. { id:2, title:"The Godfather", year:1972, votes:511495, rating:9.2, rank:2, category:"Crime"},
  4. { id:3, title:"The Godfather: Part II", year:1974, votes:319352, rating:9.0, rank:3, category:"Crime"},
  5. { id:4, title:"The Good, the Bad and the Ugly", year:1966, votes:213030, rating:8.9, rank:4, category:"Western"},
  6. { id:5, title:"Pulp fiction", year:1994, votes:533848, rating:8.9, rank:5, category:"Crime"},
  7. { id:6, title:"12 Angry Men", year:1957, votes:164558, rating:8.9, rank:6, category:"Western"}
  8. ];
  9.  
  10. webix.ready(function(){
  11. if ( webix.env.touch ){ // if touch device is detected
  12. webix.Touch.limit(true);
  13. };
  14.  
  15. webix.ui({
  16. rows:[
  17. { type:"header", template:"Preview" },
  18. { template:"You can write any code here" },
  19. { view:"resizer" },
  20. {
  21. view:"datatable",
  22. id: "test",
  23. autoConfig:true,
  24. data: small_film_set,
  25. select: true,
  26. editable: true
  27. },
  28. { view: "button", value: "Fullscreen", click: function() {
  29. let elem = $$("test").getNode();
  30. elem.webkitRequestFullscreen();
  31. }}
  32. ]
  33. })
  34. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement