All Answers

0 votes

Hi Arturo,

Are you still having this issue in the latest Wisej build?

Let me know.

Best regards,

Levie

0 votes

Hi Gabriele,

Are you still having this issue?

Let me know.

Best regards,

Levie

0 votes
In reply to: Migration to 2.0

Hi,

Are you still having this issue?

Did you reset the ToolBox components and readd the components from Wisej.Framework.dll?

Let me know!

Best regards,

Levie

0 votes

Are you still having this issue after updating to the latest version of Wisej?  Let me know!

Best regards,

Levie

0 votes
In reply to: Sqlite and wisej

I think you need to add System.Data to your project. Wisej has nothing to do with how .NET works. It’s a .NET library. If your setup works without Wisej it also works with Wisej.

  • Luca answered May 28, 2019 - 6:47 pm
0 votes

Let me know if you’re still having issues with this.

Best regards,

Levie

0 votes

Hi Edmond,

Let me know if you still have issues after updating to the latest release.

Best regards,

Levie

0 votes

Hi Gabriele,

This issue should be fixed.  Let me know if you still have issues after updating to the latest release.

Best regards,
Levie

0 votes

Hi Levie,

I see an interface so cool. Do you have an example like it?

Best regards,

0 votes

1. We don’t use the AspNet session. AspNet session uses cookies and cannot be isolated by browser tabs. It doesn’t fire any event when it is about to expire. It’s not dynamic. It’s unsafe.

Wisej session cannot be spoofed. It doesn’t use cookies. Cannot be shared between tabs. It’s dynamic. If you are trying to use the same Wisej session in different tabs it will not work by design.

 

2. You cannot redirect from “/“ to “/“. It’s the same URL. You are confusing the Load event in Aspnet with the Load event in Wisej. It has nothing to do with the browser load or reload.

Wisej is not Aspnet and Wisej pages are not aspnet pages.

if you put together a small sample showing what you are trying to do we may be able to help you further.

  • Luca answered May 28, 2019 - 12:31 pm
0 votes

Hi,

This should be fixed in the latest release.  Let me know if you still have issues after updating.

0 votes

Hi Carl,

These issues should be fixed with the latest release of Wisej.  Please let me know if you still have issues with the templates after updating.

Best regards,

Levie

0 votes

Hi,

Thanks for sharing!  We have components that can give you a similar experience as the DockingPanel.  DockingPanel doesn’t work great on the web, but check out the collapsible panels, docking, and ability to move/resize these windows/components.  You can create a pretty sleek and responsive interface.

Best regards,

Levie

0 votes

See attached.

I added a sample function to your IFramePanel1 control using the JavaScript component extender:

 

this.setValue = function(value, id)
{
    debugger;
    
    var frameDoc = this.getDocument();
    if (!frameDoc)
    {
        this.addListenerOnce("load", function(e){
            this.setValue(value, id);
        });
    }
    else
    {
        var el = frameDoc.getElementById(id);
        if (el)
            el.innerText = value;
    }
}

Then you can call this.iFramePanel1.Call(“setValue”, “value”, “id”);

This is relatively easy because Wisej exposes a lot of functionality. Otherwise with plain vanilla javascript it becomes quite messy. You need to consider that the iframe is not loaded instantaneously, that the elements may not be there, etc.

 

 

  • Luca answered May 19, 2019 - 7:57 pm
  • last active May 28, 2019 - 12:40 am
0 votes
In reply to: Sqlite and wisej

Luca,

I have installed System.Data.SQLite.Core and System.Data.SQLite from the nuget.org but i get the same errors. Can you please advise?

 

 

 

 

0 votes
In reply to: Sqlite and wisej

You have missing references. It’s not a Wisej related issue. I suggest you use nuget to get the correct sqlite installation.

  • Luca answered May 27, 2019 - 7:04 pm
0 votes

Hi Frank,

In 2.0.28 the Tool icon is performing autohide, but the Leave Event still isn’t firing.

Using the Tool icon allows to make a workaround it until you fix.

The DataRepeater control looks good and is fluid.

When available, I will give it a try to see if it increase the fluidity of the current Listview,  hyper-loaded with hundreds of controls per row.

Regards.

0 votes

All solved installing the new release 2.0.28

0 votes

Solved installing the new release 2.0.28

0 votes

Glenn,

the fix is included in the latest Wisej release (2.0.28).

Best regards
Frank

Showing 5901 - 5920 of 11k results