Open in a new window in the application

0
0

As seen in the image, when I click the menu in the application, I want the window form to be opened in a new window as in the image.
my current code to open this window
JavaScript x = new JavaScript();

x.Eval(“var newWindow=window.parent.open(‘” + Url + @”‘,’_blank’, ‘status=1,toolbar=0,menubar=0,location=1,scrollbars=1,resizable=0’); new Window.document.title = ‘Fatura’;”);
This way, the application looks like it is running new and I cannot access my session values.

I will be glad if you can help me
Best regards

Attachment
  • You must to post comments
0
0

Hi Onur,

It’s not possible to share the session in Wisej.

Wisej will always create a new session whether it was in a new browser, new browser tab or a new browser window.

What you can do is that you can share the authentication data specific to your application as a cookie or as an argument to the URL, and from there you can specify which view you want to load by passing the information in the URL.

Hope this helps with your issue.

Best regards,
Alaa

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.