If you render all the UI components in a form, you can call 'serialize' method to get the serialized value or call 'submit' method to post the form.
$('#ff').form('submit');
You also can attach the 'onChange' event on the form to listen to what component's value is changed.
$('#ff').form({
onChange: function(target){
console.log(target)
}
})