All Answers

0 votes

Hi Andrew,

for 2. you can find some pointers here:

https://wisej.com/support/question/readonly-property

Best regards
Frank

0 votes
In reply to: UserComboBox Issue

Hi Angelo,

can you please wrap up a test case so we can check the code and fix the problem or provide a work around ?

Thanks in advance !

Best regards
Frank

0 votes

Hi Johan,

Microsoft Office Viewer requires a public URL, that´s why the sample doesn´t work when run on localhost.

Best regards
Frank

0 votes

Hi Johann,

the sample was missing in Github. I just added it for Wisej 2.0:

https://github.com/iceteagroup/wisej-examples/tree/2.0/OfficeViewer

See it running online at http://demo.wisej.com/OfficeViewer

Hope that helps.

Best regards
Frank

0 votes

Thank you. It seems on Safari it is reliant on a user initiated action, and the click to show the form is too far removed: https://stackoverflow.com/questions/6287478/mobile-safari-autofocus-text-field

 

The .focus call is allowed from non-click actions if app is run from homescreen, or if a setting on the webview is set directly.

1 vote

Hi Simone,

we are working on that issue. The number for your reference is #1840.
I´ll keep you updated.

Best regards
Frank

0 votes

Hi Andrew,

 

I have spent many countless hours trying to find a way around this problem but to no avail.  iOS/Safari prevents this behavior, unfortunately.  If I find a way around it, I will let you know.

The closest solution I have found is to create a button and have that trigger the focus event (after clicking).

You can also experiment with JavaScript and using prompts to try to trigger the keyboard.  I’m attaching a screenshot of how to integrate JavaScript with your controls and get return values from them.  I know there is a lot of discussion about this issue on StackOverflow, you can try integrating them this way.

I hope this helps a little bit, it’s a difficult issue!  Please feel free to reach out if you have any other questions.

 

Best,

Levie

0 votes

Hi Andrew,

 

You can get the current X,Y position of the mouse in screen coordinates using the MousePosition property of the Control class and translate this into client coordinates using the PointToClient() method.

The millisecond duration of LongTap can be adjusted through JavaScript using the qx library.  Please see the screenshot attached to see an example of it!

The screenshot shows how to implement both of these features!  Please let me know if you have any more questions.

 

I hope this helps!

Best,

Levie

0 votes

Hi Mariano,

This problem is fixed in the upcoming development release. You can go ahead and update your projects when it comes out and they should be good to go! The update should be coming out pretty soon. Let me know if you have any other issues with the forms after that.

Best,

Levie

  • Levie (ITG) answered Mar 23, 2019 - 12:51 am
  • last active Mar 23, 2019 - 12:52 am
0 votes
In reply to: Strange issue

In chrome there  is no error but I think its just the response that is blank.

0 votes
In reply to: Visual Studio 2019

Hi Carl,

next build of Wisej will add VS 2019 installation option
that should include project / item templates and the toolbox items.

Hope that helps.

Best regards
Frank

0 votes
In reply to: Client profile sample

Hi Tim,

I have wrapped up a very basic sample with 2 buttons that show with icon and text
when run on the desktop and just with the icon on a phone.

You can try it here: http://demo.wisej.com/ResponsivePropertySample

Find the source code attached.
Please compare to your code and if it still fails, you can send your application/test case to
frankATiceteagroup.com so I can take a look.

Hope that helps.

Best regards
Frank

0 votes

Hi, no luck for now with the installation problem, meanwhile i use nuget package to upgrade wisej 2.0 version on my projects.

Is possible to send the log file of the installation process to ITG team? the log is generated for advanced installer software but no luck into their forums.

Thanks,

Mariano

  • Mariano answered Mar 21, 2019 - 3:14 pm
0 votes
In reply to: Strange issue

We don’t use XML at all. But I have found some reports that Firefox has this issue in some cases  https://ovinitech.blogspot.com/2019/01/xml-parsing-error-no-root-element-found.html

Do you see this on Firefox and Chrome? The “Source map error” and “unreachable code after return” are also Firefox bugs.

  • Luca answered Mar 21, 2019 - 2:58 pm
0 votes

Hi Mark,

thanks, I have logged this issue as #1838.
We´ll inform when it´s fixed.

Best regards
Frank

0 votes

Hi Andrew,

thanks for reporting that problem. However I cannot reproduce with the latest internal build.
What Wisej build are you using ? It might have been fixed in the meantime but I want to track it down
to make sure.

Best regards
Frank

0 votes
In reply to: Theme Graphite-3 Issue

Thanks, Mark.

The theme is fixed in GitHub and will be included in the next Wisej release.

Best regards
Frank

0 votes

A x64 machine Frank with SO 8.1 64bits.

Thanks.

  • Mariano answered Mar 18, 2019 - 6:26 pm
0 votes

Hi Frank,

No luck, i redownload and install as administrator 2.0.13 and same error.

i install versions 2.0.2, 2.0.4, 2.0.8, 2.0.9, 2.0.11 OK

but when try 2.0.12 or 2.0.13 give same “..error 110 attempting..”

Thanks,

Mariano

  • Mariano answered Mar 18, 2019 - 6:03 pm
0 votes

You can’t add a panel as a menu item but you can show a UserPopup at the location of a menu item click:

var p = new UserPopup();
p.BackColor = Color.Red;
p.Size = new Size(100, 100);
p.ShowPopup(Control.MousePosition);

Menus are complex widgets managed by a manager component that takes care of opening/closing drop down menus with a timer, focus, opened state, etc.

You can also built a custom popup similar to the Windows start using the UserPopup. An example is here http://demo.wisej.com/codeproject. You can add more UserPoup that show like a custom menu.

 

  • Luca answered Mar 18, 2019 - 5:43 pm
Showing 6141 - 6160 of 11k results