Hi Ulisses,
public beta releases of Wisej 2.1 can be found at the bottom of this page:
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
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?
Jorge,
depends on wether your DataGridView is single or multiselecting.
Find suggestions here:
Best regards
Frank
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.
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
Hi Luca ITG,
I try Application.RequestFullScreen() and Application.CancelFullScreen(). But it is not active.
You can check my app.
Thank you.
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
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
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.
Hallo Frank,
just sent you an example.
Greetings
Roger
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
Yes Frank, you are right!
It really was my oversight
Thank you
Cristian
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
Glenn,
I could not reproduce this,
Can you please provide us with a test case or more information ?
Thanks in advance.
Best regards
Frank
Thanks Mark,
it´s logged as issue #2020 and a fix will be included in the next Wisej build.
Best regards
Frank
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
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.
HTH
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
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
