here vehicleTypeModel(position):

      private IModel vehicleTypeModel(final TBPosition position)
      {
        return new Model()
        {
          private static final long serialVersionUID = 1L;

          @Override
          public Object getObject()
          {
            return position.getVehicleType();
          }

          @Override
          public void setObject(final Object object)
          {
            position.setVehicleType((String) object);
          }
        };
      } 

-----Ursprüngliche Nachricht-----
Von: splitshade [mailto:martin.dil...@googlemail.com] 
Gesendet: Donnerstag, 6. Oktober 2011 12:54
An: users@wicket.apache.org
Betreff: Re: set a TextField Componet to readonly

The interesting part is not visible in your source, the Method: 
vehicleTypeModel(position)

You could use some kind of readOnlyModel here -> Please check 
ReadOnlyPropertyModel for example.

regards

Martin

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/set-a-TextField-Componet-to-readonly-tp3877659p3877723.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to