Missing scroll bar [message #4623] |
Thu, 13 November 2014 21:14 |
kong
Messages: 90 Registered: December 2011
|
Member |
|
|
I noticed that when you add a new entry to the $fieldarray of function _cm_changeConfig in any class, like for example: function _cm_changeConfig ($where, $fieldarray)
{
if (!isset($fieldarray['abc'])) $fieldarray['abc'] = 'anything';
return $fieldarray;
} // _cm_changeConfig
You will find that any operation on multiple records (eg. multiple selected records with enq1 or upd1, etc) of this object won't show the scroll bar. A work around is by moving the "add entry to $fieldarray" code to another function, for example _cm_getExtraData, which does not conflict with the scroll bar.
|
|
|