All Answers

0 votes

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.

  • Luca answered Jan 31, 2020 - 7:33 pm
0 votes
In reply to: WiseJ vs Blazor

This is what they have in common: C#, .NET, stateful. That’s pretty much it.

Everything else is completely different and cannot be compared.

  • Luca answered Jan 31, 2020 - 7:31 pm
0 votes

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.

 

0 votes

See this link

https://wisej.com/support/question/aspnetcontrol

which contains an example implementation for Report Viewer

0 votes

Hi Frank,

this bug is present on datagridview cells also

regards

Cristian

0 votes

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.

 

 

 

0 votes

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.

 

  • Luca answered Jan 29, 2020 - 7:03 pm
0 votes

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.

  • Luca answered Jan 29, 2020 - 6:56 pm
0 votes

Thanks Frank, I think code option will work best for me.

0 votes

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

0 votes

Please have a look at the attachment.

Alex

0 votes
In reply to: blank page on start

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

0 votes
In reply to: blank page on start

Hi Levie, thanks fro your answer.

How do I turn on runtime errors?

Alex

0 votes
In reply to: blank page on start

Hi Alex,

A few things to check:

  1. Make sure your Default.html file is set up correctly and loads wisej.wx as a script.
  2. Make sure IIS has given the Wisej application full permissions.
  3. Check the default.json file to confirm that it’s loading Program.main correctly

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

0 votes
In reply to: blank page on start

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

0 votes

Issue #2142

  • Ulisses answered Jan 26, 2020 - 10:24 pm
0 votes
In reply to: blank page on start

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

  • Levie (ITG) answered Jan 26, 2020 - 10:10 pm
  • last active Jan 26, 2020 - 10:12 pm
0 votes

See attached sample. It’s a more complete than what you find online.

  • Luca answered Jan 25, 2020 - 9:32 pm
0 votes

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.

  • Luca answered Jan 24, 2020 - 5:48 pm
0 votes

Browsers don’t allow the clipboard to be accesses without a direct user interaction. See https://wisej.com/support/question/read-from-clipboard.

  • Luca answered Jan 24, 2020 - 4:04 pm
Showing 5201 - 5220 of 11k results