Привет, ребята, я пытаюсь удалить значение по умолчанию для радио кнопка
Вот мой код:
<?php if ($this->isAllowed('order.customer.ticket-details')) : ?>
<fieldset class="order-obv-ticket">
<legend><?php echo $this->translate('order_obv_ticket'); ?></legend>
<div id="order-ticket-details"></div>
</fieldset>
<?php endif;?>
Здесьмоя функция js:
function getOrderTicketDetails(orderId, contactId)
{
$.ajax({
url: vbdURL+'/order/customer/ticket-details',
data:{orderId : orderId,
contactId : contactId },
type: 'POST',
success:function(response){
$('#order-ticket-details').html(response);
if(null != order['requestTicketId']){
$("#ticketId-"+ order['requestTicketId']).prop('checked', true);
} else {
if (0 < $("input[id^='ticketId-']").length) {
$("input[id^='ticketId-']:first").prop('checked', true);
order['requestTicketId'] = $("input[id^='ticketId-']:first").val();
}
}
}
});
}
Вот мой переключатель:
<span class="actions">
<input name="ticketId" id="ticketId-{{ticketId}}" type="radio" class="selectAll js-set-order-ticket" value="{{ticketId}}"/>
Может ли кто-нибудь помочь мне, как сделать стандартные переключатели должны быть отключены.
Заранее спасибо.