Hi there,
I found an issue with skuid version 11.2.8 that model definition/model is not cleared after going to different page.
The scenario is we have a container page called Navigator. In Navigator, we have a page include with id main-include.
We use javascript to change skuid page for the page include (main-include) like this.
var $ = skuid.$;
var pageName = ‘shared_task_list’; // we switch this page based on the
//record/view dynamically. E.g. if you click on a task
//subject link we navigate to task view page by //switching pageName to task_basics_view.
var include = $(‘#main-include’);
var includeObj = include.data(‘object’);
includeObj.pagename = pageName;
includeObj.objecttype = ‘’;
includeObj.querystring = queryString; includeObj.load();```
This is all good about switching the page. However, I can still access the model ‘Shared_Tasks’ of page shared_task_list even after navigating to task_basics_view page which contains only ‘Task’ model. Is this expected behaviour?
Thank you.
Gyan