|
Rank: Member Groups: Registered
Joined: 7/15/2010(UTC) Posts: 12 Location: Canada
|
the following is the code that call the method (net to the url att), where "join" is the controller name and "GetActivitiesLevel" is the method name. Code: ActivityLevelStore = Ext.extend(Ext.data.JsonStore, { constructor: function (cfg) { cfg = cfg || {}; ActivityLevelStore.superclass.constructor.call(this, Ext.apply({ storeId: 'MyStore', url: 'join/GetActivitiesLevel/', baseParams: { LanguageId: "1" }, fields: [ { name: 'Key' }, { name: 'Value' } ] }, cfg)); } });
Do I need to change that ? Thanks, El
|