Hi Edmond,
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
Hi Eddy,
Would you be able to wrap up this issue into a small test project?
Best,
Alaa
//
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
.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.
Hello,
This issue was fixed in version 3.2 and above.
Best,
Alaa
//
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).
We are not Visual WebGui. If you have a sample that shows a specific issue please attach it.
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
Hi Alaa,
I also encountered this issue in version 2.5.38. May I know which version resolved this error?
Dear Wisej Support,
I would like to see if it is any update for this. Many Thanks.
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
Fixed with https://s3.us-east-1.amazonaws.com/setup.wisej.com/downloads/Wisej.NET-3-VS2022.vsix
Please fix the link at https://docs.wisej.com/docs/releases/whats-new-in-3.5
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
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
Best regards
Frank
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
//
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
//
Hi Ali,
Would it be possible to strip this specific control into a small reproducible test sample for us to check?
Best,
Alaa
//
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
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?
Hi Arturo,
this is now fixed in Wisej.NET 3.5.3
Best regards
Frank
