Hi Kart...,

The root cause of your issue is that your devexrtreme framework doesn't 
initialize your bank.create.controller on every view, only on the first 
view in a row. You can see this happening in your logs. you need to call 
your initialize on the onShowing event your ux library provides.
In this case you can see this if you put this in your bank.controller:


    $scope.popupOptions = {
      width: 600,
      height: 600,
      contentTemplate: "info",
      showTitle: true,
      title: "Create New Bank",
      dragEnabled: false,
      closeOnOutsideClick: true,
      onShowing: () => {console.log('init here!')},
      bindingOptions: {
        visible: "showPopup",
      }
    };

  You need to move some of your logic around to take care of this.

Regards
Sander

-- 
You received this message because you are subscribed to the Google Groups 
"Angular and AngularJS discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to