All Answers

0 votes

Hi Edmond,

  1. Do I have to create an actual mobile app that just goes to the site and load the WiseJ app pages ? Or can the app link be added to the device home screen as in a PWA ?

You can add shortcuts to a given URL on all platforms: iOS, Windows, Android, and macOS. You don’t need to deploy it as an actual mobile app through the app store. You can also use the Wisej.NET PWA Project Template in Visual Studio if you want to deploy as a PWA. Either way works.

2. I don’t really want to deal with publishing actual apps to the different app stores.

You can use the shortcuts:

https://www.macrumors.com/how-to/add-a-web-link-to-home-screen-iphone-ipad/

https://lifehacker.com/how-to-add-a-website-shortcut-to-your-android-home-scre-1849125415

3. How can I remember who this user is so they don’t have to log in all the time after the initial order is placed and we know who they are. Can some kind of token be stored locally on their device and we can read it from WiseJ ?

You can use Application.Browser.LocalStorage, which is persisted across sessions:

https://docs.wisej.com/api/wisej.core/general/wisej.core.localstorage

https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage

 

HTH,

Levie

  • Levie (ITG) answered Jan 8, 2024 - 6:24 pm
  • last active Jan 8, 2024 - 6:25 pm
0 votes

Hi Eddy,

Would you be able to wrap up this issue into a small test project?

Best,
Alaa

//

0 votes
In reply to: Wisej.NET Desktop

Wisej.NET Desktop is an executable that can run wisej applications locally. It’s replaced by Wisej.NET Hybrid.

You are referring to the Desktop Project Template, which is unchanged and unrelated.

HTH

  • Luca answered Jan 8, 2024 - 11:50 am
0 votes

.NET 48 is widely used by a large number of projects in production. We don’t see any reason not to keep supporting it for the foreseeable future. There are many systems that cannot work on NET core due to a lack of a proper implementation.

Wisej.NET 4 will include a designer for NET Core.

This issue doesn’t appear to identify any bug. Multitargeting and editing csproj js is normal.

 

  • Luca answered Jan 5, 2024 - 1:10 pm
0 votes
In reply to: Application Error

Hello,

This issue was fixed in version 3.2 and above.

Best,
Alaa

//

0 votes

To answer your second question, the ValidatingType is supported for the MaskedTextBox control and not for the DataGridViewMaskedTextBoxColumn. See ValidatingType in the api docs for the functionality. A phone doesn’t have a validating type, there is column next to it that should say (None).

  • Luca answered Jan 3, 2024 - 5:35 pm
0 votes

We are not Visual WebGui. If you have a sample that shows a specific issue please attach it.

  • Luca answered Jan 3, 2024 - 5:27 pm
0 votes
In reply to: Stress Test Tool

Hi Bill,

setting up jMeter for your specific application is beyond Wisej.NET support.
You can get an individual quote for our Professional Services from SalesATwisej.com

Best regards
Frank

0 votes

Hi Alaa,

I also encountered this issue in version 2.5.38. May I know which version resolved this error?

0 votes
In reply to: Stress Test Tool

Dear Wisej Support,

I would like to see if it is any update for this. Many Thanks.

 

  • Bill answered Jan 3, 2024 - 6:41 am
0 votes

Hi Gabriele,

thanks for confirming it fixed and pointing me to where you found the link (was just about to ask about it).

I have fixed the links in our documentation.

Best regards
Frank

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

Showing 1021 - 1040 of 11k results