masked input clipboard hack, #25599
[freeside.git] / httemplate / elements / tr-input-mask.html
1 % if ( !$init ) {
2 <script type="text/javascript" src="<%$p%>elements/masked_input_1.1.js">
3 </script>
4 % $init++;
5 % }
6 <& /elements/tr-input-text.html, id => $id, @_ &>
7 <script type="text/javascript">
8 <&| /elements/onload.js &>
9 MaskedInput({
10   elm: document.getElementById('<%$id%>'),
11   format: '<% $opt{format} %>',
12   <% $opt{allowed} ? "allowed: '$opt{allowed}'," : '' %>
13   <% $opt{typeon}  ? "typeon:  '$opt{typeon}',"  : '' %>
14 });
15 document.getElementById('<%$id%>').value = <% $value |js_string %>;
16 % if ( $clipboard_hack ) {
17 var t = document.getElementById('<% $id %>');
18 var container = document.getElementById('<%$id%>_clipboard');
19 var KeyHandlerDown = t.onkeydown
20 t.onkeydown = function(e) {
21   // intercept ctrl-c and ctrl-x
22   // and cmd-c and cmd-x on mac
23   // when text is selected
24   if ( ( e.ctrlKey || e.metaKey ) ) {
25     // do the dance
26     var separators = /[\\/:-]/g;
27     var s = t.value.substr(t.selectionStart, t.selectionEnd);
28     if ( s ) {
29       container.value = s.replace(separators, '');
30       container.previous = t;
31       container.focus();
32       container.select();
33       return true;
34     }
35   }
36   return KeyHandlerDown.call(t, e);
37 };
38 container.onkeyup = function(e) {
39   if ( container.previous ) {
40     setTimeout(function() {container.previous.focus();}, 10);
41   }
42   return true;
43 }
44 % } # clipboard hack
45 </&>
46 </script>
47 <textarea id="<%$id%>_clipboard" style="opacity:0"></textarea>
48 <%shared>
49 my $init = 0;
50 </%shared>
51 <%init>
52 my %opt = @_;
53 # must have a DOM id
54 my $id = $opt{id} || sprintf('input%04d',int(rand(10000)));
55 my $value = length($opt{curr_value}) ? $opt{curr_value} : $opt{value} || '';
56
57 my $clipboard_hack = $FS::CurrentUser::CurrentUser->option('enable_mask_clipboard_hack');
58 </%init>
59 <%doc>
60 Set up a text input field with input masking.
61
62 <& /elements/tr-input-mask.html,
63   format    => '____-__-__',
64   #typeon   => '_YMDhms',    # which characters in the format represent blanks
65   #allowed  => '0123456789', # characters allowed in the blanks
66   ... all other options as for tr-input-text.html
67 &>
68
69 Note that the value sent on form submission will contain the mask 
70 separators, and if value/curr_value is passed, it should also be 
71 formatted to fit the mask.
72
73 Uses masked_input_1.1.js by Kendall Conrad, available under a Creative Commons
74 Attribution-ShareAlike license.
75 </%doc>