All Answers

0 votes

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

//

0 votes

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)

  • Kevin answered May 13, 2022 - 9:03 pm
0 votes

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

  • Paul answered May 13, 2022 - 3:51 pm
0 votes

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.

0 votes

Hi Ugur,

Try reinstalling the .NET6 runtime.

System.Private.CoreLib is part of mscorlib.dll, it’s the runtime for .NET6.

HTH,

Alaa

0 votes

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

0 votes

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)

  • Kevin answered May 12, 2022 - 12:16 pm
0 votes

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

0 votes

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.

Premium Extensions – Docs

Wisej Examples

You would also need to refer to the documentation from any third party widget that you’re using.

HTH,
Alaa

  • Alaa (ITG) answered May 11, 2022 - 11:38 am
  • last active May 11, 2022 - 11:49 am
0 votes
In reply to: Popup Lost Focus

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

  • Paul answered May 9, 2022 - 3:31 pm
0 votes

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

 

 

  • Paul answered May 9, 2022 - 2:46 pm
0 votes
In reply to: Popup Lost Focus

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

0 votes
In reply to: Popup Lost Focus

Hi Ruben

Please, can you attach a little runnable sample that reproduce the situation?
Thanks

  • Paul answered May 9, 2022 - 1:40 pm
0 votes

Hi. No, I’ve only one Taskbar, not dropped additiinal ones, just running a new test project from desktop template.

0 votes

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/

https://www.google.com/search?q=single+page+application+deep+linking+hash&rlz=1C1CHBF_enUS949US949&ei=2Oh2YrLsBamaptQPwPeuwA0&ved=0ahUKEwiyuK3Trs73AhUpjYkEHcC7C9gQ4dUDCA4&uact=5&oq=single+page+application+deep+linking+hash&gs_lcp=Cgdnd3Mtd2l6EAMyBQghEKABMgUIIRCgATIFCCEQoAEyBQghEKABOgcIABBHELADOgYIABAWEB46BQgAEIYDSgQIQRgASgQIRhgAULAEWM0HYP4OaAFwAHgAgAGJAYgBiAWSAQMwLjWYAQCgAQHIAQjAAQE&sclient=gws-wiz

In short:

  • Show or hide any page you like in any sequence when the hash changes.
  • You can set the to whatever you like to match a page or form or whatever else you want to show in connection with the browser’s prev/next buttons.
  • When you set the hash (i.e. Application.Hash = “MyPage44”) it’s added to the browser’s history.

Check also one of our examples with deep linking in github.

 

  • Luca answered May 7, 2022 - 9:58 pm
0 votes

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.

  • Luca answered May 7, 2022 - 6:04 pm
0 votes

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.

  • Luca answered May 7, 2022 - 5:56 pm
  • last active May 7, 2022 - 5:56 pm
0 votes

I have attached a sample data and an image of how the data is currently displaying in a devexpress datagrid control.

Regards.

0 votes

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.

  • Luca answered May 6, 2022 - 11:19 pm
1 vote

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

 

  • Luca answered May 6, 2022 - 3:08 pm
Showing 2581 - 2600 of 11k results