We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27c4182 commit 9251ce7Copy full SHA for 9251ce7
1 file changed
src/Views/tickets/search/scripts.blade.php
@@ -35,7 +35,11 @@ function success_ajax_callback() {
35
// Update agent list
36
var loadpage = "{!! route($setting->grab('main_route').'agentselectlist') !!}/" + $(this).val() + "/"+$('#select_category_agent').val();
37
$('#select_category_agent').load(loadpage, function(){
38
+ // Show agent select
39
$('#select_category_agent').prop('disabled',false).show();
40
+
41
+ // Default agent has no value
42
+ $('#select_category_agent option[value=auto]').val('').text('- none -');
43
});
44
45
// Update tag list
0 commit comments