Hello, I have been using jQuery for a long time. I need to get the identifiers of checked items. I have all my flags in the form of strings located inside the container, and I want to get the identifiers of all the checked flags.
I would use
$("#container input:checkbox")
to get all the checkboxes in this container, and then check which ones were checked.
To do the same in ExtJS, I used the get method and did
Ext.get('input')
which gives me all the input elements, but I still need to check if they are of type "checkbox", is there a way to get only the flag elements from the DOM?
macha
source share