All Answers

0 votes

Thanks for the reply. I’ve tried to create a test project which I can share but ofcourse in that project it worked.

I updated the nuget package for the tinyEditor to 2.5.22 (from 2.5.21) and now it works! I did not test this on the other extended editors like MCE etc.

Anyway, updating to 2.5.22 resolved my issue!

Thanks

Vincent

  • Vincent answered Jan 4, 2022 - 6:43 am
0 votes

Hi Page,

Thanks for reporting, it already fixed and next release will be deployed small later in this week.

Happy coding and Best wishes,

Kevin (ITG)

  • Kevin answered Jan 3, 2022 - 10:12 pm
0 votes

Drag & drop between apps is managed by the OS not by the browser. All Wisej can do is put text or an image in the browser’s clipboard.

  • Luca answered Jan 3, 2022 - 8:56 pm
0 votes
In reply to: Rest API

You have to tell ASP.NET WebApi (or Nancy – which is abandoned now) to ignore *.wx requests. Otherwise their api router takes over. With ASP.NET WebApi simply add this to RouteConfig.RegisterRoutes:

public static void RegisterRoutes(RouteCollection routes)
{
  routes.IgnoreRoute("{*.wx}");  // <-  ADD THIS
  routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

  routes.MapRoute(
     name: "Default",
     url: "{controller}/{action}/{id}",
     defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
  );
 }

 

  • Luca answered Jan 3, 2022 - 8:55 pm
0 votes

Hi Vicent

do you refer that code as like in the pic below is not working for you?

Im testing with ver 2.5.22.1 and works ok

If I misunderstand you, please attach us a runnable sample taht reproduce the issue

 

Regards

  • Paul answered Jan 3, 2022 - 5:07 pm
0 votes

 

Andrew

Thanks for reporting

We adding this issue to our backlog

regards

  • Paul answered Jan 3, 2022 - 4:35 pm
0 votes

Hi
Please, comment us what version of Wisej are you using

Regards

  • Paul answered Jan 3, 2022 - 1:40 pm
0 votes

Hi

We have tested the timepicker, but can’t reproduce the bad functionality

Can You please attach or send a little sample with the issue case?

I attach a little video sample

 

Regards

  • Paul answered Dec 30, 2021 - 12:05 pm
  • last active Dec 30, 2021 - 12:06 pm
0 votes

Hi Jevaso,

There’s an easy workaround for the HtmlPanel for .21.

You can wrap the HTML in a <div style=”overflow:hidden”> </div> .

The issue is that with some certain HTML elements have implicit margins, like the <h1> tag, for example, that is transferred to the containing div unless the div has overflow:hidden or any padding or any border.

It’s a bug that’s found in almost all browsers.

HTH,
Alaa

0 votes

Should be ok now.

  • Luca answered Dec 29, 2021 - 5:14 am
0 votes

Looks like you mixed a very old version of Wisej with a newer version of the FullCalendar extension.

  • Luca answered Dec 28, 2021 - 10:36 pm
0 votes

We need to know what IP is blocked. Clearly this one is working otherwise you wouldn’t be able to post here.

  • Luca answered Dec 28, 2021 - 10:35 pm
0 votes

Yes the color (text and background) set by code is preserved bu design. We have an enhancement request logged to optionally override the colors with the selection theme color but there is no implementation plan yet. We have a workaround but it’s not easy to use and not complete.

  • Luca answered Dec 28, 2021 - 5:54 pm
0 votes

As a follow on question, I use FormatDateTime in my vb desktop app as it responds to the local date format of the computer.  How can I handle local date formatting with Wisej?  This has proven to be a problem in previous apps since many of my users are from Europe and Australia and one of the key dates I display is an expiration date.  It’s no problem internally in the app but it does create some unnecessary support requests.

0 votes

Hi,

I am currently using Version 2.5.16.

I am assuming i would need by programming condition as I am trying to change the color on Mouse Hover and reset on leave.  But open to which way it can work.

Thanks.

0 votes

Hi,

Can you please check dev tools in the browser to see if you get any errors?

Thanks,

Levie

0 votes

