All Answers

0 votes

Hi Luca,

Any progress on this? I.e. creation of a “CaptionedTextBox” inheriting from TextBox (or more generally from Control??) and having the additional two controls (label and subtitle) attached to /bundled with it? I can’t see any easy way to do it, but you know better!!

Best,
Alex

1 vote

I solve the issue about the scrolling.

I insert the touchstart  event on my control (I did not write a code inside on the event) and the scrolling now is smooth

We keep going !!!!!!!!!!!

 

0 votes
In reply to: Download error

Sorry for that.
I have now fixed the download link. Please try again.

Best regards
Frank

1 vote

Hi Vishal,

you need to remove the site you´re running Wisej from the list of sites for Compatibility Mode. See your screenshot:

ie

Best regards
Frank

0 votes

Dear Frank,

What are minimum settings required in IE settings which i should have to check.

Thanks in advance.

P Vishal

0 votes
In reply to: ReadOnly Propertie

Hi,

WJ-8266 is resolved completely in Wisej development build 1.4.41.

Best regards
Frank

0 votes
In reply to: Some suggestions

Hi Mariano,

read-only property has been added to all relevant components.
It´s included in Wisej development build 1.4.41.

Best regards
Frank

0 votes

Hi Matthew,

WJ-8533 is fixed and included in Wisej development build 1.4.41.

Best regards
Frank

0 votes

Hi Andrew,

WJ-8534 is fixed and available in development build 1.4.41.

Best regards
Frank

0 votes
In reply to: Browser user-agent?

Hi Andrew,

WJ-8536 is also fixed in 1.4.41. Application.UserAgent etc. are available again.

Best regards
Frank

0 votes

Hi Andrew,

the fix for WJ-8540 is included in the latest development build (1.4.41).

Best regards
Frank

0 votes

Hi Vishal,

there is no limit in functionality for the trial version.
From your description I assume that your IE is running in compatibility mode for specific domain(s).
Try to check your IE settings, this should resolve the problem.

Best regards
Frank

0 votes

Dear Frank,

One thing i have to mention that, i am using trial version.

Is there any licensing issue..?, coz,     <add key=”Wisej.LicenseKey” value=””/>

Please help.

Thanking you,

P Vishal

0 votes

Dear Frank,

One thing i observed that, if i use Local Internet Explorer of IIS where application service is deployed then it is working, but when i used to access the same service within network then it throws the “Object doesn’t support property or method ‘addEventListener’” error.

One more thing i have to mention that, the same service is working with Microsoft Edge, Firefox, Chrome etc.

Please help.

Thanks in advance.

P Vishal

 

0 votes

Hi Luca,

I use Android Mobile with Chrome Browser.

I filling a FlowLayoutpanel with labels, actualy i can scroll the list of the labels but one every time where i touch the screen, if is posible i want to scroll the list with one touch.

I tryied with all ways (panel, listview, datagridview, flowlayoutpanel) the scrolling was not Smooth

Before find your product, i was using the wgx (webgui) and the scrolling was Smooth as native android application, but, as you know, the wgx was withdraw from the market, I hope you do not do the same with you.

My opinion is : it is exquisite for pc browsers but is not the same on mobiles and tablets browsers.

I am convinced that your product covers me, and I intend to proceed to buy, in the next days.

  • Nikos Tzilivakis answered Oct 26, 2017 - 7:28 pm
  • last active Oct 26, 2017 - 7:29 pm
0 votes

You can use Nancy. And if you need to retrieve the state (Nancy is stateless) you can use Application.RestoreSession(HttpContext.Current); See sample below:

public class SampleModule : Nancy.NancyModule
{
public SampleModule()
{
Get[“/products/{id}”] = args =>
{
Application.RestoreSession(HttpContext.Current);
Application.OpenForms[“Window1”].Text = “Hello from Nancy!”;

return “Hello World!”;
};
}
}

This is web.config:

<handlers>
  <add name="wisej" verb="*" path="*.wx" type="Wisej.Core.HttpHandler, Wisej.Core" />
  <add name="Nancy" verb="*" path="*" type="Nancy.Hosting.Aspnet.NancyHttpRequestHandler" />
 </handlers>

And of course make sure that “/” is not a route.

 

  • Luca answered Oct 26, 2017 - 6:34 pm
0 votes

Yes translates adds an offset. So if the top is 50px and you use translateY 50px the element will be at 100px. I attached an example using two techniques, one using the animation and the the using css.

Remember that translate doesn’t change the location value, so if you want to keep moving it you have to update the location as I did in the example.

  • Luca answered Oct 26, 2017 - 4:58 pm
0 votes

I see. I think that the dev build .37 had a problem with keypress, in chrome press F12 you should see an error in the console. That is probably what you get, it’s fixed in newer dev builds (not uploaded yet).

  • Luca answered Oct 26, 2017 - 4:54 pm
0 votes

IE11 supports addEventListener. Only IE <9 doesn’t. You either have IE11 in compatibility mode to act like IE8 or it’s in a child control which usually reverts to IE7. Wisej supports IE10 and up.

https://www.w3schools.com/jsref/met_element_addeventlistener.asp

  • Luca answered Oct 26, 2017 - 4:49 pm
  • last active Oct 26, 2017 - 4:49 pm
0 votes

We don’t use getPreventDefault. The browserLink SignalR thing that you see is from Visual Studio and SignalR, not related to Wisej.

The appearance warning are normal and expected to be there.

See: browserLink

  • Luca answered Oct 26, 2017 - 4:46 pm
  • last active Oct 26, 2017 - 4:47 pm
Showing 8221 - 8240 of 11k results