I have two problems with record mode:
1. Long text doesn't word wrap
2. Form position. When it is high enough it appears with hidden top part.
http://clip2net.com/s/6ZCdaL
1 Answers
1) To make word wrapping in view record dialog, add following css:
<style>
.ui-jqdialog-content .CaptionTD
{
vertical-align: top;
}
.ui-jqdialog-content .form-view-data
{
white-space: normal;
}
</style>
2) I've emailed you that will resolve it. However you may want to increase view dialog width and height for proper display.
e.g.
$grid["view_options"]['width']='500';
$g->set_options($grid);
Your Answer