All Answers

0 votes

Hi Ali,

you can use the AutoValidate property that’s supported by any Container (Form, Page, User Control etc.):

https://docs.wisej.com/api/wisej.web/enumerations/wisej.web.autovalidate

Best regards
Frank

0 votes

Hi Gabriele,

can you please try upgrading the Wisej.NET designer to 3.5.3 ?

This should fix that issue.

You can download the updated designer here

https://wisej.com/builds/

Best regards
Frank

0 votes

Hi Lautop,

What you’re seeing is not a bug, it’s actually the default (or native in this case), implementation of the “Month” input type.

Each browser has its own way of rendering input type fields, you can try them out yourself at https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/month

Or, if you want a consistent option for your UI, I would suggest that you use the DateTimePicker control!

Best,
Alaa

//

0 votes

Hi Nicholas,

It is indeed a missing property, I’ve logged it as an enhancement internally and it should be included in the next release!

What you can do now, is extending the “BarDataSet” class as follows:

public class EnhancedBarDataSet : BarDataSet
{
public int BorderRadius { get; set; }
}

Usually, if a property is missing in our implementation, you can extend the base class and enhance it yourself, or you can add it to the source code and compile it yourself!

All of our non premium extensions are open-source, and you can find them on GitHub !

HTH,
Alaa

//

0 votes

Hi Ali,

Would it be possible to strip this specific control into a small reproducible test sample for us to check?

Best,
Alaa

//

0 votes
In reply to: Bind data to UI

Hi Ali,

this can be achieved by implementing the INotifyPropertyChanged interface.
Find a sample here

https://github.com/iceteagroup/wisej-examples/tree/3.5/DataBinding

Best regards
Frank

0 votes

fresh wisej web application was ok after create but after update wisej3 from 3.1 to 3.5 the scrollablecontrol problem came

csproj file has already this:

<ItemGroup Condition=”‘$(TargetFramework.TrimEnd(`0123456789`))’==’net'”>
<Reference Include=”Microsoft.CSharp” />
<Reference Include=”System.Windows.Forms”><Aliases>swf</Aliases></Reference>
<Reference Include=”System.Data.DataSetExtensions” />
<Compile Remove=”Startup.cs” />
<Content Include=”Startup.cs” />
</ItemGroup>

what can i do?

0 votes

Hi Arturo,

this is now fixed in Wisej.NET 3.5.3

Best regards
Frank

0 votes

Hi Uwe,

you can find a sample of how to use the dxDataGrid as part of our Premium extensions here

https://demo.wisej.net/DevExtreme/#dxDataGrid

And the source code here

https://github.com/iceteagroup/wisej-demobrowser/blob/main/Wisej.DemoBrowser.Premium/Wisej.Web.Ext.DevExtreme.Demo/Component/dxDataGrid.cs

You might as well want to check out some older integration blog article that we published:

https://wisej.com/blog/integration1/

Best regards
Frank

0 votes

Hi Eddy,

did you install Wisej.NET both for VS 2019 and VS 2022?

You can find the installers here, maybe you just installed it for 2019 yet?

https://wisej.com/builds/

Best regards
Frank

0 votes

PROBLEM “SOLVED”

Hello Frank,

I installed a “new/old”  VS2019 and everything works fine !

I did re-install the vs2022 to try to solve my problems, but it did not help 🙁

So, I found a workaround without knowing exactly where the problem is…

Best regards,

Eddy.

 

 

0 votes
  • You are adding the same node to multiple parents.
  • ShowRootLines doesn’t show any line (the comment is wrong). When false it doesn’t show the root open/close button. Lines are not supported.
  • There are +/- icons displayed correctly (depends on the theme)
  • The icons are also all correct.

Once you fix your code it all works fine. See screenshot.

 

 

  • Luca answered Dec 27, 2023 - 5:47 pm
1 vote

In addition to Julie’s great answer I have put a video online on Youtube that demonstrates how to edit data in modal dialogs. It also shows how to use a BindingSource.

The video can be found here: https://www.youtube.com/@iceteagroup

0 votes

Any Solution?

0 votes

Hello Frank,

I still cannot see where the problem is 🙁

I started a super small project, a form with two buttons and no events attached on it.

I just cannot see them in the designer window 🙁

I enclosed some files just in case you could trace a problem.

Thanks for your help.

Best regards,

Eddy.

ps: I cannot post the whole zipped project because the zip exceeds 3,9Mb

0 votes

Hello Frank,

I just had the forum response notification and I did not check the documents your are mentioning yet.

Thank you so much for your reaction !!!

I will keep you aware of  any changes

Best regards,

Eddy.

 

0 votes

Hi Eddy,

the theme you have selected in the designer may not be the same you chose at runtime of your application.

Find more information here

https://docs.wisej.com/docs/concepts/theming

Best regards
Frank

0 votes

Hi Uwe,

if you are using a library that is .NET core only you need to handle the multi targeting and reference it for .NET 8 only

Find more information here

https://docs.wisej.com/docs/releases/whats-new-in-3.0/multi-targeting

Best regards
Frank

0 votes

Hi Ali,

Application.Update () can take any Wisej object as parameter and the result is always the same:
The client syncs with the server. So this is the recommended approach to update the UI after a background task.

The 2nd call is totally unrelated to this and cannot be used as a replacement for the 1st call.

Best regards
Frank

Showing 881 - 900 of 11k results