back to top

Prevent Navigating Back to a Parent Page when a Child Page is Saved in Creatio (formerly bpm’online)

In bpm’online, you might have noticed, that often you’ll create some child record and upon saving, you’re returned to the parent page. For example, you’re looking at an account page, you click the “+” button on the case detail to add a case for the account, the case page opens to fill out the case details, and when you save you are returned to the account. This behavior makes sense, but there might be certain sections when you don’t want it to work this way. You might want the user to stay, and not return to the parent page when you save.

This behavior can be changed. To do this, we’ll override the save method on our page code. We can intercept and change the page’s config before passing it off to the base page’s save method. The setting in the config we need to change is called “isSilent” and we simply need to set this to true to not use this out of the box behavior for our page.

// override save on page
save: function(config) {
    //modify isSilent
    config = Ext.apply(config || {}, {
        isSilent: true
    });
    //now call the parent save method and provide config
    this.callParent([config]);
}

That is it, now the user will no longer navigate back to the parent when the page is saved.

Contact Customer FX for your CRM project
We let our expertise speak for itself - let us know how our all-star team can help on your CRM project
About the Author
Ryan Farley
Ryan Farleyhttps://customerfx.com/article/author/ryanfarley/
Ryan Farley is the Director of Development for Customer FX and creator of slxdeveloper.com. He's been blogging regularly about SalesLogix, now Infor CRM, since 2001 and believes in sharing with the community. His new passion for CRM is Creatio, formerly bpm'online. He loves C#, Javascript, web development, open source, and Linux. He also loves his hobby as an amateur filmmaker.

1 COMMENT

  1. Hi Ryan

    In relation to above. I have a process which adds an Order based on an Opportunity. The final element is that it Opens the new Order (Open Edit Page) and the user has to Save it. Currently it takes you back to the Opportunity but I want it to just save and stay on edit page (completing the process). I added your code but when clicking save it does not do anything and process remains on the Open Edit Page. Does it behave differently in a business process?

LEAVE A REPLY

Please enter your comment!
Please enter your name here

AI Readiness Checklist for CRM Teams: Is Your CRM System Ready for AI?

Before using AI in Creatio, make sure your CRM data, users, processes, and automation foundation are ready. Use this practical AI readiness checklist for CRM teams.

Build Your Creatio AI Skills with the 2026 AI Summer Program

Join Creatio’s free 2026 AI Summer Program to learn how to identify, build, deploy, and manage AI agents.

Creatio 10x Is Coming: Join the Webinar to Explore the Future of AI-Native CRM

Learn what's new in Creatio 10x and how AI-native CRM, agentic AI, and no-code automation are shaping the future of customer relationship management. Join the upcoming webinar and discover what's next.

Creatio Unlimited Pricing Explained: AI Packages, Costs, Pros & Cons

Learn what Creatio’s new Unlimited pricing model includes, what it doesn’t include, how AI Action packages work, and the pros and cons for businesses evaluating Creatio.

Using the AI Prompt to Create Dynamic Folders in Creatio

Using Creatio's AI prompt to create the filter for a dynamic folder works best if you specifically ask for that, and if you are as clear and direct as possible about the filtering, conditions.

Related Articles

AI Readiness Checklist for CRM Teams: Is Your CRM System Ready for AI?

Before using AI in Creatio, make sure your CRM data, users, processes, and automation foundation are ready. Use this practical AI readiness checklist for CRM teams.

Build Your Creatio AI Skills with the 2026 AI Summer Program

Join Creatio’s free 2026 AI Summer Program to learn how to identify, build, deploy, and manage AI agents.

Creatio 10x Is Coming: Join the Webinar to Explore the Future of AI-Native CRM

Learn what's new in Creatio 10x and how AI-native CRM, agentic AI, and no-code automation are shaping the future of customer relationship management. Join the upcoming webinar and discover what's next.

Creatio Unlimited Pricing Explained: AI Packages, Costs, Pros & Cons

Learn what Creatio’s new Unlimited pricing model includes, what it doesn’t include, how AI Action packages work, and the pros and cons for businesses evaluating Creatio.

Related Videos