All Answers

0 votes

Hi Maestro,

thanks for the sample. You are using the wrong control type.
The sample that you showed from the ThemeBuilder uses a ToolBar with Buttons, not a MenuBar.

Best regards
Frank

0 votes

I created a new project and same thing, here is the attachment.  Thanks in advance.

  • Maestro answered Dec 23, 2025 - 9:35 pm
  • last active Dec 23, 2025 - 9:38 pm
0 votes

Hi!
I have the same problem… How did you solve it?

0 votes

ClientClipboard uses the browsers clipboard api and there is no way around it.

You can try Clipboard.SetClientText(text). See docs. Uses the only possible alternative through the old execute api. There is no other way.

api/wisej.web/general/wisej.web.clipboard

  • JD answered Dec 22, 2025 - 2:02 pm
0 votes

Thank you for your quick response.

I’ve replicated the same code in another sample application and it’s working fine but I’m still having issues in the main application, so I will keep looking at or might find an alternative way to paste strings.

 

0 votes

Hi Shabaz,

please check these 3 points. If still not clear please send a runnable test case that shows the issue:

  • Clipboard access requires user interaction (e.g., a button click).

  • The method is called outside an event handler (like Load, Timer, Async Sub without user input).

  • Your site isn’t served from a secure context (HTTPS) — required by most browsers for clipboard access.

Best regards
Frank

 

0 votes

As JD answered, there is no specific setting to turn it on/off.

Please attach a compilable test case that we can inspect further.

Best regards
Frank

0 votes

You can manage the Application SessionTimeout Event….

0 votes

sessionstate is not a Wisej option. It’s Asp.net. The session timeout in wisej is an option in default.json – refer to extensive online documentation.

If you have a memory leak in your code use the memory profiler to find out which root in your code is holding references.

You don’t need to change anything related to the GC. It’s all handled automatically by .NET. Wisej doesn’t have anything to do with memory management and there is nothing for you to change other than avoiding memory leaks.

Memory leaks in .NET occur when you have a root (see .NET documentation about roots and garbage collection) that holds on a reference. It’s all standard .NET stuff – it’s not and cannot be changed by wisej or any other framework.

 

 

  • JD answered Dec 21, 2025 - 5:34 pm
0 votes

Thanks

0 votes

Call Show(). There can be only 1 active page. Use the docs: https://docs.wisej.com/docs/controls/containers/page

  • JD answered Dec 19, 2025 - 11:39 am
0 votes

Somehow it is not showing up for me. Did I turn off a property for that?

  • Maestro answered Dec 19, 2025 - 12:30 am
0 votes

It’s automatic. Add child MenuItems to a menu item and it will show the down arrow or right arrow when floating.

  • JD answered Dec 18, 2025 - 6:58 pm
0 votes

Here are some things you can check:

1. Time Sync / System Clock

If your machine’s clock is off, activation can fail because licensing validation uses timestamps.
Ensure your system date/time is correct.

2. Internet Access During Activation

Community Edition requires contacting the Wisej license server once to validate the key.
If your network blocks outbound traffic (firewall/proxy), you may see an activation error.

Try temporarily enabling internet access or running on a network without strict outbound filtering.

3. Go to Support -> Account and verify that the license is still active and has not expired.

If all this fails, please email support AT wisej.com with your license key and the error message and we will look into this further.

0 votes

Hi Julie – please find the requested test project in attached file. HTH.

0 votes
In reply to: DevExpress Gridcontrol

https://supportcenter.devexpress.com/ticket/details/t233080/datagrid-how-to-set-row-height

https://js.devexpress.com/jQuery/Documentation/ApiReference/UI_Components/dxDataGrid/Row/

Wisej doesn’t change the way devextreme works. You need to write javascript. Use the Dx documentation, once you know how to change the row height in javascript, post a working sample using any framework and in case you can’t do the same using Wisej I’m sure someone will help you.

  • JD answered Dec 16, 2025 - 11:22 am
0 votes

Solution 1 seems to work for us. Cookies in web browsers are still functional with several current web browser implementations.

Thank you Julie.

1 vote

The theme would have to be a .theme JSON file, so if you got it from another vendor it’s likely in the wrong format. Just as you cannot use a devexpress theme with telerik or a wordpress theme with asp.net. Any theme from any vendor is not interchangeable.

1 vote

Themes are simply JSON files. You can open any theme file in the theme builder, doesn’t matter who made it.

For more details on using custom CSS in your theme, see here: https://docs.wisej.com/theme-builder/user-interface/css-editor

0 votes

Using Application.Navigate to access the html file is pretty simple.

Simply add the html file to your project, ie myhtml.html.

Then access it with Application.Navigate.

Application.Navigate(“myhtml.html")

See attached test case.

 

Showing 41 - 60 of 11k results