Загрузка данных


<!-- БЫЛО -->
<div>
    <input type="checkbox" id="check1">
    <label for="check1">Исключать заявления с предоставленной справкой</label>
</div>

<!-- СТАЛО -->
<div class="checkbox" style="margin: 8px 0 12px 0;">
    <label>
        <input type="checkbox" id="check1">
        Исключать заявления с предоставленной справкой
    </label>
</div>






<!-- БЫЛО -->
<button id="findButtonId" ...>Найти</button>

<!-- СТАЛО -->
<button id="findButtonId" name="findButtonId" type="button" class="btn btn-success" 
        data-loading-text="Отбор..." style="margin-right: 8px;">
    <span class="glyphicon glyphicon-search" aria-hidden="true"></span>
    Найти
</button>
<button id="cleanFilter_period" type="button" class="btn btn-warning">
    <span class="glyphicon glyphicon-trash" aria-hidden="true"></span>
    Сбросить
</button>






$('#cleanFilter_period').on('click', function () {
    $('#filter\\.start_period').val('');
    $('#filter\\.end_period').val('');
    $('#filter\\.contract_activity_type_p').val('');
    $('#check1').prop('checked', false);
    contractInPeriod.reload();

    $('#agent_name_fl').select2('val', null);
    agent_id = null;
    checkParamsPeriod();
});



$('#filter\\.contract_activity_type_p').val('');