MuratCorlu
27 Aug 2008, 9:00 AM
var liste = new Ext.grid.EditorGridPanel({
columns: [
{header:"Date", sortable: true, dataIndex:'date', editor: new Ext.form.DateField({
format: 'd/m/Y',
minValue: '01/01/08'
})
},
........
I'm trying to show a EditorGridPanel that have a column with dateformat. But when I doubleclick this cell, I get an error from Air like this:
line: 5948
message: Adobe AIR runtime security violation for JavaScript code in the application security sandbox (eval)
sourceURL: app:/js/ext/ext-all-debug.js
I red some documents about Air security sandboxes and restrictions and using eval. But I can't find any solution about this problem. What can I do to solve this security problem?
columns: [
{header:"Date", sortable: true, dataIndex:'date', editor: new Ext.form.DateField({
format: 'd/m/Y',
minValue: '01/01/08'
})
},
........
I'm trying to show a EditorGridPanel that have a column with dateformat. But when I doubleclick this cell, I get an error from Air like this:
line: 5948
message: Adobe AIR runtime security violation for JavaScript code in the application security sandbox (eval)
sourceURL: app:/js/ext/ext-all-debug.js
I red some documents about Air security sandboxes and restrictions and using eval. But I can't find any solution about this problem. What can I do to solve this security problem?