Is there a way to make the wizard popup window AND its content wider than the default size?
I need to change the selected single popup not all.
I have simple wizard form with tree view added in notebook page. My problem is, that the tree has quite a few fields and the window is not wide enough to display them all properly.
I have tried using <script>
tags inside the form and even managed to make the window wider, but the tree remained the same thus defeating the purpose.
<script>
$(document).ready(function(){
$('.modal-dialog').css({'max-width': '70%'});
$('.modal-content').css({'max-width': '100%'});
});
</script>