MaxLength für einige Eingabefelder ergänzt
git-svn-id: https://svn.libreccm.org/ccm/trunk@552 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
21bbb6d7a5
commit
ed228d8917
|
|
@ -84,6 +84,7 @@ public class ArticleInJournalPropertyForm
|
|||
"publications.ui.articleinjournal.issn").localize()));
|
||||
ParameterModel issnParam = new StringParameter(ArticleInJournal.ISSN);
|
||||
TextField issn = new TextField(issnParam);
|
||||
issn.setMaxLength(9);
|
||||
add(issn);
|
||||
|
||||
Calendar today = new GregorianCalendar();
|
||||
|
|
|
|||
|
|
@ -92,6 +92,7 @@ public class InternetArticlePropertyForm
|
|||
ParameterModel issnParam =
|
||||
new StringParameter(InternetArticle.ISSN);
|
||||
TextField issn = new TextField(issnParam);
|
||||
issn.setMaxLength(9);
|
||||
add(issn);
|
||||
|
||||
Calendar today = new GregorianCalendar();
|
||||
|
|
|
|||
|
|
@ -66,7 +66,8 @@ public class PublicationWithPublisherPropertyForm
|
|||
"publications.ui.with_publisher.isbn").localize()));
|
||||
ParameterModel isbnParam = new StringParameter(
|
||||
PublicationWithPublisher.ISBN);
|
||||
TextField isbn = new TextField(isbnParam);
|
||||
TextField isbn = new TextField(isbnParam);
|
||||
isbn.setMaxLength(17);
|
||||
add(isbn);
|
||||
|
||||
add(new Label((String) PublicationGlobalizationUtil.globalize(
|
||||
|
|
|
|||
Loading…
Reference in New Issue