All Answers

0 votes

Thanks Luca,

That’s strange. Plesk says that ASP.NET is installed.

See attached PDF.

BTW we are on WiseJ 2.1.81

Robin.

0 votes

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

  • Luca answered Oct 27, 2021 - 10:20 pm
0 votes

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

0 votes

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

0 votes

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

0 votes

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.

  1. Add the sigplusweb packages to Widget.Packages
  2. Configure the InitScript to initialize the widget.
  3. Use this.fireWidgetEvent(type, {some:”data”}) to fire events from the client-side Widget and handle them in the Widget’s WidgetEvent.
  4. Add methods on the client using this.someMethod = function(data) {} and call them from the server using this.widget1.Call(“someMethod”, “some data”);

 

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

0 votes

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

0 votes

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

0 votes

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)

  • Kevin answered Oct 25, 2021 - 8:28 pm
0 votes

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 🙂

  • Vincent answered Oct 25, 2021 - 5:54 pm
  • last active Oct 25, 2021 - 6:01 pm
0 votes

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.

  • Vincent answered Oct 25, 2021 - 5:28 pm
0 votes

Good I started with “silly/easy”. Thank you!

 

I will give this a go.

  • Vincent answered Oct 25, 2021 - 4:53 pm
0 votes

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)

  • Kevin answered Oct 25, 2021 - 4:50 pm
0 votes
In reply to: DragDrop Files

Hi Frank

In the next few days I will install the latest version of Wisej 2.5 and try.

Thanks

0 votes

Thank you!

I will try that…

 

  • mgmst answered Oct 24, 2021 - 7:18 pm
0 votes

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)

  • Kevin answered Oct 24, 2021 - 6:13 pm
0 votes

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

 

  • Paul answered Oct 23, 2021 - 1:47 pm
  • last active Oct 23, 2021 - 4:21 pm
0 votes

Thank you so much!

Best regards!

  • mgmst answered Oct 23, 2021 - 12:16 pm
0 votes
In reply to: DragDrop Files

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

 

0 votes

Hi Page,

it´s fixed in Wisej 2.5.19

Best regards
Frank

Showing 3141 - 3160 of 11k results