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.
I suggest to make it work with a plain html page first on your site. Then copy it to the wisej html page.
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)
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
Send a test case. I tried with a panel using a transparent color and it works well.
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.
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.
Hi Roni,
I think the SlideBar is what you are looking for. The code for the example is at GitHub Wisej-Examples repository.
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.
So, are you working on a fix or something like that?
Do you have an estimated date to fix this bug?
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
Hi Saul,
I could reproduce. Logged as WJ-9020.
Use the attached file instead.
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.
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
THX – I will change my code.
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
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.
I want to same animation for accordionPanel selected tab, how can I do this ?
Thanks
