You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
executaveis/GCI.PortalCondomino/wwwroot/js/binder.js

13 lines
335 B
JavaScript

$(function () {
// Poor mans binding
$('#condominios').val($('#commonholdid').val());
$('#condominios').change(function () {
$('#commonholdid').val($(this).val());
// Force trigger onchange
$('#commonholdid').trigger('change');
});
$("#commonholdid").on('change', function () {
this.form.submit();
});
});