Subversion Repositories SmartDukaan

Rev

Rev 35104 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 35104 Rev 35268
Line 275... Line 275...
275
                            </thead>
275
                            </thead>
276
                            <tbody>
276
                            <tbody>
277
                            <tr class="gift-row">
277
                            <tr class="gift-row">
278
                                <!-- First Column -->
278
                                <!-- First Column -->
279
                                <td colspan="2">
279
                                <td colspan="2">
-
 
280
                                    <div class="mb-3">
-
 
281
                                        <label class="fw-bold"> <strong class="text-black">Default</strong></label>
-
 
282
                                        <input type="radio" name="defaultGift" class="default-gift-radio" checked>
-
 
283
                                    </div>
280
                                    <div class="row">
284
                                    <div class="row">
281
                                        <div class="col-md-12 mb-3">
285
                                        <div class="col-md-12 mb-3">
282
                                            <label>Gift Name <span class="text-danger">*</span></label>
286
                                            <label>Gift Name <span class="text-danger">*</span></label>
283
                                            <input type="text" class="form-control gift-name" name="name"
287
                                            <input type="text" class="form-control gift-name" name="name"
284
                                                   placeholder="Gift Name" required>
288
                                                   placeholder="Gift Name" required>
Line 395... Line 399...
395
            "bAutoWidth": false,
399
            "bAutoWidth": false,
396
            "pageLength": 20,
400
            "pageLength": 20,
397
        });
401
        });
398
    });
402
    });
399
 
403
 
-
 
404
    $(document).on('change', '.default-gift-radio', function () {
-
 
405
        if ($(this).is(':checked')) {
-
 
406
            $('.default-gift-radio').not(this).prop('checked', false);
-
 
407
        }
-
 
408
    });
-
 
409
 
400
</script>
410
</script>