You can use Ext.ComponentQuery.querythat takes a comma separated list and returns a Composite collection that you can list.
Or you can use the request method directly on your object.
this.getDetalleItem().query('#detalleItemDescription','#second','#third').each(function(item) { item.setData(record.data) }) ;
source
share