Hi Steve,
Sorry for the late response, to make a better understanding of what my colleague Julie wrote in a comment earlier, I have attached a sample.
In Window1, we don’t use an iFrame but instead we use the AspNetPanel control, and if you look at WebForms1.aspx.vb, you’ll see that we used a server side event to bring up or create the second form.
HTH,
Alaa
Here’s a simple example running in Wisej 3.5
Click on the search icon in the middle column to filter it.
Note that if you examine columnFilter1 (from the designer) in the properties window, you can see how the properties are set up. The ImageSource is set to icon-search (which is why you see a search icon in the column). The FilterPanelType is set to SimpleColumnFilter. SimpleColumnFilter just shows a list of all possible values to filter by (in this case “ITG”, “Google”, and “Microsoft”).
Hope this helps,
Julie
Hi Adrian, i got your example and compile. The filename proposed in the save file dialog is the one set in the ShowPDF invocation inside the button1_click event handler.
Designer version 3.5.17.8
Nuget Package 3.5.17 (Wisej.Framework.dll 3.5.17.8)
The PDF File is from file or from Stream?
In your example the PDF file is created from a memorystream so the FileName property is not used or infered from PDFSource property.
If you set the PDFSource property with the PDF Filename then FileName have a value.
Why you load the PDFViewer with a memorystream when you have a PDF file?
Does anyone on this forum have any ideas on this?
I tried my best to follow the instructions but it keeps giving errors and can’t work, the sample source you shared doesn’t run on my local machine. Can you guide me with a simple example running on wisej 3.5
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…