Version 1.7.2.2 comes with the following
changes:
- Text Items
with gradient background.

The TextItems whose Implementation Class is set to
LAF_XP_TextField and LAF_XP_TextArea can have a gradient background
via the new SET_GRADIENT method.
Set_Custom_Property( 'EMP.EMPNO',
ALL_RECORDS,'SET_GRADIENT'
,'#A4BEFF,#fff,#CCDCFF,#467BFF' ) ;
You can highlight the current record vith the
SET_CURRENT method:
Set_Custom_Property('EMP.EMPNO', ALL_RECORDS,
'SET_CURRENT' ,'false') ; Set_Custom_Property('EMP.EMPNO',
1,
'SET_CURRENT' ,'true') ;
You can also give a border
color:
Set_Custom_Property(
'EMP.EMPNO', ALL_RECORDS, 'SET_BORDER' ,'1,#fff' );
Test the new /fmb/test_laf_gradient_fields.fmb sample
dialog.
It uses the new CSS sections add at the end of the /css/forms.css
file.
Take the new forms.css
(or at least the sections added to the end) and re-compile the
laf.pll
- CSS.
The CSS can now use all the Enhanced Text features in the block
title (type:title), like box, justify or image.
- bug
correction.
Corrections in the DrawLAF Java Bean concerning the drawing
enhanced texts. Also correction in the Forms 11g version
(laf_11112.jar).
See the old version
new
features.
|