Hi Edward,
I have attached a modified version of the sample that shows how to use a DataGridViewComboBoxColumn as you described.
We have a plethora of resources, you can find more samples here: Wisej – Samples and you can always refer to our documentation here : Wisej – Documentation.
And to answer your question, you can definitely setup a DataGridView in codeand then add the ComboBoxColumn.
HTH,
Alaa
//
Hi Edward,
The doc for usage of DatagridView and DataGridViewComboBoxColumn is there : https://docs.wisej.com/docs/controls/lists/datagridview/comboboxcolumn
I attached a sample for simple usage of DataGridViewComboBoxColumn.
Best,
Kevin(ITG)
Hi
For occulting the tabs you can simply set his property visible to false when you colapse the panel and to true whe expand it
Here an image of the sample code and how it seeing
HTH
Hello,
sorry but this isn’t a viable solution. The tab buttons are bearly visible when collapsed (and still clickable) and the area below isn’t handled as an overlay but just switched visible (or not) which leaves plenty of space unused when minimized.
Hi Ugur,
Try reinstalling the .NET6 runtime.
System.Private.CoreLib is part of mscorlib.dll, it’s the runtime for .NET6.
HTH,
Alaa
Hi Niklas,
If the project is using 2.5 and you only have 3.0 installed, then it can’t use that designer.
You can install the 2.5 build from https://wisej.com/builds/
Alternatively, you can always migrate the project to 3.0, please refer to https://docs.wisej.com/docs/releases/whats-new-in-3.0/update-existing-projects for more info.
Best,
Alaa
Hi ugur,
Can you send me your sample for more details please ? If this is a private example please tell us at support@iceteagroup.com.
Best,
Kevin (ITG)
Hi Niklas,
It appears that the designer isn’t properly installed.
Can you try repairing the installation and making sure that the “Visual Studio 2022” checkbox is ticked?
Thanks!
Alaa
Hi Nicholas,
You can achieve your goal by using this configuration :
{
"dataSource": [{
"OrderID": 10248,
"CustomerID": "VINET",
"Freight": 32.38,
"Store": "Store 1",
"OrderDate": "1996-07-03T14:30:00.000"
}, {
"OrderID": 10249,
"CustomerID": "TOMSP",
"Freight": 11.61,
"Store": "Store 2",
"OrderDate": "1996-07-04T14:30:00.000"
}, {
"OrderID": 10250,
"CustomerID": "HANAR",
"Freight": 65.83,
"Store": "Store 3",
"OrderDate": "1996-07-07T14:30:00.000"
}, {
"OrderID": 10251,
"CustomerID": "VICTE",
"Freight": 41.34,
"Store": "Store 1",
"OrderDate": "1996-07-08T14:30:00.000"
}, {
"OrderID": 10252,
"CustomerID": "SUPRD",
"Freight": 51.3,
"Store": "Store 2",
"OrderDate": "1996-07-07T14:30:00.000"
}, {
"OrderID": 10253,
"CustomerID": "HANAR",
"Freight": 58.17,
"Store": "Store 3",
"OrderDate": "1996-07-09T14:30:00.000"
}, {
"OrderID": 10254,
"CustomerID": "CHOPS",
"Freight": 22.98,
"Store": "Store 1",
"OrderDate": "1996-07-10T14:30:00.000"
}, {
"OrderID": 10255,
"CustomerID": "RICSU",
"Freight": 148.33,
"Store": "Store 2",
"OrderDate": "1996-07-11T14:30:00.000"
}, {
"OrderID": 10256,
"CustomerID": "WELLI",
"Freight": 13.97,
"Store": "Store 3",
"OrderDate": "1996-07-14T14:30:00.000"
}],
"columns": [{
"field": "OrderID",
"headerText": "Order ID",
"textAlign": "Right",
"width": 120,
"type": "number"
}, {
"field": "Store",
"headerText": "Store",
"textAlign": "Right",
"width": 120,
"type": "string"
}, {
"field": "CustomerID",
"width": 140,
"headerText": "Customer ID",
"type": "string"
}, {
"field": "Freight",
"headerText": "Freight",
"textAlign": "Right",
"width": 120,
"format": "C"
}, {
"field": "OrderDate",
"headerText": "Order Date",
"width": 140,
"format": "yMd"
}]
}
Additionally, we have a plethora of resources dedicated to showing you how to integrate and use Premium extensions, please visit the links below for more information.
You would also need to refer to the documentation from any third party widget that you’re using.
HTH,
Alaa
Ruben
Maybe you have enabled the property AutoHide=true in the UserPopup control
This property close the control, not hide it
Here the docs
https://docs.wisej.com/api/wisej.web/containers/wisej.web.userpopup#autohide
Also I attach a little runnable sample
HTH
regards
Hi
thanks for write us
Wisej ribbonbar hasn’t 100% equivalent respect winforms but you can has the same functionality using a panel and puting a ribbon bar into it .
I attach a sample demo of how to achieve this.
HTH
Ruben,
you can either described to the Closed event
https://docs.wisej.com/api/wisej.web/containers/wisej.web.userpopup#closed
or use the optional onclose parameter of ShowPopup(Async)
https://docs.wisej.com/api/wisej.web/containers/wisej.web.userpopup#showpopup-x-y-onclose
Best regards
Frank
Hi Ruben
Please, can you attach a little runnable sample that reproduce the situation?
Thanks
Hi. No, I’ve only one Taskbar, not dropped additiinal ones, just running a new test project from desktop template.
Wisej.NET creates Single Page Applications (SPAs), it’s not a traditional HTML/JS/CSS page assembler. There is no navigation between HTML pages because there is only 1 page.
Usually in SPAs the browser’s navigation is done using the hash portion of the URL (called “deep linking”).
Wisej makes it available through the Application.Hash property and Application.HashChanged event (see API docs).
These are some referenced to learn more about SPAs and deep linking:
https://web.stanford.edu/class/cs142/lectures/SPA.pdf
https://gingter.org/2017/03/20/deep-link-angular-spa-iis/
In short:
Check also one of our examples with deep linking in github.
Thanks. Looks like a theme issue, logged with issue #2932. In your screenshot it appears you have two Taskbar, dropped an Taskbar component on a Desktop? The Desktop component already contains a Taskbar. The Taskbar component is mean to be an independent taskbar to be used when there is no desktop but the app needs to manage multiple floating windows.
Thanks. It’s the template wizard. You can edit csproj <TargetFrameworks> and add “net6.0;net7.0”. The wizard bug is fixed in our internal build using CultureInfo.InvariantCulture. Logged with issue #2931.
I have attached a sample data and an image of how the data is currently displaying in a devexpress datagrid control.
Regards.
It’s very hard to understand what the issue is. Seems all correct. The last row is not scrolled in. If you send a runnable test case and a description if the issue and what is the expected behavior we can try to help further.
That’s not a collapse button. It’s the app logo in the title. The click works without issues.
Private Sub NavigationBar1_TitleClick(sender As Object, e As EventArgs) Handles NavigationBar1.TitleClick
Me.NavigationBar1.CompactView = Not Me.NavigationBar1.CompactView
End Sub
