When clicking on the value for property "value", the other editors stop working. This is only the case for lowercase "value".

Same issue for all recent Ext.js versions 4 & 5


Is this a forbidden property in a propertygrid?



Code:



Ext.application({
name : 'Fiddle',

launch : function() {
Ext.create('Ext.grid.property.Grid', {
width: 300,
renderTo: Ext.getBody(),
source: {
"value": "My Object",
"Created": Ext.Date.parse('10/15/2006', 'm/d/Y'),
"Available": false,
"Version": 0.01
}
});
}
});