How to remove radio button default checked in zend

淺唱寂寞╮ 提交于 2019-12-11 15:49:22

问题


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.


回答1:


I Have solved my problem by chaging this line

$("input[id^='ticketId-']:first").prop('checked', true);

TO

$("input[id^='ticketId-']:first").prop('checked', false);


来源:https://stackoverflow.com/questions/52963136/how-to-remove-radio-button-default-checked-in-zend

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!