All Answers

0 votes

Hi Alexnaldo,

I guess you want to show thumbnails of each MDI form. Wisej shows tab’s thumbnails by default. I attach an MDI sample.

  • Tiago (ITG) answered Jul 9, 2018 - 3:37 pm
  • last active Jul 9, 2018 - 3:38 pm
0 votes

I suggest to make it work with a plain html page first on your site. Then copy it to the wisej html page.

  • Luca answered Jul 9, 2018 - 2:26 pm
0 votes

Try to explain better:

with this data

List<Object> _list = new List<Object>();
_list.Add(new object[] { 100, 200, 300 });
_list.Add(new object[] { 100, 200, 300 });
_list.Add(new object[] { 100, 200, 300 });
_list.Add(new object[] { 100, 200, 300 });
_list.Add(new object[] { 100, 200, 300 });
_list.Add(new object[] { 100, 200, 300 });

i want to arrive to this type of Chart (attached img)

  • Guest answered Jul 9, 2018 - 12:38 pm
0 votes

Hi

Wisej.AspNetStimulsoft.zip  Example project an get error , have you working small project

 

Thanks

  • John answered Jul 8, 2018 - 7:19 pm
  • last active Jul 8, 2018 - 7:20 pm
0 votes

Hi Thomas,

I’m running Crystal Reports 13 and have tried all service packs (currently sp 19)

In particular it’s the Crystal Reports Viewer I am having trouble with – just cant seem to get it as an object in the toolbox.

I have done this without trouble in Visual Web Gui which is somewhat similar to WiseJ

Thanks for your help.

Andrew

  • Andrew answered Jul 4, 2018 - 11:11 am
  • last active Jul 8, 2018 - 1:03 pm
0 votes

Send a test case. I tried with a panel using a transparent color and it works well.

 

  • Luca answered Jul 7, 2018 - 1:00 am
0 votes
In reply to: Autocomplete (again)

Could be a browser issue. I tried and it works fine for me. The autocomplete functionality is not part of Wisej, it’s a browser feature. For the credit card information is a bit more tricky since it’s only implemented in chrome and it must be wrapped in a <form> tag. Wisej doesn’t use the legacy <form> tag since it doesn’t submit anything being an ajax web system. However I can send you a widget that wraps the fields in a inert <form> tag just to make chrome happy.

 

See https://jsfiddle.net/639Lpwmb/41/

  • Luca answered Jul 7, 2018 - 12:55 am
0 votes
In reply to: Autocomplete

Officially autocomplete is only on|off.

https://www.w3schools.com/tags/att_input_autocomplete.asp

Wisej has the AutoComplete property on the TextBox class. You can modify the html to use chrome’s specific values easily but it works only with https and only on chrome.

  • Luca answered Jul 5, 2018 - 3:14 pm
0 votes
In reply to: mobile web application

Hi Roni,

I think the SlideBar is what you are looking for. The code for the example is at GitHub Wisej-Examples repository.

  • Tiago (ITG) answered Jul 5, 2018 - 2:12 pm
  • last active Jul 5, 2018 - 2:12 pm
0 votes

Hi Saul,

When an issue gets logged, this means it’s part of the product backlog and it will be solved according to current priorities.

In this particular case, the issue is already fixed in our internal 1.5.x build and will be part of the next public release.

If you need an hot patch. please contact support at wisej.com directly, specifying your license info.

  • Tiago (ITG) answered Jul 4, 2018 - 6:12 pm
  • last active Jul 4, 2018 - 6:13 pm
0 votes

So, are you working on a fix or something like that?

 

Do you have an estimated date to fix this bug?

0 votes
In reply to: ReportViewer

Hi Thomas,

the solution to use pdfviewer goes well.
Now I have a small problem.
My applcation is a desktop application with mdi forms that runs on a single browser tab.
But I would like to view the report, with pdfviewer, on a new browser tab.
I tried using a Wisej.Web.Page, but I can not open a new tab on the browser.
Do you have any suggestions?
Thanks in advance

0 votes

Hi Saul,

I could reproduce. Logged as WJ-9020.

  • Tiago (ITG) answered Jul 3, 2018 - 7:32 pm
  • last active Jul 3, 2018 - 9:31 pm
0 votes

Use the attached file instead.

  • Luca answered Jul 3, 2018 - 7:23 pm
0 votes

That’s because the object’s coordinates are rotated while the document (pointer) are not. Add the attached patched js to your project under a folder named “Platform” and set compilation to Embedded Resource. In AssemblyInfo.cs uncomment [assembly:WisejResources].

This patch fixes the MMovable class to consider the offset between the real and rotated coordinates. Will log and should be changed in Wisej soon.

  • Luca answered Jul 3, 2018 - 6:48 pm
0 votes

The code you attached is wrong and it causes a NullReferenceException.

It uses an Async method handler and starts another thread in there with Awai, which starts another thread losing the context a second time! Async methods are executed  in a different thread which has no knowledge of the context. This is not a Wisej issue, the same happens with any web framework when using async handlers. The exception is shown in Visual Studio. Cannot be show on the browser because the new thread is out of context.

There is no reason to use async handlers. But if you really want to, simply pass a reference to the Login method :AddHandler Button1.Click, Sub() locMyMVVM.Login(Me) and in Public Async Sub Login(dialog As Wisej.Web.Form) call dialog.Close().

Also the sample is not using a Page, which is OK. See my attached sample for a different approach.

See also: https://wisej.com/docs/html/BackgroundTasks.htm

 

  • Luca answered Jul 3, 2018 - 4:12 pm
  • last active Jul 3, 2018 - 4:17 pm
0 votes

THX – I will change my code.

 

0 votes

Hey

I changed the design, as you told me.

But, I still face issues, when I try to get the Application.OpenForms, within an async routine.

I attach a project, where it can be reproduced.

When you uncomment the Task.Run and don’t use the async word, then everything works as expected.

The problem is, that I use async/await for all of my database queries and therefore I will need it.

THX and I hope a solution can be found

0 votes

Hi Harald,

In https://github.com/iceteagroup/wisej-examples there is a collection of samples. The UIContainers sample shows the behaviour of different types of applications: Window only, Page+Window and Desktop+Window. Please note that Window is another name for Form.

I’m afraid there isn’t a mixed Desktop/Page application example since Desktop and Page take over the full browser area so one control would hide the other.

If the UIContainers sample doesn’t help, please attach a sample.

0 votes

I want to same animation for accordionPanel  selected tab, how can I do this ?

 

Thanks

  • Saqıp answered Jun 23, 2018 - 9:50 am
  • last active Jul 3, 2018 - 1:57 pm
Showing 7161 - 7180 of 11k results