All Answers

0 votes
In reply to: Chart Problem

Hi Muhammed,

WJ-8554 is fixed in Wisej release 1.4.50.

Best regards
Frank

0 votes

Hi Wilfred,

the bug was logged as WJ-8556 and a fix is included in Wisej release 1.4.50.

Best regards
Frank

0 votes

Hi Dino,

this problem was logged as WJ-8557 and is now fixed in Wisej release 1.4.50.

Best regards
Frank

0 votes
In reply to: Question on Cookies

Hi Matthew,

enhancement WJ-8561 is also added in Wisej release 1.4.50.

Best regards
Frank

0 votes

Hi Matthew,

WJ-8566 and WJ-8567 are fixed in the latest Wisej release (1.4.50).

Best regards
Frank

0 votes

Thanks, that works.  Some code like this can be used for multiple panels on the same form:

Private Sub Panel1_Click(sender As Object, e As EventArgs) Handles Panel1.Click, Panel2.Click, Panel3.Click, Panel4.Click, Panel5.Click

If boolEnableSingleClickPanels Then
Dim boolHeaderClicked As Boolean = TryCast(sender, Wisej.Web.Panel).PointToClient(Control.MousePosition).Y < 0
If boolHeaderClicked Then TryCast(sender, Wisej.Web.Panel).Collapsed = Not TryCast(sender, Wisej.Web.Panel).Collapsed
End If

End sub

0 votes

The default session manager uses The HttpRuntime.Cache instance which in turn returns System.Web.Caching.Cache  which is probably enumerable. But I don’t think you can retrieve the time left. You can certainly retrieve a Wisej session, which is IDisposable, and dispose it.

You can also install a custom session manager and track everything you need, see attachment and comment here: https://wisej.com/support/question/sessiontimeout

 

 

  • Luca answered Nov 15, 2017 - 7:45 pm
1 vote

Wisej.onNetworkError handles only network problems which are detected on the client: if there is a network problem it cannot be notified by the server.

Wisej.onException handles all exceptions coming from the server for any reason. When the exception is InvalidSession there is an additional property invalidSession. Example:

Wisej.onException = function(ex) {
   if (ex.invalidSession) {
         // reload, this may lead to a never ending reload loop.
        location.reload()
   }
   else {
      Wisej.Core.showException(ex);
   }

}

You can inspect ex to see the other fields: message, exception, stackTrace.

 

  • Luca answered Nov 15, 2017 - 6:43 pm
0 votes

Hi Steve,

I have contacted you directly to check this issue as it might have been fixed already in our latest build (not yet published).

Best regards
Frank

0 votes

Hi Frank, found the solution for this.
i forgot to add this in the web.config

<assemblies>
<add assembly=”Stimulsoft.Report.MobileDesign, Version=2017.2.2.0, Culture=neutral, PublicKeyToken=ebe6666cba19647a”/>
</assemblies>

<modules>
<add name=”Wisej” type=”Wisej.Core.HttpModule, Wisej.Core”/>
<add name=”WisejAspNetControl” type=”Wisej.Web.Ext.AspNetControl.HttpModule, Wisej.Web.Ext.AspNetControl” />
</modules>

Thanks!!

Orel

0 votes

Hi Orel,

just checked and the events are firing ok here.
Can you please share some more details ? What Wisej version are you using ?
Which events did you try ?

Thanks in advance.

Best regards
Frank

0 votes

Hi Thomas,

I’ve checked your example and its working very nice.

there is a problem while firing Events  , its seems not working..

in the OnInit method there are some events attach , but they are not firing..

any Idea?

 

Thanks

Orel

0 votes

You can set the AutoShow property to Never (otherwise the single click will auto show the panel) and then set Collapsed to true|false in the Click, Tap or MouseClick. Check the location of the click in case the panel is expanded using the Control.MousePosition global property.

  • Luca answered Nov 13, 2017 - 7:29 pm
0 votes

Thanks Andrew.

Have logged WJ-8575 for this variation of WJ-7615. We´ll inform you when it´s done.

Best regards
Frank

0 votes
In reply to: Beta Updates

The beta period was closed some time ago. Wisej is available for production use.

You can use the Download section to access current builds and further resources.

Best wishes
Thomas

0 votes

By the way… a very simple chat application is available in our sample code section:
https://wisej.com/examples/

0 votes

By the way… a very simple chat application is available in our sample code section:
https://wisej.com/examples/

1 vote

It’s been some time since the question was answered. In the meantime, Wisej has advanced and is used in production by a number of organizations worldwide to realize impressive line of business applications. Visual WebGUI code can be easily ported to Wisej and will benefit from its advantages on stability, performance, and extensions.

In order to get started, take a look at the following resources:

2 votes

It’s been some time since the question was answered. In the meantime, Wisej has advanced and is used in production by a number of organizations worldwide to realize huge line of business applications. Visual WebGUI code can be easily ported to Wisej and will benefit from its advantages on stability, performance, and extensions.

In order to get started, take a look at the following resources:

 

  • Thomas (ITG) answered Nov 12, 2017 - 6:56 am
  • last active Nov 12, 2017 - 6:57 am
1 vote
In reply to: Solved: App tour

Let me give you a short update on this:

The tour panel feature is one of the most advanced integrations for such functionality around. Perfect for enterprise-scale line of business applications. Here are some of the use cases that we had in mind when designing this extension:

  • visual release notes (explain changes in the user interface interactively)
  • tutorials and step-by-step guides to replace or extend documentation and help files
  • interactive software documentation – F1 button explains the concepts directly inside the current screen
  • software demonstrations to improve your sales cycle – instead of relying on personal presentations and webinars only, you can show core features interactively, giving your customers a hands-on guided walkthrough upfront for your web application

Everyone dislikes manuals and written documentation. Wisej allows you to extend your applications with cool interactivity, fully integrated and very easy to use. The following screencast demonstrates the feature: https://www.screencast.com/t/ZfyEkU1K

Showing 8161 - 8180 of 11k results