andersonfreitas / vaadin-masked-textfield

A MaskedTextfield for Vaadin
http://vaadin.com/addon/maskedtextfield
Apache License 2.0
13 stars 24 forks source link

FieldFactory problem #3

Open pczurak opened 14 years ago

pczurak commented 14 years ago

Version 0.1.1

Does not work on a Form when using FieldFactory, none of the Form fields are displaying after you maually add a MaskedTextField to the Form.

FormLayout fl = new FormLayout(); MaskedTextField tf = new MaskedTextField("Amt $####", "'$####"); tf.setValue("$123"); fl.addComponent(tf);

plus it does not work if you are using a FormLayout and CustomFieldFactory and the escape character MaskedTextField tf = new MaskedTextField("Amt $####", "'$####");

the $ never shows up in the field and you can't replace or type over the first number

Thanks

Peter

andersonfreitas commented 14 years ago

Hi Peter! I'm currently working on it, probably in this weekend I'm going to release a fix for this! Thanks for reporting!

andersonfreitas commented 14 years ago

Hi Peter, sorry for the delay and I don't know if you still having this problem, but I couldn't reproduce it on my system. Can you provide some piece of code that makes this happen? Thanks!

adavie1 commented 11 years ago

Anderson, I've just posted an issue with a link to my comments in the Vaadin forums. Hope that helps resolve this, other than this (admittedly big) issue, I think this is an excellent addon. Regards, Anthony