Lines 124-135
Link Here
|
124 |
<h3 id="mana_search_result_label"> Mana Search</h3> |
124 |
<h3 id="mana_search_result_label"> Mana Search</h3> |
125 |
</div> |
125 |
</div> |
126 |
<div> |
126 |
<div> |
127 |
<form id="search_form" style="margin-left: 5%"> |
|
|
128 |
Please enter a few key words: |
129 |
<input type=text id=mana_search_field> |
130 |
<input type=button class="mana_search_button" value="Search"> |
131 |
</form> |
132 |
<div class="modal-body"> |
127 |
<div class="modal-body"> |
|
|
128 |
<fieldset> |
129 |
<form id="mana_search_form" style="margin-left: 5%"> |
130 |
Please enter a few key words: |
131 |
<input type="text" id="mana_search_field"> |
132 |
<input type="submit" class="mana_search_button" value="Search"> |
133 |
</form> |
134 |
</fieldset> |
135 |
<div class="mana_result_content"> |
136 |
</div> |
133 |
</div> |
137 |
</div> |
134 |
</div> |
138 |
</div> |
135 |
</div> |
139 |
</div> |
Lines 158-163
Link Here
|
158 |
} |
162 |
} |
159 |
|
163 |
|
160 |
function mana_search( textquery ){ |
164 |
function mana_search( textquery ){ |
|
|
165 |
$(document.body).css({'cursor' : 'wait'}); |
161 |
$.ajax({ |
166 |
$.ajax({ |
162 |
type: "POST", |
167 |
type: "POST", |
163 |
url: "/cgi-bin/koha/svc/mana/search", |
168 |
url: "/cgi-bin/koha/svc/mana/search", |
Lines 165-171
Link Here
|
165 |
dataType: "html", |
170 |
dataType: "html", |
166 |
}) |
171 |
}) |
167 |
.done( function( result ) { |
172 |
.done( function( result ) { |
168 |
$("#mana_search_result .modal-body").html(result); |
173 |
$(document.body).css({'cursor' : 'default'}); |
|
|
174 |
$("#mana_search_result .modal-body .mana_result_content").html(result); |
169 |
$("#mana_search_result_label").text(_("Results from Mana Knowledge Base")); |
175 |
$("#mana_search_result_label").text(_("Results from Mana Knowledge Base")); |
170 |
$("#mana_results_datatable").dataTable($.extend(true, {}, dataTablesDefaults,{ |
176 |
$("#mana_results_datatable").dataTable($.extend(true, {}, dataTablesDefaults,{ |
171 |
"sPaginationType":"four_button", |
177 |
"sPaginationType":"four_button", |