VCLICK event (or touch) does not work with fieldset

VCLICK event (or touch) does not work with fieldset

Hello,

I have a problem, here is my code:

  1. d.sorter = $(list).closest(":jqmData(role='page')").find(".listview-sorter");
  2.  d.sorter.delegate(".ui-radio", "vclick", function(t) {
  3.       // DO STH...
  4.  }); 
But it does not work, event is never fired... Same comes with "touch" event, only "click" event works, which is not enough for me since I develop it for mobile.
I can't bind events to .ui-radio elements directly since they are not yet initialized (returns length 0).

Any idea how to make it work?