英文:
Cant type in text fields Vaadin
问题
I can't input anything to my text fields in Vaadin.
They seem like they are readOnly but I change it to false and it's not helping.
I'm adding links to CarForm where I create the form for my fields and CarView where I implement the CarForm.
英文:
I can't input anything to my text fields in Vaadin.
They seems like they are readOnly but I change it to false and not helping.
I'm adding links to CarForm where I create form of my fields and CarView where I implement the CarFrom.
答案1
得分: 3
似乎您使用与 Binder 一起的 Dto 类没有 setter 方法,因此 binder 将 UI 字段标记为只读。
英文:
It seems like that the Dto class you are using with Binder has no setter methods, thus binder marks the UI fields as readonly
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论