CT Image
Beschreibungsfeld auf 1000 Zeichen verlängert. Siehe Ticket #549 Zur zeit kein Update-Skript vorhanden. git-svn-id: https://svn.libreccm.org/ccm/trunk@1057 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
ff1f223578
commit
962227d4e6
|
|
@ -12,7 +12,7 @@ object type Image extends ContentPage {
|
|||
BigDecimal[0..1] height = ct_images.height INTEGER;
|
||||
|
||||
String [0..1] caption = ct_images.caption VARCHAR(400);
|
||||
String [0..1] description = ct_images.description VARCHAR(500);
|
||||
String [0..1] description = ct_images.description VARCHAR(1000);
|
||||
String [0..1] artist = ct_images.artist VARCHAR(200);
|
||||
Date [0..1] publishDate = ct_images.publish_date DATE;
|
||||
Boolean[0..1] skipDay = ct_images.skip_day;
|
||||
|
|
|
|||
|
|
@ -94,7 +94,7 @@ public class ImagePropertyForm
|
|||
|
||||
add(new Label(ImageGlobalizationUtil.globalize("cms.contenttypes.ui.description")));
|
||||
ParameterModel descriptionParam = new StringParameter(Image.DESCRIPTION);
|
||||
descriptionParam.addParameterListener(new StringInRangeValidationListener(0, 500));
|
||||
descriptionParam.addParameterListener(new StringInRangeValidationListener(0, 1000));
|
||||
TextArea description = new TextArea(descriptionParam);
|
||||
description.setRows(10);
|
||||
description.setCols(60);
|
||||
|
|
|
|||
Loading…
Reference in New Issue