As the title says if you have dhxForm inside a dhxWindow and one of the form elements (radio group for example) has a helpMessage property, the popup is being displayed behind the window and is impossible to be read by the user.
1 Like
Could you please, provide a complete demo or a demo link, where the problem can be reconstructed, as the following snippet seems to work correctly:
https://snippet.dhtmlx.com/aeaeovcp
For me the issue was that i use dhx5 and 8 on the same page and it turns out they share the class dhx_tooltip. I needed to change my code to load dhx8 suite css last and also i needed to override the display property of dhx_tooltip in my own code:
.dhx_tooltip{
display:unset !important;
}
thanks @sematik for trying it out in a minimal example which i didn’t do until now because i just assumed that it is a bug.