XCheckbox — A nicer checkbox always submitting configurable values — Ext JS Forums
8 октября 2009
Нет комментариев
var tabPanel = new Ext.TabPanel({
items: [...],
listeners: {
beforeremove: function (container, component) {
if (!component.allowRemove) {
Ext.MessageBox.confirm('Confirm Action', 'Message', function (btn) {
if (btn == 'yes') {
component.allowRemove = true;
container.remove(component);
}
},
this);
return false;
}
}
}
});
Плагин позволяющий использовать metadata для конфигурирования полей хранилища
Dynamic Grid Panel for Ext JS | ExtJS | Erhan is typing….