Hi Muhammed,
WJ-8554 is fixed in Wisej release 1.4.50.
Best regards
Frank
Hi Wilfred,
the bug was logged as WJ-8556 and a fix is included in Wisej release 1.4.50.
Best regards
Frank
Hi Dino,
this problem was logged as WJ-8557 and is now fixed in Wisej release 1.4.50.
Best regards
Frank
Hi Matthew,
enhancement WJ-8561 is also added in Wisej release 1.4.50.
Best regards
Frank
Hi Matthew,
WJ-8566 and WJ-8567 are fixed in the latest Wisej release (1.4.50).
Best regards
Frank
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
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
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.
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
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
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
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
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.
Thanks Andrew.
Have logged WJ-8575 for this variation of WJ-7615. We´ll inform you when it´s done.
Best regards
Frank
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
By the way… a very simple chat application is available in our sample code section:
https://wisej.com/examples/
By the way… a very simple chat application is available in our sample code section:
https://wisej.com/examples/
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:
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:
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:
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
