Update form with UniformJs after any changes on uniform elements

When you make any changes on a form with UniformJs and if you make changes on the form such uncheck a checkbox, you must update your changes on uniform elements.

// make a checkbox (uniform element) checked
$('#checkbox').prop('checked',true);

// update uniform element
$.uniform.update('#checkbox');

// or you can make update for all uniform elements in the form
$.uniform.update();