Надеюсь, что ниже - это ваш обязательный код. Я предполагаю массив объектов для template
. Функция showTemplate()
будет работать для включения / отключения кнопки send
в соответствии с флагом bulk
function showTemplate(template) {
for (var index = 0; index < template.length; index++) {
console.log(template);
console.log(template[index]);
if (template[index].isbulk === true) {
$(`.send_button`).prop('disabled', false);
} else if (template[index].isbulk === false) {
$(`.send_button`).prop('disabled', true);
}
}
}
showTemplate([{
name: "test1",
body: "test1",
isbulk: true
}, {
name: "test2",
body: "test2",
isbulk: false
}]);
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<td>
<button class="send_button btn btn-primary pull-right">Send</button>
</td>