Thanks Takao,
Logged as issue #1939
We will keep you updated on the status!
Best regards,
Levie
Hi Ulisses,
You can pull the open-source NavigationBar from https://github.com/iceteagroup/wisej-extensions
Once you download the latest version you can create a new “NavigationBarItem” class with your custom tab/alignment settings (fully customizable, use NavigationBarItem as the model)
Change the “Add” functions in the NavigationBarItem class to use your custom version “NavigationBarItemCustomized”
Build the solution, attach the DLL to your project.
Let me know if this works for you or if you need clarification!
Best regards,
Levie
Yes, 16.2 , it came out 4 days ago.
Hi Andrew,
Just to verify, you are running the latest version of VS 2019, correct? There was a known issue about missing templates in the early versions of VS2019. Try installing the latest version if you haven’t yet!
Let me know and we’ll proceed!
Best Regards,
Levie
Hola ya intente hacer todo lo que me indicaste hasta reinstale el visualstudio 2019 e instale la ultima version del wisej 2.034 y sigue lo mismo (Hello, I tried to do everything you told me to reinstall the visualstudio 2019 and install the latest version of wisej 2.0.34 and follow the same)
Hi,
One thing I have noticed the menu editor has dropdown button when I tried to edit the items, please see attached picture. I hope this will isolate some issues and I can continue to work with our project already.
Thanks.
Hi Carlos,
Did you try hitting the refresh button on the bottom of the designer window? As long as you are using a valid Wisej license it should work.
If hitting the refresh button doesn’t work, try restarting Visual Studio
If that doesn’t work you can also try reinstalling the latest version of Wisej (www.wisej.com/builds)
Let me know if these work for you!
Best regards,
Levie
Hi,
#1936 is fixed in the latest Wisej release (2.0.34).
Best regards
Frank
The application doesn’t restart. What you see is the session being created when the request hits a different process.
it’s the same as load balancing without session affinity.
Keep the default value of 1. Increasing that number doesn’t provide any benefit in this case. It’s mostly for asp.net apps with session stored on file or db that have to run long requests since aspnet cannot handle background threads easily.
if you need to start a long process with Wisej use Application.StartTask.
Hi,
thanks, this is logged as #1936 and will be fixed in the next Wisej build.
Best regards
Frank
The combobox cell editor is created only when the cell is in edit mode. If you want to render the cell in a way that looks like a combo you can do that using css or a theme mixin.
See: https://wisej.com/support/question/combobox-dropdownstyle-in-datagridview-is-not-saved
Keyboard events processed on the server have already occurred on the client browser: all server events are by definition asynchronous. The SelectionStart/Length/Text return the selection in the textbox, while you type there is nothing selected. You can use client side events if you want to handle the keyboard synchronously you can attach javascript events:
https://wisej.com/support/question/textbox-keypresseventhandler-e-handled-true-doesnt-work
On the client side you can use:
this.getTextSelectionStart(); this.getTextSelectionEnd(); this.getTextSelectionLength(); this.getTextSelection(); this.setTextSelection(start, end); this.clearTextSelection(); this.selectAllText();
You can:
This is what a theme mixin would look like:
Add MyTheme.mixin.theme in /Themes
{
appearances:{
"button":{
"inherit":"button",
"states":{
"default":{
"styles": {
"radius": 5
}
}
}
}
}
}
This is the CssStyle option:
this.button1.CssStyle=”border-radius:5px”;
This is the CssClass option:
this.button1.CssClass=”borda”;
I have already downloaded and installed the latest version 2.0.32
Hi,
Any update on this? Hope to hear from you soon.
Thanks.
Hi,
#1902 is fixed in Wisej release 2.0.32.
Best regards
Frank
Simone,
#1917 is fixed in Wisej build 2.0.32.
Best regards
Frank
Ronald,
issue #1921 is fixed in the latest build (2.0.32).
Best regards
Frank
Jorge,
#1923 is fixed in the latest Wisej development build (2.0.32).
Best regards
Frank
