I have a component which has an input type specified under the HTML propertie so that it renders like an input type. But I have trouble geetting the value of the input type....
Component:
xtype: 'component',
html: {
html: '<input id=\'colorPickerBackground\' type=\'color\' onchange=\'myFunction()\' ></input>'
},
itemId: 'colorPicker',
listeners: {
afterrender: {
fn: me.onComponentAfterRender,
scope: me
}
}
On a certain Ext.js event I want to get the value of the input type inside html??