Hi Levie,

Unfortunately, this is not what I’m looking for. I know how to manage Certificate and sign document in my Desktop App. In order to sign a document you need a key pair (public key and private key). Normally people use X509 certificate to keep their key pairs and the key owner’s info.

X509 certificate can be read from a file (1), from User Certificate Store (2) or from HSM server (3). In desktop application, there is no problem at all to retrieve a certificate, where ever they are stored.

But from web browser, only (1) and (3) is easy. (2) is difficult may be due to security reason.

I forgot that I asked this question 4 years ago on this forum in this ticket. Tiago and Frank suggested with some idea, which I currently use in production.

There is one issue that I always want to improve : Current solution requires users to download a small desktop module for signing. This module listen on a RabbitMQ server for any needed to sign document sent from browser.

So, my question is: after 4 years, is there any improvement in Browser API, which allows user to select a Certificate from User Certificate Store on the client machine directly.  4 years ago I though reading clipboard on client machine and send to server is impossible, and now it is easy with Wisej.

 

 

 

 

TRANSLATE with
COPY THE URL BELOW
Back

EMBED THE SNIPPET BELOW IN YOUR SITE
Enable collaborative features and customize widget: Bing Webmaster Portal

// <![CDATA[
var intervalId = setInterval(function () { if (MtPopUpList) { LanguageMenu = new MtPopUpList(); var langMenu = document.getElementById(LanguageMenu_popupid); var origLangDiv = document.createElement("div"); origLangDiv.id = "OriginalLanguageDiv"; origLangDiv.innerHTML = "ORIGINAL: “; langMenu.appendChild(origLangDiv); LanguageMenu.Init(‘LanguageMenu’, LanguageMenu_keys, LanguageMenu_values, LanguageMenu_callback, LanguageMenu_popupid); window[“LanguageMenu”] = LanguageMenu; clearInterval(intervalId); } }, 1);
// ]]>

  • Tung Ngo answered Dec 23, 2021 - 1:27 am
  • last active Dec 23, 2021 - 1:30 am
0 votes

Hi Darren,

Wisej is a Single Page Application (SPA) web framework and all Wisej applications run on a server.

Wisej is the most convenient web framework for desktop developers that want to migrate their existing desktop applications (or build new ones) as a cross-platform web-enabled solution.

 

It’s important to understand the difference between desktop applications (run on your desktop, accessible only from that computer) and web applications (run in the browser, cross-platform, available anywhere). Wisej is not a solution for building desktop applications.

I would encourage you to pursue Wisej as a technology for building modern, cross-platform web applications with long-term support.

If you need a “crash-course” in Wisej, feel free to reach out to sales AT Wisej DOT com and ask about a Wisej training package. We would be more than happy to assist.

You also have many free resources available, check these out:

docs.wisej.com

github.com/iceteagroup

HTH,

Levie

  • Levie (ITG) answered Dec 22, 2021 - 6:38 pm
  • last active Dec 22, 2021 - 6:39 pm
0 votes

Hi Tung,

Is this what you’re looking for? https://stackoverflow.com/questions/35898908/sign-a-file-with-a-x509certificate2-and-private-key. You can use the Upload control or the ClientFileSystem extension to retrieve the X509 certificate from the client.

HTH,

Levie

0 votes
In reply to: accordion sizing issue

Hi Shawn,

In addition to Kevin’s answer,

The Client Profiles at the bottom of the designer are used as a way to style the application for any given client device. The client profile matches the user-agent and browser specifications of the client-device.

You can find more information on custom client profiles here: https://docs.wisej.com/docs/controls/general/responsive-properties,

When you click one of the options (i.e. Phone), you can change any control’s property for that specific device. Responsive properties have a “Responsive” icon (attached image, see the red highlights):

You can also find a sample here: https://github.com/iceteagroup/wisej-examples/tree/2.5/Responsive.

If anything is unclear, please let me know!

Happy Holidays!

Levie

  • Levie (ITG) answered Dec 22, 2021 - 6:18 pm
  • last active Dec 22, 2021 - 6:20 pm
Showing 2961 - 2980 of 11k results