HI guys i am trying to remove the default checked value for radio button
Here is my code:
<?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;?>
Here is my js function:
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();
}
}
}
});
}
Here is my radio button:
<span class="actions">
<input name="ticketId" id="ticketId-{{ticketId}}" type="radio" class="selectAll js-set-order-ticket" value="{{ticketId}}"/>
Can anyone help me how can i make default radio buttons should be unchecked.
Thanks in advance.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…