You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Bruno17 - I was looking at this and wondering if it's necessary to get the value via $smarty.request here (and in the updatedwindow.tpl file); can you just use the $window_id variable that's established in the main MIGX class's prepareGrid method (~ line 1558)?
When I try to configure a model, the "definition of data" model variable is not visible.
Error report :
console.log('window_id','
[2023-11-06 16:16:04] (ERROR @ core/components/migx/elements/tv/migx.tpl : 85)
console.log('window_id','{$smarty.request.window_id}'); {if array_key_exists('window_id',$smarty.request)} this.parent_window = '{$smarty.request.window_id}'; {/if}
fixed:
{if array_key_exists('window_id',$smarty.request)} console.log('window_id','{$smarty.request.window_id}'); this.parent_window = '{$smarty.request.window_id}'; {/if}
The text was updated successfully, but these errors were encountered: