All Answers

0 votes

ASP.NET is fully supported in VS 2022.

ASP.NET is not our product. For more information on ASP.NET, please refer to their documentation: https://learn.microsoft.com/en-us/aspnet/core/?view=aspnetcore-8.0

0 votes

We will work on updating the google maps extension so that it uses google.maps.AdvancedMarkerElement instead of google.maps.Marker.

0 votes

You’ll want to set the “Options” of the CKEditor widget.

See the documentation here:

https://docs.wisej.com/api/wisej.web/content/widget#options

https://docs.wisej.com/extensions/premium-extensions/overview#options

You can even set the options in the designer.

-2 votes

CKEditor is a third-party software, not developed by us. You can refer to their documentation here:

https://ckeditor.com/docs/ckeditor5/latest/features/pagination/pagination.html

-Julie

 

0 votes

Just to clarify- your question is about the “marker”, ie Google.maps.Marker, not a “maker”, correct?

0 votes

For a very simple popup that appears in the lower right corner of the screen and disappears after a few seconds, you could use an Alertbox.
AlertBox.Show("Your Text Here");
AlertBox Documentation:
https://docs.wisej.com/docs/controls/notifications/alertbox
https://docs.wisej.com/api/wisej.web/notifications/alertbox

In your case, you probably want to use the “Form” class. Change your window so that it derives from Form.
You’ll need to set the Location of the Form so that it appears where you want it. In this example, MyCustomWindow is a class derived from Form.
MyCustomWindow form = new MyCustomWindow();
form.Location = new System.Drawing.Point(500, 500);
var result = form.ShowDialog();

Form Documentation: https://docs.wisej.com/docs/controls/containers/form

Hope this helps!

-Julie

0 votes

I would recommend the BootstrapDark-4 theme.

It is one of the prebuilt themes included in Wisej- you can change it via code like this:
Application.LoadTheme("BootstrapDark-4");

Alternatively, you can set it via Default.json:
"theme": "BootstrapDark-4"

If you want to see the source code for the BootstrapDark-4 theme, so that you can modify it for your needs, it can be found here:

https://github.com/iceteagroup/wisej-themes/blob/master/BootstrapDark-4.theme

0 votes
In reply to: Label of textbox

Hi Giorgia,

I have tried various things to try and reproduce this issue, but unfortunately I was unable to.

Can you tell us if the text that’s coming from the Database has any line breaks?

Like my colleague Frank mentioned, if you’re using a custom theme or mixin, can you please attach that ?

It’s hard to guess exactly what’s wrong from just a screenshot, we would also require you to give us info about the textbox itself (i.e. does it have custom padding or custom margins, etc…)

Ideally, you’ll need to wrap a sample with that exact same TextBox control for us to try and reproduce.

Best regards,
Alaa

//

0 votes
In reply to: Label of textbox

The problem is that if I copy the same text boxes into an empty project and I fill them from a test datatable, they are shown correctly…

0 votes
In reply to: DataGridView

Ok, but will there be a fix soon or not?

  • rdytop answered Apr 23, 2024 - 3:15 am
  • last active Apr 23, 2024 - 3:16 am
0 votes

Can you describe what you did to reproduce this bug- it sounds like you placed a DataGridView in a tab page and attached an event handler to the OnBindingContextChanged event? And you see this error when closing the tab page?

I will look into this.

0 votes
In reply to: DataGridView

Hello,

We have investigated this particular issue, and we found out that it’s actually an issue with Visual Studio itself rather than our designer.

We would suggest that you use the property grid instead of the editor UI from the designer to change the column properties.

It doesn’t happen specifically with copy pasted datagridviews, but it also can happen in a freshly created datagridview.

Another thing to try is to save the file after pasting the control, and then restart Visual Studio, that way the column is forced into being in Edit mode and all the changes would be preserved.

Best regards,
Alaa

//

0 votes

Version 3.5.5 has same problem, for now I rolled back to 3.5.4.

 

0 votes

Hi Alaa

I think the problem was that I needed to add eventlisteners for
each event and that the event I was trying to use was cellClick, not onCellClick.

So the code below works fine.

Thanks,

 

Private Sub Page1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Me.DxDataGrid1.AddListener("cellClick", New WidgetEventHandler(AddressOf DxDataGrid1_WidgetEvent))
Me.DxDataGrid1.AddListener("contentReady", New WidgetEventHandler(AddressOf DxDataGrid1_WidgetEvent))
End Sub

Private Sub DxDataGrid1_WidgetEvent(sender As Object, e As WidgetEventArgs) Handles DxDataGrid1.WidgetEvent
AlertBox.Show(
$"<b>{e.Type}</b><br/>{JSON.Stringify(e.Data)}",
MessageBoxIcon.Information)

  Application.Play(MessageBoxIcon.Information)
End Sub

0 votes

Hi Fahad,

Based on the latest information, it looks like you removed the .NET Framework 4.8 Target.

The net48 target framework is currently essential for the designer to work.

If that is not the case, then we would require a small and runnable test case as mentioned in our community guidelines here: https://wisej.com/support/question/forum-guidelines

Best regards,
Alaa

//

  • Alaa (ITG) answered Apr 19, 2024 - 3:14 pm
  • last active Apr 19, 2024 - 3:17 pm
0 votes

I’m a bit confused as to what exactly you are asking.
By “panel” do you mean a Wisej.Web.Panel? https://docs.wisej.com/api/wisej.web/containers/wisej.web.panel
Your code uses a Form (The parameter in Sub switchPanel(ByVal panel As Form) is of type Form) as in a Wisej.Web.Form https://docs.wisej.com/api/wisej.web/containers/form
Also, I’m unsure what Dashboard is – it seems to be a custom class that you created? Is it derived from Panel, Form, or something else?
By “page”, do you mean a Wisej.Web. Page? https://docs.wisej.com/api/wisej.web/containers/wisej.web.page

How do I change it, so that I can open panels On pages

So if you want to open panels instead of Forms, just use a Panel instead of a Form. If you want to open a Panel on a Page, first create a Page, and then create a Panel. If you use the template “Wisej.NET Web Page Application” for VB.NET, it will create a Page for you (Application.MainPage = new Page1() ), and then you can simply add the code to create a Panel, which can easily be done by dragging in a Panel from the toolbox in the Designer.
Code to create a panel:
Me.Panel1 = New Wisej.Web.Panel()
Me.Controls.Add(Me.Panel1)

And can change pages on panels?

To change pages/open a new Page, you can do this:
Application.MainPage = new Page1()
replace Page1 with the name of whatever page you want to show.

If you want some examples of how to create a menu in Wisej, look at the demobrowser: https://wisej-demobrowser.azurewebsites.net/
Specifically, you may want to look into the MenuBar: https://wisej-demobrowser.azurewebsites.net/#Tools%20and%20Menus/MenuBar/Features
And the Panel: https://wisej-demobrowser.azurewebsites.net/#Containers/Panel/Features

I have attached a simple example in VB.NET with 2 pages and 2 panels. Each Page contains a panel, and each panel contains a button that lets you switch to the other page.

Hope this helps! If this doesn’t answer your question, please let me know.

-Julie

1 vote

Hi Pablo,

if you want to insert some text at the current caret location in a CKEditor you can use code like this:

this.ckEditor1.Eval("this.editor.insertHtml('<i>Hi</i>')");

Best regards
Frank

0 votes

Some notes:
-aaPanel does not support ASP.NET Deployments, and therefore will not support a Wisej.NET deployment
-Between Webuzo and Plesk, Plesk is the more user-friendly option, so I would recommend looking into that.
-Whatever you select to deploy your application, make sure that it supports ASP.NET deployment. You can find many resources on the web for deploying ASP.NET applications, which will all support Wisej. NET deployment.

Unfortunately, creating a video tutorial for specific Linux deployments is out of the scope of what we can offer with our free support services, due to the large amount of time and effort involved. However, if you purchase 3 4-hour consulting packages (see https://wisej.com/services-packages/), we can look into creating a video tutorial on deploying to Plesk.

0 votes

Hi,

Thank you so much! It’s working now. I encountered an issue with my Linux Docker builder, which required me to uninstall and reinstall it. After updating my Dockerfile with your suggested modifications, everything is functioning correctly.

Initially, I tried implementing your changes on a Docker-Windows container, but I couldn’t find the apt-get application, and the NuGet packages were missing some of the libraries I needed. However, after reinstalling Docker and switching to the Docker-Linux builder, everything works perfectly.

Cheers!

 

0 votes
In reply to: DataGridView

Dear Alaa,

So previously I had uninstalled the old VSIX then installed the latest VSIX Wisej 3.5.5, here I sent a video of how the bug in the Wisej designer for datagridview on the design page looked like.

https://app.screencast.com/7MXLQh1T4BTBQ

 

 

  • rdytop answered Apr 17, 2024 - 5:25 pm
Showing 581 - 600 of 11k results