I’m adding a radio group to a toolbar in Ext JS, but my on check event is not working with it. What should I do to identify the cause of the problem?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you’re asking why an event handler isn’t firing on an
Ext.form.RadioGroup, you need to make sure you’re listening on the right event, and make sure that the handler is registered properly. All the events that the RadioGroup has are listed in the link above.Assuming, for example, that you want to check that the ‘change’ event is being fired correctly, try the following code:
In the absence of information, this is all the help I can provide.