All Answers

0 votes

Hello
Thanks for commenting on this.
There is a problem with the DateTimePicker control and our development team will fix it in the next version.
Thanks and regards

  • Paul answered Mar 13, 2022 - 1:23 pm
0 votes

Hi
In Wisej Wisej for connecting to a database, You can use just standard .NET and any driver and any ORM and any .NET data source works.
You can check this video, that use Dapper for Sql connection or you can take any tutorial of connecting a .net desktop winforms app and addapt it to Wisej

https://www.youtube.com/watch?v=qYIEoF3TIF4

HTH and happy coding

  • Paul answered Mar 11, 2022 - 3:59 pm
0 votes
In reply to: ChartJS range

And a timeline chart like this

best

0 votes

Static content is always “enabled”. I don’t know what that means.

If your images are shown when running from Visual Studio e not when deployed it means they are not deployed. You can search for IIS and deployment on our deployment book or on google. It’s usually just a copy of the image files.

  • Luca answered Mar 11, 2022 - 1:30 pm
0 votes

It’s explained in the docs under JavaScript. It’s also in intellisense.

  • Luca answered Mar 11, 2022 - 1:27 pm
0 votes

Hi Sascha,

If  you compiles for x64 then you must configure VS to run iis express x64. Otherwise compile with AnyCPU. There is plenty of information about IIS Express x64, or IIS x64 or x86.

Thanks,

Kevin(ITG)

  • Kevin answered Mar 10, 2022 - 1:13 pm
0 votes

Hi Sascha,

Which version of Wisej do you use?

Best,

Kevin (ITG)

  • Kevin answered Mar 10, 2022 - 10:40 am
0 votes

Thanks!

  • Vincent answered Mar 9, 2022 - 11:19 am
0 votes

We testing more and found that the items of type link and cheked are the ones that not be copied.
The develpment team was notified and this must be fixed in the next release

Thanks for tell us about it

  • Paul answered Mar 8, 2022 - 3:17 pm
0 votes

Hi

This feature works fine from here

We tested with VS 2919/2022 and copying between forms and pages
If you can send a small runnable sample with the problem, we appreciate it

Small video with this working

 

  • Paul answered Mar 8, 2022 - 2:31 pm
0 votes
In reply to: Add a sub-application

Hi Neil,

Thank you for reporting this issue.

It’s a confirmed bug and it will be fixed in the next build.

We will notify you when we push the updates.

Best,
Alaa

//

0 votes

The mobile integration package is free on NuGet. You can use it with the Wisej app on iOS or Android to test your application using testflight or google play.

The native iOS and Android applications are not free.  You can buy the iOS Swift code, or the Android code or both and you will have to compile it and deploy it using your iOS or Google accounts just like any native mobile app. Otherwise we offer a managed deployment. It’s all published on the link that was sent to you here: https://docs.wisej.com/license/license-model-2022/mobile-packages.

You can also use Wisej with the free Apache Cordova. Which is outside of our scope, we don’t offer any training or free support since it’s not our product. It’s just like any other web framework with Apache Cordova, but you are on your own with that one.

HTH

  • Luca answered Mar 5, 2022 - 5:55 pm
1 vote

There is only one way to publish to the Apple Store: Xcode on a Mac. Follow the very good instructions from Apple.

For Google Play, you have to use Android Studio: https://developer.android.com/studio/publish

Our mobile packages are written in SWIFT for iOS and Android Studio (Java) for Google Play. When you buy the packages from us that’s what you get. We also sell a managed option where we create and manage the store entries for you. We don’t sell training but you can always purchase consulting hours in case you don’t have iOS or Android expertise.

  • Luca answered Mar 5, 2022 - 5:24 pm
0 votes

Thanks, this worked

 

public void ReceiveDrawnPolygon(DynamicObject[] obj)
{
dynamic item = obj[0];
AlertBox.Show(item.lat.ToString());
}

0 votes

Use DynamicObject[]. I tested it and it works fine. If it doesn’t work for you I’d need a small runnable test case.

There is no standard conversion in .NET between array of different types.

A better approach to this kind of scenario is to use this.fireWidgetEvent(“event name”, event data).

  • Luca answered Mar 3, 2022 - 5:36 pm
0 votes

Luca, as I mentioned I already tried dynamic, and it throws the same error.  Even an empty webmethod will throw the error.

[WebMethod]
public object ReceiveDrawnPolygon(dynamic obj)
{

return null;
}

 

Simply calling the webmethod causes the crash, so it seems WiseJ is panicking over the data and it is a WiseJ error

0 votes

javascript classes and .NET classes are different things. Use dynamic and convert or use the properties directly. It’s not a Wisej issue.

  • Luca answered Mar 3, 2022 - 11:20 am
0 votes

Hi Alaa,

Sorry I didn’t explain myself correctly.

In this link:

material.io/develop/web,

there are Google Material Components for the web.

In the tutorial section he talk about ‘Integration Material Components with web frameworks’.

My question if this is possible on the wisej platform

 

 

0 votes

Hi Angelo,

Are you perhaps referring to the Material-3 theme ?

If that’s the case, you can use it by adding

“theme”:”Material-3” to your default.json file.

HTH,

Alaa

0 votes

There is no error.

CurrentItem refers to the current item while DisplayedItems is the collection of items displayed.

If the DataRepeater is not visible, it’s not populated therefore there is no current item and no displayed items. It’s by design.

 

  • Luca answered Mar 1, 2022 - 11:00 pm
Showing 2741 - 2760 of 11k results