Thanks Luca,
That’s strange. Plesk says that ASP.NET is installed.
See attached PDF.
BTW we are on WiseJ 2.1.81
Robin.
Hi Robin,
It’s not a licensing issue. If the page comes up blank it means that Wisej is not being loaded probably because web.config is wrong. Try http://your url/wisej.wx. You should get the js loader. Similar to this http://demo.wisej.com/wisej.wx. You can also send the url to support (at) wisej.com if you want use to take a look.
HTH
Hi Ulisses,
Thanks for letting us know! It’s fixed for the next build.
The MobileIntegration nuget package is also missing from NuGet.org, but will be added for the next build.
Thanks,
Levie
Hi Dino,
It’s not on our roadmap at this time. Visual Studio for Mac doesn’t have any kind of WinForms designer so it’s probably nearly impossible at this point :-).
Maybe in the future!
Best,
Levie
Hi Levie
Thank you for your response.
I am attaching a sample code that I created from an existing wisej project.
I added a widget control in the main form and on widget click event i am loading the topaz signature dialog. This dialog has an html panel and i am setting the htmlsource(HtmlContent.txt under Resources folder) to populate the htmlpanel. The html file have the js script inline.
It loads the html content fine in the panel. But it does not invoke any javascript functions when the buttons are clicked. Is there anything else to be added to htmlpanel for it to invoke the js within the html file?
The reason I need to open a new dialog to capture the topaz signature is because in the main form the control can be resized to any size. And eventually the plan is to capture the signature and load it in the widget on the main form.
Please let me know how i can get the js functions involed once the dialog is loaded with the Topaz html content.
thanks
praveena
Hi Praveena,
If you want to integrate it with Wisej (beyond showing an HTML page in an iFrame), you’ll want to start with a Widget.
Check out the Widget class documentation.
I believe you’ve also looked at using the Syncfusion EJ2 Signature control, but if not it’s available here: https://github.com/iceteagroup/wisej-ext-syncfusion2
If you need help integrating the widget beyond basic support, I encourage you to contact sales AT Wisej dot com to get a quote for a consulting package!
Best regards,
Levie
Hi,
I tried new version 2.5.19, but it doesn’t work as expected. The selected row on client doesn’t match the selected row on server.
Thank for your help,
Page
Hi,
I tried new version 2.5.19, but it doesn’t work as expected. The selected row on client doesn’t match the selected row on server.
Thank for your help,
Page
Hi vincent_,
for action like click you can you YouButton.ShowLoader = True (for starting job busy) or YouPanel.ShowLoader = True.
And like that you can set “showLoader” at false in Default.json
Best,
Kevin (ITG)
I’ve managed to fix the issue by setting the “showloader” property to true in Default.json and also setting the timeout to 1000. This works for me and I haven’t tested any other values. (I’ve set the showloader property to false because I do not want users to see it when they first go to the url). This is not ideal for me but they’ll (me) have to live with the loader 🙂
So.. I was a bit fast with accepting this answer. I don’t use async so I used:
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Application.ShowLoader = True
Application.Update(Me)
'Do stuff here
Application.ShowLoader = False
End Sub
This works like a charm on my dev pc but once published I never get to see the loader.
Good I started with “silly/easy”. Thank you!
I will give this a go.
Hi vincent_,
Wisej has already add small tips to show that your applictaion is busy.
Private Async Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Application.ShowLoader = True
'Do stuff here
Application.Update(Me, Sub()
Application.ShowLoader = False
End Sub)
End Sub
Happy coding,
Kevin (ITG)
Hi Frank
In the next few days I will install the latest version of Wisej 2.5 and try.
Thanks
Thank you!
I will try that…
Hi mgmst,
For doing image circle, simple css at “CssStyle” property is required,
Use PictureBox control and set CssStyle like that pictur below
Happy coding,
Kevin (ITG)
Hi Dino
Here is another post with this case
By the way, it’s not a Wisej problem 😉
https://wisej.com/support/question/unable-to-cast-opening-control-in-designer-fails
Regards
Thank you so much!
Best regards!
Hi Angelo,
we added a progress event that can now be used like this:
private void PictureBox_WidgetEvent(object sender, WidgetEventArgs e)
{
if (e.Type=="progress")
{
int total = e.Data.total;
int loaded = e.Data.loaded;
}
}
Best regards
Frank
Hi Page,
it´s fixed in Wisej 2.5.19
Best regards
Frank
