We regularly use List & Labels, MS Reporting Services and Crystal Reports in our Wisej projects without issues, usually on apps running hundreds of really complex reports. If you wan to attach a sample project we may be able to help.
This is what they have in common: C#, .NET, stateful. That’s pretty much it.
Everything else is completely different and cannot be compared.
Thanks, do you same in vb.net, I have spent at least few hours to get it work in vb.net but no luck, do you have any plan to include built in reporting tool in future.
See this link
https://wisej.com/support/question/aspnetcontrol
which contains an example implementation for Report Viewer
Hi Frank,
this bug is present on datagridview cells also
regards
Cristian
Wow that is pretty much a complete implementation! Thanks 🙂
I tried extending it to support a “ImageSizePercent” field that could resize width and height by a percent, instead of fixed amounts (we don’t always know the orientation or size of images coming in, so its hard to resize to a fixed width and height without risking a skew of the image). Something like
if (imageSizePercent > 0) {
//resize by a percentage
img.width = img.width * imageSizePercent;
img.height = img.height * imageSizePercent;
}
else {
//resize into specified dimensions
if (imageSize.width)
img.width = imageSize.width;
if (imageSize.height)
img.height = imageSize.height;
}
where it overrides.
I added the new properties to ImageUpload.js and ImageUpload.cs, and while it compiles I can’t get it to work, and nothing is logged in the console. Attached is the sample. I can keep hacking at it but I suspect you may see what’s wrong right away.
VWG is slightly faster in the initial creation of a complex form because it used a large XSLT document transformed against the XML state into a big HTML string. It didn’t use any javascript widget nor event system. During runtime VWG is much slower because of the same reason. This has been my observation on several large VWG -> Wisej projects. Some forms these projects have about 1,200 controls and open in less than 2 seconds in Wisej.
Wisej on the contrary uses a complete javascript library of actual widgets, with a complete API, that build the UI in the browser using javascript objects, and manipulating the DOM using a FastDOM approach (dom changes are flushed in sync with the browser’s painting frames).
I don’t know of any timer that slows down the creation. It could be a firefox plug in blocking the javascript. If you want to send me a link privately send it to support [at] iceteagroup.com and I can take look.
I tried and for me the browser is simply cleared, which is the correct behavior. Check if you have autoReload in Default.json or in Default.html.
Thanks Frank, I think code option will work best for me.
Hi Shahbaz,
this can be done either in the Theme or by a Theme Mixin or by Code.
Depending on what you want to do. If you just want to change the colors,
you can add this to your code prior to the creation of the DataGridView:
Application.Theme.Colors["table-row-background-even"] = Color.White; Application.Theme.Colors["table-row-background-odd"] = Color.Yellow;
Best regards
Frank
Please have a look at the attachment.
Alex
Hi Alex,
Can you also verify resource.wx contains wisej.js with developer tools in chrome? It will help us determine whether the server module is responding.
Best,
Levie
Hi Levie, thanks fro your answer.
How do I turn on runtime errors?
Alex
Hi Alex,
A few things to check:
Alternatively, you can turn on all runtime errors to see if your application is breaking due to missing permissions or failure to load resources.
Let me know if this helps! It would be good to attach a small sample of your project if these solutions don’t work so we can investigate further! You can send it to support AT wisej DOT com.
Best,
Levie
That was fast!
But this is not my scenario. In my case, I just installed a new Windows 2016 server, new SQL Server, new IIS and transferred the files from the first server to the second one. Same old dlls and everything. There is no upgrade. But what runs alright on the old server it simply does not run on the new server, this is my problem.
Thanks for the quick answer.
Alex
Issue #2142
Hi Alex,
I am glad to hear your back to using Wisej again! If you’re moving from version 1.x to 2.x please try to follow the upgrade instructions at this link:
https://wisej.com/docs/2.0/html/UpgradeFromWisej1.htm
If you’ve already tried this, please let me know and we can try another solution!
Best,
Levie
See attached sample. It’s a more complete than what you find online.
Sorry for the late reply. Editing the theme is not a problem with the Wisej Theme Builder but you’d have to provide the icons and if they have different states they have to be done to reflect that.
Browsers don’t allow the clipboard to be accesses without a direct user interaction. See https://wisej.com/support/question/read-from-clipboard.
