Hi, thought i'd give this a bump
The differences in changelog vs steps to move from 10.09.03 are listed as follows:
1-Object type "File" now available for uploading files/documents into fields of mysql type BLOB.
Code: Select all
1- The Form that is used to create Objects needs to be changed in the 'zzsys_form' table. <br>
The primary key for this row is 'object'<br>
You will need to manually edit the 'sfo_javascript' field using PHPmyAdmin. <br>
Remove the following javascript.<br>
(Otherwise file objects won't be allowed in Subforms)<br>
<pre>
case 'file':
returnCode = validateNotOnSubform('File',parentType);
break;
</pre>
2-Browse screens will extend wider if width of columns become greater than the default width.
Missing
3-Browse screen text strings that match search criteria will be highlighted with the css class 'browsematch'.
Code for this listed below, but suspect its missing the SQL to actually use the new css class.
Code: Select all
2-Run this sql to create css class 'browsematch'..
INSERT INTO `zzsys_style` (`zzsys_style_id`, `sst_class`, `sst_description`, `sst_custom`) VALUES
('14c748b17004e5', '.browsematch', 'hightlights matching search strings in the browse screen.', '1');
INSERT INTO `zzsys_style_property` (`zzsys_style_property_id`, `ssp_property_name`, `ssp_property_value`, `ssp_zzsys_style_id`) VALUES
('14c748b1701eca', 'color', 'red', '14c748b17004e5');
Following are missing:
4-Hash Variables can now be used in the 'Default Filter for Browse Screen' property for button objects.
5-A new JavaScript function called nuGetRow() has been added to return the last subform row that had focus.
6-A new JavaScript function called nuGetRowId() - returns the Primary Key value for the Subform row with focus.
7-A new JavaScript function called nuGetRowObjectValue() - returns the Object (column) value for the Subform row with focus.