Hi
It is easily doable via routes.
However, if you don’t know how routes work in the SugarCRM then we recommend you to read out the Sugar Developer’s guide on User interface and routes. I’ve attached the link below.
For the quotes module, you'll find a custom route that redirects the create view to a full-screen page instead:
The Quotes module uses a custom route that allows it to open on the full page when open the create view.
As mentioned below
modules/Quotes/clients/base/routes/routes.js
var routes = [{
name: 'quotesCompatibility',
route: 'Quotes/create',
callback: function() {
app.router.record('Quotes', 'create');
}
}];
app.router.addRoutes(routes);
Hi
It is easily doable via routes.
However, if you don’t know how routes work in the SugarCRM then we recommend you to read out the Sugar Developer’s guide on User interface and routes. I’ve attached the link below.
For the quotes module, you'll find a custom route that redirects the create view to a full-screen page instead:
The Quotes module uses a custom route that allows it to open on the full page when open the create view.
As mentioned below
modules/Quotes/clients/base/routes/routes.js
var routes = [{
name: 'quotesCompatibility',
route: 'Quotes/create',
callback: function() {
app.router.record('Quotes', 'create');
}
}];
app.router.addRoutes(routes);