All Answers

0 votes

Adrian, that´s a different story. The link you are referring to aimed at the old documentation site. We completely rebuild the documentation and have now released an extensive set of books covering all aspects of Wisej in detail.
We are aware of the issue that links to the old documentation site may now not work any longer and are checking how to change this.
However you can also just use the search functionality in the documentation books and will soon find the information you´re looking for here:
https://docs.wisej.com/docs/concepts/javascript-object-model
Best regards, Frank

0 votes

Hi Tobias, in addition to what Paul wrote:

We have the self-hosting options available for Wisej server based on OWIN/Katana. It means that you can package a Wisej application as a Windows service for easy deployment with local hardware access. The same Wisej application can also be run as a desktop app by using Wisej Desktop. This can be used to have Wisej interact with local hardware resources.

iOS and Android hardware interfaces are available as part of Wisej Mobile.

Best wishes
Thomas

0 votes

Hi Adrian

Thanks for your clarification

About the link “https://wisej.com/support/answers/11966” I deleted it because was duplicate (I made click twice when post it, my fault)

You must have received also a email with https://wisej.com/support/answers/11967 that is the same post that I deleted

In relation to broken links for https://wisej.com I made a fast test and not found problems

Here my test

I appreciate if you can send a small screen capture about it to recheck

Best regards

  • Paul answered Oct 1, 2021 - 4:53 pm
0 votes

Hi Paul

Example with screen shots sent to support

Thanks

Ewan

0 votes

Hi Paul

Example with screen shots sent to support

Thanks

Ewan

0 votes

Hi pavel

In addition to what my colleague says you
Let me tell you that we have an application modernization service.

We have a team that has worked on migrations from webgui to wisej

I invite you to contact us

Web Modernization Request

Greetings

  • Paul answered Oct 1, 2021 - 2:58 pm
0 votes

Hi Ewan

Could you pelase attach a small running sample? to check what you are telling us.

Regards

  • Paul answered Oct 1, 2021 - 2:21 pm
0 votes

Hi Kevin

Both images were produced after installing Wise J 2 from Nuget.

It some cases it creates the first image, and in others the second image with dll reference (created by Nuget install).

(These tend to be much older projects that were created in a very early version and progressively upgraded as new releases became available)

NB Documentation needs updated re installing extensions.

Thanks

Ewan

  • Ewan Walker answered Oct 1, 2021 - 2:14 pm
  • last active Oct 1, 2021 - 2:15 pm
0 votes

Hi Adrian Our apologies for any inconvenience

The purpose of this forum is to be a more direct channel to anybody that is working with Wise and we try to respond in the more quickly way possible to all post.

For a more specific needes, we have a technology partner program where you can have a direct and personalized assistance.
I invite you to contact to salesATwisejDOTcom to ask for details about it

Regards

  • Paul answered Oct 1, 2021 - 2:12 pm
0 votes

Hi Adrian

Please, could you post a small running sample ? to check what is not working at your side

Regards

  • Paul answered Oct 1, 2021 - 1:46 pm
0 votes

Hi Pavel,

Wisej have simple process for execute Js CODE from C# Server or Raise event from js and Get that from C# Server just read these three docs.

https://docs.wisej.com/docs/controls/general/lazy-events#javascript-events

https://docs.wisej.com/docs/concepts/javascript-object-model

https://docs.wisej.com/docs/controls/content/widget

Happy Coding

Kevin(ITG)

  • Kevin answered Oct 1, 2021 - 11:20 am
0 votes

Hi Ewan Walker,

Wisej 2.5 (newer version) works with Nuget Package and for the second one you don’t need the dll reference, just install Nuget Package from Wisej and everything will work fine. GeoLocation is an extension, you have to install it from nuget.org or you can get it from https://github.com/iceteagroup/wisej-extensions, compile it and reference it yourself.

Happy Coding,

Kevin (ITG)

  • Kevin answered Oct 1, 2021 - 11:06 am
0 votes

I found it will if you select Nuget.org and install it from Nuget rather than using the package manager.

I have noticed that Wise J 2.5.16 Nuget installs in different ways as I have added it to my various apps.

See screen shots below.

Both versions compile and run, however the second references a dll in properties

0 votes

Ok, I discovered some parts. That code is working:

map.AddMarker(m.id, m.lat, m.lon, (Wisej.Core.DynamicObject)(Wisej.Core.WisejSerializer.Parse(“{title:\”” + m.tooltip + “\”,icon:\”http://www.googlemapsmarkers.com/v1/” + m.color + “\”}”)));

 

How can I use scaledSize to reduce marker size? I found that for Java, but I don’t know how to user it in C# – Wisej:

var icon = {
     url: "../res/sit_marron.png", // url
     scaledSize: new google.maps.Size(width, height), // size
     origin: new google.maps.Point(0,0), // origin
     anchor: new google.maps.Point(anchor_left, anchor_top) // anchor 
 };

 position = new google.maps.LatLng(latitud,longitud)
 marker = new google.maps.Marker({
  position: position,
  map: map,
  icon: icon
 });
0 votes
I want to add and delete row when I click the button.
I don't want the blank row to appear unless the button is clicked.
  • Onur DOĞAN answered Sep 30, 2021 - 5:01 pm
  • last active Sep 30, 2021 - 6:37 pm
0 votes

AllowUserToAddRows means the user can add rows. To add rows programmatically, just add the rows.

  • Luca answered Sep 30, 2021 - 4:58 pm
0 votes
In reply to: AspNetHost not found

This appears to be a result of checking the “Precompile during publishing” checkbox in the publishing options.  Clearing that option but otherwise repeating all the original steps results in a working deployment.

0 votes
In reply to: AspNetHost not found

Hi Carl,

Could you please attach a small sample that reproduces the problem when published?

TIA,

Levie

0 votes

Hi Tobias

Wisej is very versatile

1. On regular browser – you can reach only the hardware info exposed by the browser through a javascript api.
2. On desktop or server – all local hardware should be reachable by .net code
3. On mobile – Wisej mobile extension, avalible only for TP, technology partners. https://app.gitbook.com/@iceteagroup/s/mobile/

HTH
Regards

  • Paul answered Sep 28, 2021 - 8:49 pm
0 votes

Hi!

So after I uninstalled all previous versions and made a clean installation of most recent version (2.5.16) everything works nearly fine now.

One inconvenience is left, I have each item in my toolbox twice – with and without icon. Probably there is some way to remove them, but it’s ok for now.

All in all after changing everything to nuget things works very fine – for each extension you have a nuget (like wisej-barcode, -speech, etc.) – much better than in the past, where you had to compile the projects on your own and add them as reference.

Thanks, problem solved, you may close this thread if you like.

Best regards,

Jan

  • Jan Mika answered Sep 28, 2021 - 10:17 am
Showing 3301 - 3320 of 11k results