Barney ruble | 32 | Male |
Fred flintstone | 33 | Male |
Betty ruble | 32 | Female |
Pebbles | one | Female |
Bamm bamm | 2 | Male |
<button id = "create-grid" type = "button"> Create grid </ button>
/ *! * Ext JS Library 3.0+ * Copyright (c) 2006-2009 Ext JS, LLC * licensing@extjs.com * http://www.extjs.com/license * / Ext.onReady (function () { // find the button var btn = Ext.get ("create-grid"); // button click handler btn.on ("click", function () { btn.dom.disabled = true; // create table var grid = new Ext.ux.grid.TableGrid ("the-table", {stripeRows: true}); grid.render (); // show the table }, false, { single: true }); // execute only once });
Source: https://habr.com/ru/post/73406/
All Articles