Replies: 1 comment 2 replies
-
I'll check this, events might be not triggered |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to achieve the equivalent to the following for
material:TextField
andmaterial:EditorField
:i.e. I want to react to certain events like Focused, Unfocused, Completed etc. that exist for plain MAUI controls.
Obviously, the naive approach
does not work (I guess since InputField is inherited from Grid?)
Edit: I have checked the docs and only found validations, which are not doing quite what I want.
So if I want to do achieve this and not rely on an InputForm validation triggered by a separate button press, how would I go about it?
I know that everything regarding Behaviors for custom controls is not trivial (attached behaviors, etc.). Is there something missing in the implementation, or did I miss anything in the docs?
Edit 2: On further attempts, I noticed that for the following:
Beta Was this translation helpful? Give feedback.
All reactions