I am new to ext4.x, and currently I use the MVC structure of extjs ,and I used the associations in the model, then the issue is how to retrieve the associations data by using store?
then VIEW:
Ext.define('CAS.reportingAdmin.view.parameter.ReportParameter', {
extend : 'Ext.grid.Panel',
alias : 'widget.reportparameter',
title : 'Parameter List',
so in the view level , I can get the report store correctly, but that's not I want to display , actually I only want to display the reportParameter (which is the association part of report), so I need to parse the retrieved store and only get the parameter content of the store data and then display to the page, so how to this action?
Sounds like you aren't wanting to use associations. You could use mapping config in the field of the model to grab nested data and make it available to the top level record.