1
我有一個表單,我點擊新的字段添加。 http://jsfiddle.net/Zb8DV/
用戶可以添加他的輸入並點擊保存。
我想要onsave事件來存儲cookie中的狀態。
下一次當他進入表單時,我想要加載狀態,生成字段將上次輸入表單時的值放入。
所以,如果你看看下面的表單: 你點擊「添加字段」,將會生成一個新的字段,添加字段並放入值之後,我想保存狀態並下次加載它...Extjs狀態管理器 - 從動態表單保存狀態
Ext.state.Manager.setProvider(new Ext.state.CookieProvider());
Ext.create('Ext.form.Panel', {
renderTo: Ext.getBody(),
width: 500,
bodyPadding: 10,
title: 'Stateful',
stateful : true,
stateId : "MyFormState",
items: [{
xtype: 'button',
text: 'add field',
count: 0,
handler: function() {
this.count += 1;
var me = this;
this.up("form").add([{
"xtype": 'textfield',
name: 'field' + me.count,
fieldLabel: 'field ' + me.count
}]);
}
}, {
xtype: 'button',
margin : '10 10 10 100',
text: 'Save form state on click here',
handler : function(){alert("how do I load the panel with the state saved in cookie??")}
}],
});
+1優秀!你能告訴我是否可以在狀態下保存文本框嗎? (我不會在cookie上做到這一點( - :) – SexyMF
你是什麼意思的「文本框」?文本框標籤? – Akatum
我的意思是,'form.add(value)',值是文本框內的值。不想再次構建表單,我想將textfield json保存在狀態管理器中。謝謝 – SexyMF