We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b497365 commit d9f0e41Copy full SHA for d9f0e41
js/os2web_cp_service.js
@@ -4,6 +4,14 @@
4
*/
5
6
jQuery(document).ready(function($) {
7
+ // Convert all nonalphanumeric chars to /.
8
+ $('#views-exposed-form-os2web-cp-service-cp-case-search-panel-pane-1').submit(function() {
9
+ var value = $('#edit-case-id').val();
10
+ $('#edit-case-id').val(value.replace(/\W/g, '/'));
11
+ value = $('#edit-doc-id').val();
12
+ $('#edit-doc-id').val(value.replace(/\W/g, '/'));
13
+ });
14
+
15
$( "a.qtip-this[title]" ).qtip({
16
style: {
17
padding: 1,
@@ -27,4 +35,5 @@ jQuery(document).ready(function($) {
27
35
}
28
36
29
37
});
38
30
39
0 commit comments