Buttons inside form labels

I’m facing a similar problem. Even when using various combinations of prevent bubbling and propagation, it’s just impossible to fire a click event on a button or icon that is to the right of an item.

Sample:

http://play.ionic.io/app/e0996f31ffaf

Any solutions out there? Am I missing the obvious? I primarily need an input with a button right that is clickable. I can resort to majorly restyling an item-input-inset but think it shouldn’t be necessary.

UPDATE: I’ve got the ‘Simple Item Button Right’ working now for both test cases.
UPDATE 2: The “fix” for the Simple Item Button Right actually breaks the click event on just the item.

FYI: The “official” answer from @Ionitron himself seems to be, “Don’t do this”. https://github.com/driftyco/ionic/issues/2311#issuecomment-74161442

FINAL UPDATE: Thanks to a co-worker, this is now working. The solution is simply not to use a label for the item. Instead just use a div. See the “FINAL SOLUTION”