Hi Andre,
You’ll have to install libgdiplus so that your app can be run on linux.
For more info, please check our Deployment Documentation.
Best,
Alaa
I’ve attached two screens, first is local in debug mode, second is the same application on IIS.
The complete DIV for the chart is missing at the IIS deployment.
I have no idea why, in the old version everything worked perfectly.
Can you include a screenshot of your browser console please?
It is fixed as of version 3.1.8.preview15 of Wisej-3-RibbonBar.
Hi Stephen,
We would require a runnable/reproducible test sample that simulates your application’s layout.
Best regards,
Alaa
Thank you for sharing this information. We are looking into it and we will update you when the issue is fixed.
There is no blank trailing column. The space after the last column is the normal remainder of the grid.
Hi Kurt,
If you’re staying with .NET 48, updating the PackageReference should be enough.
If you plan to target .NET Core you can find our guide here:
https://docs.wisej.com/docs/releases/whats-new-in-3.0/update-existing-projects
Regards,
Levie
Greetings,, an associate assisted my inquiry locally:
Setting the DataGridView’s AutoSizeColumnsMode property to fill removes the blank “trailing’ column.
However be aware of the consequences, all the columns are now the same width.
Address individual column widths as needed to compensate — if necessary I believe that property is FillWeight or something
If the browser can show your svg as an img or background-image url then it works. If it doesn’t work then you have to show the svg as html content. This is not a wisej issue.
Hi Levie, I’ve attached a ZIP file with 2 SVG files. The ‘municipios’ SVG file has a reference to the ‘cloudy day’ SVG file. When setting the ImageSource property of the PictureBox control to the ‘municipios’ SVG and run the application then the content of the ‘municipios’ SVG shows but the SVG image ‘cloudy day’ referenced in the ‘municipios’ SVG doesn’t show. There are also some <a> tags in the ‘municipios’ SVG file which seem to be ignored. When opening the ‘municipios’ SVG file directly then the included ‘clouse day’ SVG shows and the <a> tags work fine. Any suggestions? Thx, Tom
Hi Tom,
You can apply an image using the Image property or set the ImageSource property to an image URL.
Please provide a sample demonstrating the functionality you would like to achieve with the PictureBox.
Thanks,
Levie
i have the same issue whether publishing to Winhost or azure
As a workaround, you can do TreeView.Nodes.Clear(True). See attached sample.
Private Sub ClearNode()
Me.TreeView1.Nodes.Clear(True) ' err: fixed
nFrom += 1
nTo += 10
For i As Integer = nFrom To nTo
Me.TreeView1.Nodes.Add("Node " & i)
Next
nFrom = nTo
End Sub
Hi Em Dev,
You’re correct that’s an old post. Now updating the URL like that won’t create a new session.
I would suggest handling the Application.HashChanged event:
https://docs.wisej.com/api/wisej.web/general/application#hashchanged
i.e.
localhost:5000/#MyForm -> localhost:5000/#MyForm2
Regards,
Levie
Hi Stephen,
That’s a .NET Core application. If you would only like to publish .NET Framework apps, use the old project templates. Any Wisej.NET template that contains (.NET Framework) in the title should work for you.
Regards,
Levie
Dear Alaa
I found this cause the problem, do you have experience how to solve this
Thanks
Nicky
Dear Alaa
I found this cause the problem, do you have experience how to solve this
Thanks
Nicky
Server support conversation:
Wisej is also not giving me enough information to resolve this, they keep saying that they my project is .net framework and to check the server. The also don’t have access to my files the way you do. Believe me I don’t like to keep asking these questions and take many hours of guessing what everybody means in their very short replies. I have tried to follow all the instructions on your kb, I wouldn’t just ask here if they didn’t work.
I’m about 95% sure I am *not* working with .net core but can’t tell as I don’t have any information about why you keep saying that and assuming I’m working .net core.
Maybe since Wisej doesn’t want to help you can take a minute to explain what you mean by “the one you’ve uploaded is a .NET Core one” and “make sure you’re working with the .NET Core version.”
From: Winhost <support@winhost.com>
“Wisej support said “Usually, if your deployed application has an .exe file, or doesn’t have a bin folder that means that it’s being deployed as a .NET Core application. “… is this what’s happening and how to i fix it if it is? ”
We stated:
“Wisej has 2 implementations, a .NET (Core) one and a .NET Framework one. Either will work in our environment, however, the one you’ve uploaded is a .NET Core one. The one in your screenshot is for .NET Framework. You usually can’t mix the two, so I really don’t know what’s going on. ”
This is something you need to review locally as we’re limited with the amount of support we provide locally. My suggestion is to make sure you’re working with the .NET Core version and then follow the instructions on how to web deploy here: https://support.winhost.com/kb/a1604/visual-studio-publish-web-deploy.aspx
Please let me know if you have any further questions.
Winhost Support
I need, to pick each value of the checkbox, in a column, and store in a counter the total of true values.