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
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
And a timeline chart like this
best
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.
It’s explained in the docs under JavaScript. It’s also in intellisense.
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)
Hi Sascha,
Which version of Wisej do you use?
Best,
Kevin (ITG)
Thanks!
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
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
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
//
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
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.
Thanks, this worked
public void ReceiveDrawnPolygon(DynamicObject[] obj)
{
dynamic item = obj[0];
AlertBox.Show(item.lat.ToString());
}
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, 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
javascript classes and .NET classes are different things. Use dynamic and convert or use the properties directly. It’s not a Wisej issue.
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
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
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.
