Dear Frank,
I’ve been away from development activities, and I’ve just returned.
I found out what causes this problem. Right at startup of the application, I had used the command:
Application.SetSessionTimeout(600)
This command stops calls to Paint events as well as not loading images from 3.3.2.2 (including the last update 3.3.2.3).
Thus, I added the parameter below inside the Default.json instead of the command above during the application startup.
“sessionTimeout”: 600
The problem was solved. Obviously the questions are: Why? What happens with Application.SetSessionTimeout?
Best wishes,
Sérgio
Hello,
This feature is not supported. There is no automatic wrapping or ellipsis truncation for a TreeView.
As an alternative, you can set AllowHtml true and put multiline text in a node.
For example:
treeView1.Nodes[0].AllowHtml = true;
treeView1.Nodes[0].Text = "This very long text has <br> breaks because it is too <br>long to fit otherwise.";
-Julie
Hi Sascha,
You will need a professional server license to debug the premium controls.
The quote you are referring to on the page is for the using Wisej.NET standard components and all other extensions, except for the premium ones.
You would need a valid Professional-tier server license that’s activated at least one time on your local machine for you to debug it.
For more info, please contact us at sales [AT] iceteagroup.com.
Best,
Alaa
Hi Alaa – I can confirm it’s fixed in 3.2.4-preview. Thank you.
Hi Neil,
This issue is fixed in the latest 3.2.4-preview build.
Can you give it a try and let me know?
Best,
Alaa
Hi Nicholas,
You can modify the offset property to reduce the space between all popup menus, it’s under the “Menu” appearance.
Check the Screenshot for more details.
HTH,
Alaa
You could use the Shape Control, with a label on top for the text of the number.
https://docs.wisej.com/api/wisej.web/content/shape
https://docs.wisej.com/docs/controls/content/shape
To make a circle- Add a Shape object by dragging it to the designer from the toolbar. Then, in the designer, set the radius of the border to a big enough number so that it’s curved (I used 100). Then make sure the dimensions of the Shape object are a square (ie 50 by 50).
To make reusable, you can make a custom control with a Shape and a Label in it.
To create one, right-click on the project in the solution explorer-> Add -> New Item ->User Control.
Call it something like ShapeLabel.cs
Edit the code so that it extends the Shape class like so:
public partial class ShapeLabel : Wisej.Web.Shape
And then open it in the designer and add a label. You can set the modifier of the label to “Public” in the designer- this will let you access all of the properties of the label, such as the text.
shapeLabel1.label1.Text
You can simply drag the custom control into the designer from the toolbox. Note that after creating the custom control, you might need to restart Visual Studio before it appears in the toolbox. Additionally, you will need to compile the code before you can open the designer.
I have included a sample that shows both the simpler approach (adding a shape to the designer with a label on top) , and the better approach (creating a custom ShapeLabel control.)
Hi Alex,
Attached is a sample for using OpenID in .NET 4.8 with Wisej.NET.
HTH,
Alaa
You may want to check out the examples here:
https://wisej-demobrowser.azurewebsites.net/#Editors/TextBox/Input%20Types
Look at Input Type Month
Thanks,
Tim
Hi Cristian,
I fear this is due to a change in policies for autoplay.
Read more at
https://developer.chrome.com/blog/autoplay/
Best regards
Frank
Hi Poya,
please read our instructions for license activation. Maybe also consider “Local Servers without Internet Access”, depending on your docker container setup:
https://docs.wisej.com/docs/getting-started-1/license-activation
Best regards
Frank
Dear Alaa, I tried and it’s not like what I meant, But what I need select only month and year period so in component DateTimePicker can’t take only Month and Year values
Also, just wanted to point out something!
The issue you had in the first place was actually a bug, when using Application.ShowLoader, the loader would be instantly hidden as soon as there is any incoming AJAX traffic.
But, it’s best to use the control’s ShowLoader or any main container control (Page,Form) for that matter.
The fix for this issue is currently in QA, and will be included in the next Wisej.NET release!
Best,
Alaa
Hi David,
To use the Wisej-3-MobileIntegration package you must purchase Wisej.NET Mobile, which allows you to interact with the client device’s hardware, UI features, and device information.
https://docs.wisej.com/license/license-model-2023/mobile-packages-1
Wisej.NET Mobile is being deprecated in favor of Wisej.NET Hybrid.
HTH,
Levie
Hi Ramses,
I have attached a sample to showcase how you would exactly run async updates and push them to a client.
The sample doesn’t run a background task, but you can simply wrap everything and run it within the Application.StartTask() method.
Generally speaking, it’s better to use the component “ShowLoader” property instead of Application.ShowLoader, as it would be clearly visible what Window/Page/Control is waiting for the results.
Both Application.StartTask(() => { }) and Task.Run(() => { }) are correct, you can execute async functions however you want.
Let me know if this works well for you!
HTH,
Alaa
Hello,
We do have that same feature with the Wisej DateTimePicker control.
You visit the DemoBrowser application for a quick demo.
Best,
Alaa
Hi Soyer,
I understand the requirement.
Wisej.NET would work with any standard JavaScript component, as long as you implement it.
There’s a chance that your compiled angular micro-frontend code would work within the environment, but RAW Angular code is not supported!
Unfortunately, providing support for this kind of integration is out of scope of the free support provided in the Forums.
We do offer Professional Support. In case you’re interested please reach out to Sales AT wisej.com.
Best,
Alaa
I know, but I we are working with microfronend, so I need to implement some angular code, Inside the frontend wiseJ, can you understand?
Frank’s post on fixing VS hanging by updating to WiseJ.net 3.2 lead me to the solution to my issue.
I don’t know how this happened but when installing the VS extention “WiseJ.net 3.2”, it installed disabled.
Once I enabled the extention and restarted VS2022 it worked as expected and the user control showed in the designer.
Thanks,
Shawn R
Hi Neil,
A Safeguard for this issue was added with Wisej.NET version 3.2!
Best,
Alaa
