Hi Simone,
Desktop.TaskbarPosition is available in dev build 1.4.59.
Best regards
Frank
Hi Corvin,
WJ-8643 is fixed in dev build 1.4.59.
Best regards
Frank
Hi Harald,
WJ-8642 is fixed in dev build 1.4.59.
Best regards
Frank
Hi Edmond,
WJ-8633 is fixed in our latest dev build (1.4.59.
Best regards
Frank
Hi Bernhard,
bug fix is included in Wisej dev build 1.4.59.
Best regards
Frank
Hi,
from the Stack Trace it looks like a mismatch in the Wisej dlls. Can you please check if you still have an older version of Wisej.Core.Dll as a local copy in your projects ? Please try to clean up and recompile your project(s) to see if that fixes these problems.
Hope that helps.
Best regards
Frank
Hi Shawn,
yes you can use Application.LoadTheme (“Clear-2”) for example.
Best regards
Frank
Hi Corvin,
we looked at it and from what we found ReadOnly is not the same as Disabled.
The DataGridView does not have the Disabled property for button or linked cells.
So you could either create a custom column/cell that adds the Disabled property
or simply ignore the click when ReadOnly = true.
We´ll add the Disabled property as enhancement request WJ-8689.
Best regards
Frank
Hi Edmond,
we recommend to either merge the updated themes with your custom theme (e.g. using WinMerge) or to use a mixin instead if the changes are not widespread. Mixins can also be edited in the Theme Builder and you can test it with multiple base themes.
Best regards
Frank
Thank you for the quick response!
Hi Shawn,
you can find an answer here:
https://wisej.com/support/question/datagridview-row-header-and-column-header-height
Hope that helps.
Best regards
Frank
The javascript code you attached calls select() when a valid digit is typed:
if ('+-1234567890'.indexOf(key) == -1)
e.stop(); <--- this is when an invalid digit is pressed.
else
this.select(); <--- select() is not a valid function. "this" is a widget not an element.
should be:
if ('+-1234567890'.indexOf(key) == -1){
e.stop();
this.selectAllText();
}
HTH
Hi Luca,
I agree that there is a lot of options to set for the ckeditor. The idea behind using the ckeditor was to be able to get the whole modified stream, to be able to archive it as a new filled document. The presented document being template, and the saved document the filled one.
Extracting fields values is also clearly interesting and wanted in parallel for Db archiving of the values only.
For the moment I digged a little into the ckeditor config and could remove the taskbar buttons, but it’s effectively not locked to only change the document input fields.
{ "toolbarGroups": [], "enableContextMenu": "false" } Attached is a screenshot for others wanting to experiment with the ckeditor config options inside Wisej. I will further experiment. Regards.
Hi Tim,
for showing the combobox arrows also in non edit mode, you can use a mixin that Luca created:
https://wisej.com/support/question/combobox-dropdownstyle-in-datagridview-is-not-saved
See last answer.
Best regards
Frank
Hi Tim,
we are currently developing a FilterPanel extension that will add filtering capabilities to DataGridViews. It´s in finalization and testing state and we will also publish a blog that will explain the details. I think it will be ready by end January.
Will check the combobox question now.
Best regards
Frank
Hi Orel,
thanks, I think it´s clearer now. I have logged enhancement WJ-8673 and we will add an option to Wisej.
Will inform you when it´s available.
Best regards
Frank
Both Web.Forms are modal dialogs, the first dialog calls the second one and only the second one is Topmost = true. It appears the behaviour does not occur when I put the thread to sleep for at least two seconds.
Hi Frank,
this property is not what i’m looking for
please see the wanted behavior and current accordion behavior with files attachments.
Thanks,
Orel
Hi Orel,
did you try this property ?
https://wisej.com/docs/html/P_Wisej_Web_Accordion_SelectedOnTop.htm
Best regards
Frank
@Eidinger;
It would be wonderful if you can share a sample. That was also my old question and try.
Thank you.
