I have already develop ExtJS application that application has more than 200 grids.
Some of grid have <> like HTML. My grid can't view HTML So i change Server side function(common get function) as htmlspecialchars($value, ENT_QUOTES);
After that grid can view HTML value like
problem is when rowediting mode view value as encode value(<start
)
note: this happen every form, grid-rowediting,
i try to override every input filed as answer but that is not work for me
launch: function() {
panel = Ext.create('me_project.view.me_panel', {renderTo: 'form'});
Ext.override(Ext.form.field.Base, {
setValue: function(val) {
val = Ext.util.Format.htmlDecode(val);
return this.callParent([val]);
}
});
}