All Answers

1 vote
In reply to: [SOLVED] Beta versions

Hi Ulisses,

public beta releases of Wisej 2.1 can be found at the bottom of this page:

https://wisej.com/wisej-2.1/

For more alphas, betas and prereleases you might consider becoming a Technology Partner.
Find more information here:

https://wisej.com/technology-partner/

Best regards
Frank

0 votes

Hi Frank,

Ok i can selected it with grid.rows(x).selected = true

It selected it, but the arrow in the start of the row doesn’t point to this row, normal?

0 votes

Jorge,

depends on wether your DataGridView is single or multiselecting.

Find suggestions here:

https://social.msdn.microsoft.com/Forums/windows/en-US/47e9c3ef-a8de-48c9-8e0d-4f3fdd34517e/datagridview-select-row-programatically?forum=winformsdatacontrols

Best regards
Frank

0 votes

The plan for Wisej 3 is to run under .NET Core 3 (or .NET 5 if it comes out first) on Windows, Linux and MacOS.

We had a proof of concept Wisej with Mono running well for months on a small linux machine but supporting Mono and .NET Core at the same time doesn’t make sense.

  • Luca answered Nov 12, 2019 - 12:01 am
0 votes

Hi Jorge,

can you please post the code snippet where you set the PictureBox image
and send the PNG file ?
You can either post it here or send it to frankATiceteagroup.com

Thanks in advance.

Best regards
Frank

0 votes

Hi Luca ITG,

I try Application.RequestFullScreen() and Application.CancelFullScreen(). But it is not active.

You can check my app.

Thank you.

0 votes

Hi Glenn,

The BackColor, ForeColor, and Font properties of controls within a GroupBox are by default inherited from the parent.

You can add a panel to your GroupBox and set the properties of that to override the settings of the GroupBox.

If you’re just trying to change the GroupBox label you can modify your theme by updating the properties section of the GroupBox control:

groupbox > components > legend > states > default > properties > ADD: “font”: “defaultBold”

Let me know if this helps!

Best regards,

Levie

 

0 votes

There isn’t a fullScreenApi in any browser. This is the spec https://developer.mozilla.org/en-US/docs/Web/API/Fullscreen_API

You can also use the wrapper api implemented in Wisej in JavaScript

function FullScreen() {
 var isFullScreen = Wisej.Platform.isFullScreen();
 if (!isFullScreen) {
  Wisej.Platform.requestFullscreen();
 }
 else {
  Wisej.Platform.cancelFullscreen();
 }
}

Or directly from VB.NET

 

If Application.Browser.IsFullScreen = False Then
   Application.RequestFullScreen()
 Else
   Application.CancelFullScreen()
End If
  • Luca answered Nov 8, 2019 - 10:58 pm
0 votes

We don’t support the AutoScrollPosition property at runtime, only at design time. It is explicitly hidden from the code editor and set to always return Point.Empty.

  • Luca answered Nov 8, 2019 - 10:45 pm
0 votes

Hallo Frank,

just sent you an example.

Greetings
Roger

0 votes

Hi Roger,

thanks for your post.
Can you please share a bit more details:
What Chart Control are you trying to run inside the AspNetWrapper ?
Any chance to wrap up a small test case and either post it here or send it to frankATiceteagroup.com ?

Depending on that we might modify the AspNetWrapper to match that requirement.

Thanks in advance.

Best regards
Frank

0 votes

Yes Frank, you are right!

It really was my oversight

Thank you

Cristian

1 vote

Hi Cristian,

I think you probably misunderstood that property.
It´s about changing the positions of your columns, i.e.
after setting AllowUserToOrderColumns = False they cannot drag on the column header to reposition them.

If you want to enable/disable the sorting of one or more columns please check
the SortMode property of your columns.

Hope that helps.

Best regards
Frank

0 votes

Glenn,

I could not reproduce this,
Can you please provide us with a test case or more information ?

Thanks in advance.

Best regards
Frank

0 votes

Thanks Mark,

it´s logged as issue #2020 and a fix will be included in the next Wisej build.

Best regards
Frank

0 votes

Hi Dino,

we have added a Clear() method to the ColumnFilterPanels.
Once you have pulled the latest version from Github you can clear all Filters with some code like this:

foreach (DataGridViewColumn col in this.dataGridView1.Columns)
{
   var columnFilterPanel = col.UserData?.FilterPanel as ColumnFilterPanel;
   if (columnFilterPanel != null)
   {
      columnFilterPanel.Clear();
   }
}

Best regards
Frank

0 votes

HeaderStyle.WrapMode = DataGridViewTriState.True for each column or globally

dataGridView1.ColumnHeadersDefaultCellStyle.WrapMode = DataGridViewTriState.True.

It has 3 states, when using DataGridViewTriState.NotSet it’s inherited.

  • Luca answered Nov 6, 2019 - 7:53 pm
0 votes
In reply to: Planning of features
  • Propertygrid. Added several versions ago.
  • Google Controls. They are in the open source free extensions in github.
  • TinyMCE. It’s in the open source free extensions in github.
  • ReportViewer for Crystal. You can use Crystal Report and the PdfViewer. We may add a Crystal Report premium extension for Technology Partners.
  • Filedialogs for system  and S3: This has been available for a while. System and S3 are server side file systems. It is impossible to browse files on a user computer. You can use the Upload control which has been available since the first release.
  • UserComboBox, Color dialog. Released several versions ago. The font dialog has been scrapped from the list.
  • Ribbonbar and accordion. The ribbon bar has been available for a long time in the open source free extensions. The Accordion has been released several versions ago.
  • File system for onedrive and google drive. It implements theIFileSystem interface to let the FileDialogs browse files on OneDrive and GoogleDrive, the same as it already does with Amazon S3. However, Google Drive has been scrapped since it works in weird ways. Microsoft OneDrive is still on the list.
  • Onlyoffice.org. Will be available on demand if a project requires and  there is funding.

HTH

 

  • Luca answered Nov 6, 2019 - 7:40 pm
  • last active Nov 6, 2019 - 7:40 pm
0 votes

Hi Luca,

Thanks for your time to look at the issue (we appreciate that the browsers present multiple moving targets for you guys).

The work-around seems to be OK, but I will keep an eye out for any side effects.

Regards,
Mark

0 votes

Hi,

yes this problem was fixed and will be included in the next Wisej build.

Should be released within the next few dates.

I will keep you updated.

Best regards

Frank

Showing 5421 - 5440 of 11k results