Thanks for the reply.
The getmonth.php is not a controller. It’s just a PHP snippet that should return a string of HTML.
Is it possible to implement it like the action param in modExtra:
modExtra.grid.Items = function(config) {
config = config || {};
Ext.applyIf(config,{
id: 'modextra-grid-items'
,url: modExtra.config.connector_url
,baseParams: {
action: 'mgr/item/getlist'
}
or...
modExtra.window.CreateItem = function(config) {
config = config || {};
this.ident = config.ident || 'mecitem'+Ext.id();
Ext.applyIf(config,{
title: _('modextra.item_create')
,id: this.ident
,height: 150
,width: 475
,url: modExtra.config.connector_url
,action: 'mgr/item/create'
I tried that approach but in stead of the expected content I get some source code in the panel.
Is there a basic difference in handling a request from a form after clicking a submit (like the two examples above from modExtra) vs. requesting content via autoload?
Thanks again for your help.