Re: CLOB property, editing the value thru wicket viewer text field instead of download/upload file

2015-10-07 Thread Jeroen van der Wal
For long text fields I use this pattern: private String myLongTextField; @javax.jdo.annotations.Column(allowsNull="true", jdbcType="CLOB", sqlType="LONGVARCHAR") public String getMyLongTextField() { return myLongTextField; } public void setMyLongTextField(final String myLongTextField) {

Re: CLOB property, editing the value thru wicket viewer text field instead of download/upload file

2015-10-07 Thread Vladimir Nišević
Hi Jeroen, I've used that already, but I have failed thru 2000 chars restriction. Regs,Vladimir 2015-10-07 9:46 GMT+02:00 Jeroen van der Wal : > For long text fields I use this pattern: > > private String myLongTextField; > > @javax.jdo.annotations.Column(allowsNull="true",

Re: CLOB property, editing the value thru wicket viewer text field instead of download/upload file

2015-10-07 Thread Vladimir Nišević
Hi Jeroen, sorry, I was to fast with my comment, your proposal works also! Many thanks! Regs,Vladimir 2015-10-07 12:52 GMT+02:00 Vladimir Nišević : > Hi Jeroen, I've used that already, but I have failed thru 2000 chars > restriction. > > Regs,Vladimir > > > 2015-10-07 9:46