View | Details | Raw Unified | Return to bug 33260
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt (-1 / +1 lines)
Lines 55-61 Link Here
55
                <table id="noticestable">
55
                <table id="noticestable">
56
                    <thead>
56
                    <thead>
57
                        <tr>
57
                        <tr>
58
                            <th class="nosort">&nbsp;</th>
58
                            <th class="NoSort">&nbsp;</th>
59
                            <th>Time created</th>
59
                            <th>Time created</th>
60
                            <th>Notice</th>
60
                            <th>Notice</th>
61
                            <th>Type</th>
61
                            <th>Type</th>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/notices.tt (-4 / +2 lines)
Lines 61-67 Link Here
61
                            <table id="notices">
61
                            <table id="notices">
62
                                <thead>
62
                                <thead>
63
                                    <tr>
63
                                    <tr>
64
                                        <th class="nosort">&nbsp;</th>
64
                                        <th class="NoSort">&nbsp;</th>
65
                                        <th>Time created</th>
65
                                        <th>Time created</th>
66
                                        <th>Patron</th>
66
                                        <th>Patron</th>
67
                                        <th>Notice</th>
67
                                        <th>Notice</th>
Lines 69-75 Link Here
69
                                        <th>Status</th>
69
                                        <th>Status</th>
70
                                        <th>Updated on</th>
70
                                        <th>Updated on</th>
71
                                        <th>Delivery note</th>
71
                                        <th>Delivery note</th>
72
                                        <th class="nosort">Actions</th>
72
                                        <th class="NoSort">Actions</th>
73
                                    </tr>
73
                                    </tr>
74
                                </thead>
74
                                </thead>
75
                                <tbody>
75
                                <tbody>
Lines 306-312 Link Here
306
            $(document).ready(function () {
306
            $(document).ready(function () {
307
                $("#notices").dataTable(
307
                $("#notices").dataTable(
308
                    $.extend(true, {}, dataTablesDefaults, {
308
                    $.extend(true, {}, dataTablesDefaults, {
309
                        aoColumnDefs: [{ bSortable: false, aTargets: ["nosort"] }],
310
                        aaSorting: [[1, "desc"]],
309
                        aaSorting: [[1, "desc"]],
311
                        sPaginationType: "full",
310
                        sPaginationType: "full",
312
                    })
311
                    })
313
- 

Return to bug 33260