Hello Enrico,
Thank you for the images, and for the report. I tried to reproduce the issue with the recent minor version (v2009 vol 2.10) of DX controls, but failed. Please take a look at the attached example. Does it work fine in your environment?
Thanks,
Vest
the problem is not the length of caption, but the rendering of IE7
Hello Enrico,
Thank you for your patience. Our developers examined the issue, and found the real reason why the Customization Window is rendered differently in IE7 and FireFox. In fact, this is a IE7 bug, which is fixed in IE8: a table with the 100% width within a scrollable div behaves this way.
A possible fix for IE7 is hard to implement, because in involves multiple corrections on the client side. We hope that the bug doesn't affect your application too much, because it seems that everything works fine, and the popup fits all editors well.
The same behavior was previously discussed in the following thread: Scrollbar hides sorting icon of ASPxGridView CustomizationWindow.
Thanks,
Vest
this is my simple solution using jquery
$(document).ready(function() {
if($.browser.msie) $("div.dxgvCustomization_SoftOrange").find("table:first").wrap('<div style="display:inline-block" />');
});
just add another div inside dxgvCustomization with style='display:inline-block'
<div class="dxgvCustomization_SoftOrange" style="height:170px;width:250px;overflow:auto;">
<div style='display:inline-block'>
<table cellspacing="3" cellpadding="0" border="0" style="width:100%;">
....
</table>
</div>
</div>
you can use a class to change the behavior for different browsers
Is your intention to post an answer to your own question?
- If so, then proceed.
- If you simply wanted to post additional information, ask for further clarification, or to just say "Thanks!", please click Leave a Comment.
- If you wish to edit your original question, please use the Edit button in the Toolbox at the top right corner of that entry.
Facebook
Twitter
Google+