Hi Carl,
Since the report is very large, the request is what is timing out.
The error is coming from IIS, I would suggest that you increase the “Connection time out” value of your IIS Site.
Best,
Alaa
Hi Adrian… yes you can do it… currently I work under that concept… I have my own library of classes, controls, interfaces, functions, security, etc, I have created it in an independent solution referencing Wisej, I compile and the dll that is generated is the one that I share for the other projects…
I currently use version 2.5.x
Regards
It’s not working on my PC. I deinstalled exiting Wisej.NET version in Visual Studio, installed the downloaded version. The project itself can be compiled/run. The forms/pages are loaded in designed, the controls are there but not visible. When I click on control (a textbox in this case) it’s borders are displayed but nothing more. Please advice.
Visual Studio 17.7.2
Wisej 3.2.4
When using IE Renderer it’s working correctly; the problem exists just for Edge/Chrome Renderer.
Hi, had the same problem. The new VSIX has eliminated the bug.
Found the problem.
IframePanel.Call requires a callback of type Action<dynamic>, it was my mistake. Closing the issue
Correction!
Now the wisej3.2 app is shown correctly.
But on the wisej2.5 app it is the same as it was. No Controls!
Sorry, but installing the VSIX from Alaa did not change anything.
The controls in the designer are not visible.
Thank you.
Hi Jose,
Unfortunately, that would be out of scope for what we can offer here as free support.
You can however, use the ASP.NET Core 6 wrapper and host it in an iFramePanel in Wisej.NET.
Best,
Alaa
Hi Rupert,
This looks like the issue we mentioned in https://wisej.com/support/question/important-information-regarding-the-recent-update-to-visual-studio-2022-17-7-0
Please follow the steps there by downloading the new VSIX installer, that should fix it!
Best,
Alaa
Thanks Alaa, I understand that ASP.NET Wrapper extension is compatible only with net 4.8 but FastReport has compatibility with ASP.NET Core MVC 6, will you have any example of how to integrate something like this? Thank you
Hi Sergio,
To answer your questions:
HTH,
Alaa
Hi Jose,
Thank you for your interest in Wisej.NET!
Unfortunately, WinForm controls are not compatible with Wisej.NET itself, since all of our components are javascript web controls.
You can get around that by using the ASP.NET Core or ASP.NET MVC components, if you went the ASP.NET MVC route, you’ll need to use our ASP.NET Wrapper extension to implement it with Wisej.NET!
We do offer custom implementation services, if that interests you, please contact us at sales[AT]iceteagroup.com for more info.
Best,
Alaa
Hi Devin,
I’m putting your answer above to close this issue 🙂
<PropertyGroup>
<ActiveDebugFramework>net6.0</ActiveDebugFramework>
</PropertyGroup>
Best,
Alaa
Hello,
we’re using Visual Studio 2022 version 17.7.1 along with Wisej 2.5.35.
For the designer, we’re using the NuGet package provided by Wisej-2-VisualStudioDesigner 2.5.20.
Will this NuGet package also be updated?
We’re encountering the issue described in this post related to the Edge/Chrome renderer.
Thanks in advance.
I’ll answer my own question here,
It appears you cannot, however for a workaround and it’s a bit tedious
I have opened the .csproj file and commented out the 4.8 target <ItemGroup> sections for my forms I want to edit, and unload and reload the project. Then I can edit the forms in the designer. However of course it will not compile now, so before I can run in the debugger I have to remove my comments for the 4.8 Item Group so it will compile again.
I am really looking forward for the .net core designer 🙂 cause this is a pain.
To anyone who’s still having designer issues, I have updated the original post with new VSIX links.
Please give them a try and let us know if anything is not working as expected!
Best,
Alaa
Hello,
we’re using Visual Studio 2022 17.7.1.
We have deinstalled the old extension (Designer 3.2.4) and installed the new one. No changes at all after complete system reboot, same results for IE or Edge Renderer.
Some simple forms (no subclasses) are displayed correctly with IE Renderer.
Screenshots attached.
Thank you
You can use Application.ActiveProfile https://docs.wisej.com/api/wisej.web/general/application#activeprofile
For example, this code snippet would set the text of a button to be the name of the active profile when the button is clicked.
private void button1_Click(object sender, System.EventArgs e)
{
button1.Text = Application.ActiveProfile.Name;
}
Application.ActiveProfile is a ClientProfile object, so you might find the ClientProfile documentation helpful as well:
https://docs.wisej.com/api/wisej.web/general/application/wisej.core.clientprofile
-Julie
Hello,
You can’t do that out of the box. There’s not a property or method for it in the PDFViewer documentation
The pdf viewers use the URL as the file name- they don’t care about the filename field in the header response.
Check out this forum post for a workaround- you can override the IWisejHandler interface in a subclass of PdfViewer.
-Julie
Please note that this preview build of the VSIX is only available through the links that Alaa posted
and not in the Visual Studio Marketplace.
Thus you need to deinstall your exiting Wisej.NET version in Visual Studio
(Extensions – Manage Extensions – Select Wisej.NET from the Installed Extensions – Uninstall)
Then install the downloaded version.
When Wisej.NET 3.2.5. is officially released, it will be back into the Visual Studio Marketplace and you can directly update it in Visual Studio.
Sorry for any inconvenience.
Best regards
Frank
