This has been fixed internally and a fix will be included with the next version of Wiej.NET
Julie
Hi Julie,
Yes, the behaviour is reproducible in 3.5.17.8. Just run it directly from Visual Studio, On Edge and on Chrome.
New project, on Page1 add a button, and on button click write:
private void button1_Click(object sender, EventArgs e)
{
string file_name = “C:\\Temp\\test.pdf”;
MemoryStream ms = new MemoryStream();
using (FileStream file = new FileStream(file_name, FileMode.Open, FileAccess.Read)) file.CopyTo(ms);
ms.Seek(0, SeekOrigin.Begin);
Application.DownloadAndOpen(“_blank”, ms,”test.pdf”);
}
You must have c:\temp\test.pdf file.
I attached the full project and test.pdf 🙂
Can you try with Wisej 3.5.17 (most recent version) and see if that resolves the issue?
If that does not fix it, please include a reproducible test case.
Julie
ColumnFilter documentation: https://docs.wisej.com/extensions/extensions/columnfilter
Here is a VB.NET sample using ColumnFilter: https://github.com/iceteagroup/wisej-examples-vb/tree/3.5/ColumnFilter
This blog explains how to use ColumnFilter: https://wisej.com/blog/columnfilter/
I don’t know how to use ColumnFilter feature on wisej vb language. Can you guide me or share me the code to integrate ColumnFilter into datagridview? Thank you
If you have a license that allows you to use premium extensions, you can use the DevExpress Dashboard with Wisej 3 https://www.nuget.org/packages/Wisej-3-DxDashboard/3.5.17?_src=template
For Wisej 2, there is no devexpress dashboard extension so you would have to integrate it yourself as a third-party widget.
Some links to help you with that:
https://wisej.com/support/question/implement-devex-dashboard
https://wisej.com/support/question/third-party-widget-integration
Thanks Julie,
when you say copy/paste you mean in the theme builder tree ?
And if I set the AppearenceKey of a PB to be myCustToolTip wont it loose all its pb properties ?
TIA
Mirko
Hi Cristian,
Wisej.NET 3.5.17 including a fix for this issue has just been deployed.
Best regards
Frank
Hello,
We are working on a fix for this to be released in Wisej 3.5.18. We’ll update you earlier if we find a workaround.
Julie
Create a custom themed toolTip- copy/paste the tooltip part of the theme and name it something like myCustomToolTip.
For the buttons that you want to theme, set the AppearanceKey to myCustomToolTip.
For more information on AppearnceKey, see https://docs.wisej.com/theme-builder/theme-elements/appearances
This works for all controls by the way, not just tooltip!
You might also find the TaskBar control to be helpful: https://docs.wisej.com/extensions/extensions/taskbar
It was formerly an extension, but now it’s a core part of Wisej- you can simply drag the taskbar from the toolbox, no need to install a nuget package.
You can place the TaskBar control on a Page and it automatically handles minimized windows.
See https://wisej.com/support/question/showing-minimized-form
Set form.WindowState to Normal to un-minimize the window.
Here is a modified sample using standard microsoft buttons.
Thanks.
I have made a generic Web Desktop app with a menubar with 2 entries.
There are 2 windows and 2 aspx web pages that are loaded into the iFrame panels on each window.
If you run the program and open the first window from the menubar, you will see a button that is in an iFrame panel.
I need to be able to open web desktop windows from within an iFrame panel.
I have tried many scenarios but none of them work.
Please help…
“I added a second button to the menubar to launch the second window manually and it does work.”- To me, this sounds as though there probably isn’t a bug in Wisej
Set a breakpoint-is your subroutine being called? My guess is that the code inside the subroutine works fine, there’s just some kind of bug where the subroutine isn’t being called.
If you can create a small runnable test case (use simpler windows so the file size is smaller, also make sure to delete the bin and obj folders) then we can investigate it. Otherwise, you’d need to pay for premium support in order for us to debug your larger application. See here: https://wisej.com/services-packages/
Julie
Hello, thank you for your support. The problem has been fixed through the article you shared. I share it in case others may need it for solution
—– Web.config —–
<handlers>
<!–<add name=‘json’ verb=‘*’ path=‘*.json’ type=‘System.Web.HttpForbiddenHandler’ />–>
<!– First we put the general JSON blocking –>
<add name=‘jsonBlockAll’ verb=‘*’ path=‘*.json’ type=‘System.Web.HttpForbiddenHandler’ />
<!– Now we only allow JSONs under /Resources/ –>
<add name=‘jsonAllowResources’ verb=‘GET’ path=‘Resources/*.json’ modules=‘StaticFileModule’ resourceType=‘File’ />
<add name=‘wisej’ verb=‘*’ path=‘*.wx’ type=‘Wisej.Core.HttpHandler, Wisej.Framework’/>
</handlers>
— dxDashboard Init Script —
this.init = function(options) { var self = this; // 'this' bağlamını saklıyoruz. $.when( $.getJSON("/Resources/dx-dashboard.tr.json").then(DevExpress.Dashboard.ResourceManager.setLocalizationMessages), $.getJSON("/Resources/dx-analytics-core.tr.json").then(DevExpress.Dashboard.ResourceManager.setLocalizationMessages) ) .then(function () { DevExpress.Dashboard.ResourceManager.setLocalizationMessages({ "DashboardStringId.ActionExportTo": "Custom Text for Export Button" }); DevExpress.localization.locale('tr'); const dashboardOptions = { ...options, localization: { locale: 'tr' }, cultureName: 'tr-TR', viewerSettings: { cultureName: 'tr-TR' }, designerSettings: { cultureName: 'tr-TR' } }; self.widget = new DevExpress.Dashboard.DashboardControl(self.container, dashboardOptions); if (self.widget) { self.widget.render(); } }) .fail(function(jqXHR, textStatus, errorThrown) { console.error("JSON dosyaları yüklenirken hata oluştu:", textStatus, errorThrown); }); }
The DevExpress Dashboard control is created by a third party (DevExpress) and not by Wisej- thus, you’ll need to refer to their documentation on this.
Looks like you’ll need to use their localization service.
Relevant documentation:
https://docs.devexpress.com/Dashboard/402540/web-dashboard/integrate-dashboard-component/dashboard-control-for-javascript-applications-jquery-knockout-etc/localization
https://supportcenter.devexpress.com/ticket/details/t337308/translation-of-dashboard
I tried to find out but couldn’t handle it, is there anyone who can help me? I’m willing to pay the cost to do it
If you want each item to have the same text color and background color, you could try setting it in the theme. You can edit themes using the theme builder.
But if you want each item to be different the easiest way would to set AllowHTML to true. You can then use HTML and inline css to style each item. See attached sample.
Here are 2 screenshots from Web Browser console when error appears.
Also in the browser where this happens, if I disable cache, page reloads correctly.
