I have a bit of ext.js code that looks like:
items: [
{
xtype: 'textfield',
hidden: false,
fieldLabel: 'MyType',
inputId: 'MyType',
bind: {
value: '{MyType}'
}
}
]
On the page the text that's displayed is:
[object Object]
I can't figure out how to see what the properties of this object are.
In the console if I do a
document.getElementById('MyType').value.__proto__
I see:
String { "" }