Hello, I want to ask for help with the problem in the Navigation Bar component for the answer in number 3 for wisej version 3.x.x and above now it can't work anymore
Hi Ruben,
Sorry for the delay!
I have attached a sample that uses a session variable and a timer to show one AlertBox at a certain time.
Let me know if this is what you wanted!
Best,
Alaa
//
any suggestions on how to float a tabbed panel (min, max, tab, float)?
… and more code if i want it write/delete/add able?
Hi Steve,
you´re missing to actually fill the DataGridView after binding it to the DataSource.
Some code like this should work
table1TableAdapter.Fill(stringyDataSet.Table1);
It´s not really a Wisej.NET issue and you can search through the internet for similiar cases.
Most of the WinForms based approaches to fill a DGV with data should work exactly the same way with Wisej.NET.
Best regards
Frank
Hi Allaa,
I have tested this solutions … without any result, same behavoir, tested it on a Iphone with Chrome and Firefox
The Default.html you can see in the Default.pdf document
Regards
Manfred
Hi Manfred,
There looks like there’s a viewport solution here: https://stackoverflow.com/questions/35769939/how-to-prevent-android-firefox-browser-to-resize-window-when-soft-keyboard-is-on
Can you try with other browsers? Like Chrome or Brave on your mobile device?
Best,
Alaa
//
Hi João,
The issue is related to the Virtual Scrolling feature.
As a workaround, set VirtualScrolling to false.
A fix is currently in QA and it will be shipped in the next update!
Best,
Alaa
//
Hi Alaa,
We are using version 3.1.6.
As requested, the sample project can be found at https://github.com/JoaoGalaverna/ComboBoxSample. I used the sampleData.json to simulate some data. You can simulate the problem trying to filter with the letter G, or add new entries to the file.
Should you need any more information, please contact me.
Best Regards,
João Paulo Galaverma
Hi João,
Unfortunately, we couldn’t reproduce the issue.
Can you please wrap up a small reproducible test sample?
Also, can you please tell us what version of Wisej.NET 3 you’re currently using?
Best,
Alaa
//
Thank you
Hi Cristian,
The TP Program is designed for customers that are:
All TP Program customers benefit from “Bulk License Prices”, hence why you see a discounted price in the documentation.
If you’re interested in the program, please contact us at sales AT iceteagroup.com, I’m sure my colleges would be happy to answer your questions!
Best,
Alaa
Hi Fu,
All you need is another SubItem!
In your case, the line of code you added could be modified to be something like:
ListviewCombox.Items.Add(“value_column1”).SubItems.Add(new ListViewItem("value_column2"){SubItems = new ListViewItem[]{new ListViewItem("value_column3")});
Or as another example:
ListviewCombox.Items.Add(“value_column1”).SubItems.Add("value_column2");
Var subItem = ListviewCombobox.Items[index].SubItems[0];
subItem.SubItems.Add("value_column3");
HTH,
Alaa
Jay,
we need more information about what you are trying to achieve. Are you talking about a DataGridView?
If you set up a compilable test case with clear questions we might be able to help but not by guessing from the description you provided so far.
Thanks in advance,
Frank
Thanks Alaa,
That appears to have fixed the issue.
Hi Chad,
Can you please try and install https://www.nuget.org/packages/Microsoft.VisualBasic/10.3.0 NuGet Package?
It appears that it would fix the issue!
Best,
Alaa
Hi Alaa,
i seems that I have found the problem. The Html-Page i’m using for testing is included in an iFramepanel, when i change the container to an Htmlpanel its’ working.
Is it not possible to access from a html code, which is included in an iFramepanel, to reach the App Object ?
The button link is calling directly the javascript href=”javascript:App.Startseite.SwitchNB();”
Manfred
Hi Chad,
We’re currently looking into this issue and we’ll notify you ASAP!
Best,
Alaa
Hi Jay,
You can access both Panel 1 and Panel 2 properties of the split container directly from the Designer.
Make sure you expand the Panel2 property in the Properties tab in Visual Studio, you can then set the ShowHeader property to true!
HTH,
Alaa