lolita 3.2.0.rc.17 → 3.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.md +22 -17
- data/Rakefile +3 -0
- data/app/assets/javascripts/lolita/list.js +2 -2
- data/app/assets/javascripts/lolita/main.js +2 -2
- data/app/assets/javascripts/lolita/tab.js +7 -7
- data/app/assets/stylesheets/lolita/PIE-custom.htc +87 -87
- data/app/assets/stylesheets/lolita/PIE.htc +81 -81
- data/app/assets/stylesheets/lolita/application.css +6 -6
- data/app/assets/stylesheets/lolita/default.css.erb +169 -169
- data/app/assets/stylesheets/lolita/jquery-ui-1.8.16.lolita.css.erb +567 -567
- data/app/assets/stylesheets/lolita/style.css.erb +4 -1
- data/app/helpers/components/lolita/configuration/list_component.rb +10 -10
- data/app/views/components/lolita/configuration/column/_first.html.haml +1 -1
- data/app/views/components/lolita/configuration/column/header/_first.html.haml +1 -1
- data/app/views/components/lolita/configuration/column/header/_sort.html.haml +6 -6
- data/app/views/components/lolita/configuration/columns/header/_display.html.haml +5 -5
- data/app/views/components/lolita/configuration/field/array/checkbox/_display.html.haml +7 -7
- data/app/views/components/lolita/configuration/filter/_display.html.haml +2 -2
- data/app/views/components/lolita/configuration/search/_display.html.haml +2 -2
- data/app/views/kaminari/lolita/_first_page.html.erb +11 -11
- data/app/views/kaminari/lolita/_gap.html.erb +8 -8
- data/app/views/kaminari/lolita/_last_page.html.erb +11 -11
- data/app/views/kaminari/lolita/_next_page.html.erb +11 -11
- data/app/views/kaminari/lolita/_page.html.erb +12 -12
- data/app/views/kaminari/lolita/_paginator.html.erb +23 -23
- data/app/views/kaminari/lolita/_prev_page.html.erb +11 -11
- data/app/views/lolita/info/index.html.erb +232 -232
- data/app/views/lolita/rest/index.html.haml +1 -1
- data/config/routes.rb +6 -6
- data/lib/generators/lolita/install_generator.rb +2 -4
- data/lib/generators/lolita/uninstall_generator.rb +3 -8
- data/lib/generators/templates/lolita.rb +13 -16
- data/lib/lolita.rb +4 -5
- data/lib/lolita/adapter/active_record.rb +4 -4
- data/lib/lolita/adapter/common_helper.rb +45 -71
- data/lib/lolita/adapter/field_helper.rb +18 -18
- data/lib/lolita/adapter/mongoid.rb +8 -8
- data/lib/lolita/configuration/field/big_decimal.rb +12 -12
- data/lib/lolita/configuration/field/boolean.rb +12 -12
- data/lib/lolita/configuration/field/date.rb +12 -12
- data/lib/lolita/configuration/field/hidden.rb +12 -12
- data/lib/lolita/configuration/field/integer.rb +11 -11
- data/lib/lolita/configuration/field/string.rb +16 -16
- data/lib/lolita/configuration/field/time.rb +13 -13
- data/lib/lolita/configuration/field_set.rb +25 -25
- data/lib/lolita/configuration/filter.rb +6 -0
- data/lib/lolita/configuration/list.rb +10 -10
- data/lib/lolita/configuration/nested_form.rb +104 -104
- data/lib/lolita/configuration/search.rb +104 -104
- data/lib/lolita/configuration/tab/content.rb +3 -3
- data/lib/lolita/controllers/component_helpers.rb +9 -9
- data/lib/lolita/controllers/rails_helpers.rb +5 -5
- data/lib/lolita/dbi/base.rb +56 -56
- data/lib/lolita/hooks.rb +16 -16
- data/lib/lolita/hooks/named_hook.rb +125 -125
- data/lib/lolita/lazy_loader.rb +54 -54
- data/lib/lolita/navigation/tree.rb +132 -132
- data/lib/lolita/rails/engine.rb +2 -2
- data/lib/lolita/rails/routes.rb +9 -9
- data/lib/lolita/ruby_ext/accessors.rb +26 -26
- data/lib/lolita/ruby_ext/lolita_model_name.rb +10 -2
- data/lib/lolita/search/simple.rb +75 -75
- data/lib/lolita/support/formatter.rb +62 -62
- data/lib/lolita/support/formatter/rails.rb +56 -56
- data/lib/lolita/test/matchers.rb +77 -77
- data/lib/lolita/version.rb +2 -2
- data/spec/adapter/common_helper_spec.rb +96 -0
- data/spec/adapter_helper.rb +3 -4
- data/spec/builder_spec.rb +120 -120
- data/spec/configuration/base_spec.rb +1 -1
- data/spec/configuration/column_spec.rb +1 -1
- data/spec/configuration/columns_spec.rb +1 -1
- data/spec/configuration/core_spec.rb +1 -1
- data/spec/configuration/field_set_spec.rb +1 -1
- data/spec/configuration/field_spec.rb +1 -1
- data/spec/configuration/filter_spec.rb +30 -1
- data/spec/configuration/list_spec.rb +44 -145
- data/spec/configuration/nested_list_spec.rb +1 -1
- data/spec/configuration/search_spec.rb +1 -1
- data/spec/configuration/tab_spec.rb +1 -1
- data/spec/configuration/tabs_spec.rb +1 -2
- data/spec/controllers/component_helpers_spec.rb +1 -1
- data/spec/controllers/configuration_spec.rb +1 -1
- data/spec/controllers/internal_helpers_spec.rb +1 -1
- data/spec/controllers/lolita_rest_nested_resources_spec.rb +1 -1
- data/spec/controllers/lolita_rest_spec.rb +2 -2
- data/spec/dbi/base_spec.rb +1 -4
- data/spec/extensions/authorization/cancan_adapter_spec.rb +4 -4
- data/spec/extensions/extensions_spec.rb +1 -1
- data/spec/generators/lolita/install_generator_spec.rb +55 -0
- data/spec/generators/lolita/uninstall_generator_spec.rb +49 -0
- data/spec/hooks_spec.rb +25 -25
- data/spec/mapping_spec.rb +1 -1
- data/spec/navigation/branch_spec.rb +1 -1
- data/spec/navigation/tree_spec.rb +1 -1
- data/spec/rails_app/app/controllers/application_controller.rb +3 -3
- data/spec/rails_app/app/helpers/application_helper.rb +3 -3
- data/spec/rails_app/app/mongoid/address.rb +7 -7
- data/spec/rails_app/app/mongoid/comment.rb +5 -5
- data/spec/rails_app/app/mongoid/preference.rb +5 -5
- data/spec/rails_app/app/mongoid/profile.rb +13 -13
- data/spec/rails_app/app/mongoid/tag.rb +3 -3
- data/spec/rails_app/app/views/components/lolita/configuration/list/_body_cell.html.erb +1 -1
- data/spec/rails_app/config/boot.rb +4 -9
- data/spec/rails_app/config/environment.rb +5 -5
- data/spec/rails_app/config/environments/production.rb +37 -37
- data/spec/rails_app/config/environments/test.rb +37 -37
- data/spec/rails_app/config/initializers/backtrace_silencers.rb +7 -7
- data/spec/rails_app/config/initializers/inflections.rb +2 -2
- data/spec/rails_app/config/initializers/secret_token.rb +1 -1
- data/spec/rails_app/config/routes.rb +1 -1
- data/spec/rails_app/lib/lolita/configuration/field/my_custom_collection.rb +13 -13
- data/spec/rails_app/log/development.log +12940 -43222
- data/spec/rails_app/public/javascripts/jquery-1.5.1.min.js +15 -15
- data/spec/rails_app/public/javascripts/lolita/main.js +6 -6
- data/spec/rails_app/public/javascripts/modernizr-1.7.min.js +1 -1
- data/spec/rails_app/public/javascripts/rails.js +137 -137
- data/spec/rails_app/public/javascripts/tinymce/langs/en.js +221 -221
- data/spec/rails_app/public/javascripts/tinymce/license.txt +504 -504
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/about.htm +52 -52
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/anchor.htm +26 -26
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/charmap.htm +51 -51
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/color_picker.htm +74 -74
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/editor_template_src.js +1328 -1328
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/image.htm +80 -80
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/about.js +73 -73
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/anchor.js +42 -42
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/charmap.js +354 -354
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/color_picker.js +329 -329
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/image.js +247 -247
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/link.js +153 -153
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/source_editor.js +56 -56
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/langs/en.js +68 -68
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/langs/en_dlg.js +53 -53
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/link.htm +57 -57
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/shortcuts.htm +47 -47
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/content.css +66 -66
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/dialog.css +117 -117
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/ui.css +988 -988
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/source_editor.htm +25 -25
- data/spec/rails_app/public/javascripts/tinymce/tiny_mce_popup.js +4 -4
- data/spec/rails_app/public/stylesheets/lolita/default.css +169 -169
- data/spec/rails_app/public/stylesheets/lolita/style.css +214 -214
- data/spec/routing/routes_spec.rb +1 -1
- data/spec/search/simple_spec.rb +1 -1
- data/spec/simple_spec_helper.rb +1 -1
- data/spec/spec_helper.rb +6 -4
- data/spec/support/formatter_spec.rb +1 -1
- data/spec/tmp/config/routes.rb +0 -0
- data/vendor/assets/javascripts/jquery-numeric.js +279 -279
- data/vendor/assets/javascripts/modernizr_1_7_min.js +1 -1
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/content.css +66 -66
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/dialog.css +117 -117
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/ui.css +988 -988
- data/vendor/assets/stylesheets/jquery-ui-1.8.16.custom.css +567 -567
- metadata +380 -395
- data/spec/rails_app/coverage.data +0 -1
- data/spec/rails_app/log/test.log +0 -370
data/spec/routing/routes_spec.rb
CHANGED
data/spec/search/simple_spec.rb
CHANGED
data/spec/simple_spec_helper.rb
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
require_relative '../lib/lolita'
|
data/spec/spec_helper.rb
CHANGED
@@ -1,9 +1,10 @@
|
|
1
1
|
require 'rubygems'
|
2
|
-
require
|
2
|
+
require 'bundler/setup'
|
3
|
+
require 'byebug'
|
3
4
|
# require 'simplecov'
|
4
5
|
# SimpleCov.start do
|
5
6
|
|
6
|
-
end
|
7
|
+
#end
|
7
8
|
ENV["lolita-env"] = "rails"
|
8
9
|
|
9
10
|
#Bundler.setup(:default,:rails,:test,:development)
|
@@ -17,7 +18,8 @@ Benchmark.bm do |x|
|
|
17
18
|
x.report("Loading rails: ") do
|
18
19
|
require 'rails'
|
19
20
|
require 'lolita'
|
20
|
-
|
21
|
+
Lolita.load!
|
22
|
+
require 'rails_app/config/environment'
|
21
23
|
require 'rspec/rails'
|
22
24
|
end
|
23
25
|
end
|
@@ -30,7 +32,7 @@ Benchmark.bm do |x|
|
|
30
32
|
end
|
31
33
|
RSpec.configure do |config|
|
32
34
|
config.mock_with :rspec
|
33
|
-
|
35
|
+
config.order = 'rand:3455'
|
34
36
|
if LOLITA_ORM==:active_record
|
35
37
|
#config.fixture_path = "#{::Rails.root}/spec/fixtures"
|
36
38
|
config.use_transactional_fixtures = true
|
File without changes
|
@@ -1,280 +1,280 @@
|
|
1
|
-
/*
|
2
|
-
*
|
3
|
-
* Copyright (c) 2006-2011 Sam Collett (http://www.texotela.co.uk)
|
4
|
-
* Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
|
5
|
-
* and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
|
6
|
-
*
|
7
|
-
* Version 1.3.1
|
8
|
-
* Demo: http://www.texotela.co.uk/code/jquery/numeric/
|
9
|
-
*
|
10
|
-
*/
|
11
|
-
(function($) {
|
12
|
-
/*
|
13
|
-
* Allows only valid characters to be entered into input boxes.
|
14
|
-
* Note: fixes value when pasting via Ctrl+V, but not when using the mouse to paste
|
15
|
-
* side-effect: Ctrl+A does not work, though you can still use the mouse to select (or double-click to select all)
|
16
|
-
*
|
17
|
-
* @name numeric
|
18
|
-
* @param config { decimal : "." , negative : true }
|
19
|
-
* @param callback A function that runs if the number is not valid (fires onblur)
|
20
|
-
* @author Sam Collett (http://www.texotela.co.uk)
|
21
|
-
* @example $(".numeric").numeric();
|
22
|
-
* @example $(".numeric").numeric(","); // use , as separater
|
23
|
-
* @example $(".numeric").numeric({ decimal : "," }); // use , as separator
|
24
|
-
* @example $(".numeric").numeric({ negative : false }); // do not allow negative values
|
25
|
-
* @example $(".numeric").numeric(null, callback); // use default values, pass on the 'callback' function
|
26
|
-
*
|
27
|
-
*/
|
28
|
-
$.fn.numeric = function(config, callback)
|
29
|
-
{
|
30
|
-
if(typeof config === 'boolean')
|
31
|
-
{
|
32
|
-
config = { decimal: config };
|
33
|
-
}
|
34
|
-
config = config || {};
|
35
|
-
// if config.negative undefined, set to true (default is to allow negative numbers)
|
36
|
-
if(typeof config.negative == "undefined") config.negative = true;
|
37
|
-
// set decimal point
|
38
|
-
var decimal = (config.decimal === false) ? "" : config.decimal || ".";
|
39
|
-
// allow negatives
|
40
|
-
var negative = (config.negative === true) ? true : false;
|
41
|
-
// callback function
|
42
|
-
var callback = typeof callback == "function" ? callback : function(){};
|
43
|
-
// set data and methods
|
44
|
-
return this.data("numeric.decimal", decimal).data("numeric.negative", negative).data("numeric.callback", callback).keypress($.fn.numeric.keypress).keyup($.fn.numeric.keyup).blur($.fn.numeric.blur);
|
45
|
-
}
|
46
|
-
|
47
|
-
$.fn.numeric.keypress = function(e)
|
48
|
-
{
|
49
|
-
// get decimal character and determine if negatives are allowed
|
50
|
-
var decimal = $.data(this, "numeric.decimal");
|
51
|
-
var negative = $.data(this, "numeric.negative");
|
52
|
-
// get the key that was pressed
|
53
|
-
var key = e.charCode ? e.charCode : e.keyCode ? e.keyCode : 0;
|
54
|
-
// allow enter/return key (only when in an input box)
|
55
|
-
if(key == 13 && this.nodeName.toLowerCase() == "input")
|
56
|
-
{
|
57
|
-
return true;
|
58
|
-
}
|
59
|
-
else if(key == 13)
|
60
|
-
{
|
61
|
-
return false;
|
62
|
-
}
|
63
|
-
var allow = false;
|
64
|
-
// allow Ctrl+A
|
65
|
-
if((e.ctrlKey && key == 97 /* firefox */) || (e.ctrlKey && key == 65) /* opera */) return true;
|
66
|
-
// allow Ctrl+X (cut)
|
67
|
-
if((e.ctrlKey && key == 120 /* firefox */) || (e.ctrlKey && key == 88) /* opera */) return true;
|
68
|
-
// allow Ctrl+C (copy)
|
69
|
-
if((e.ctrlKey && key == 99 /* firefox */) || (e.ctrlKey && key == 67) /* opera */) return true;
|
70
|
-
// allow Ctrl+Z (undo)
|
71
|
-
if((e.ctrlKey && key == 122 /* firefox */) || (e.ctrlKey && key == 90) /* opera */) return true;
|
72
|
-
// allow or deny Ctrl+V (paste), Shift+Ins
|
73
|
-
if((e.ctrlKey && key == 118 /* firefox */) || (e.ctrlKey && key == 86) /* opera */
|
74
|
-
|| (e.shiftKey && key == 45)) return true;
|
75
|
-
// if a number was not pressed
|
76
|
-
if(key < 48 || key > 57)
|
77
|
-
{
|
78
|
-
var value = $(this).val();
|
79
|
-
/* '-' only allowed at start and if negative numbers allowed */
|
80
|
-
if(value.indexOf("-") != 0 && negative && key == 45 && (value.length == 0 || ($.fn.getSelectionStart(this)) == 0)) return true;
|
81
|
-
/* only one decimal separator allowed */
|
82
|
-
if(decimal && key == decimal.charCodeAt(0) && value.indexOf(decimal) != -1)
|
83
|
-
{
|
84
|
-
allow = false;
|
85
|
-
}
|
86
|
-
// check for other keys that have special purposes
|
87
|
-
if(
|
88
|
-
key != 8 /* backspace */ &&
|
89
|
-
key != 9 /* tab */ &&
|
90
|
-
key != 13 /* enter */ &&
|
91
|
-
key != 35 /* end */ &&
|
92
|
-
key != 36 /* home */ &&
|
93
|
-
key != 37 /* left */ &&
|
94
|
-
key != 39 /* right */ &&
|
95
|
-
key != 46 /* del */
|
96
|
-
)
|
97
|
-
{
|
98
|
-
allow = false;
|
99
|
-
}
|
100
|
-
else
|
101
|
-
{
|
102
|
-
// for detecting special keys (listed above)
|
103
|
-
// IE does not support 'charCode' and ignores them in keypress anyway
|
104
|
-
if(typeof e.charCode != "undefined")
|
105
|
-
{
|
106
|
-
// special keys have 'keyCode' and 'which' the same (e.g. backspace)
|
107
|
-
if(e.keyCode == e.which && e.which != 0)
|
108
|
-
{
|
109
|
-
allow = true;
|
110
|
-
// . and delete share the same code, don't allow . (will be set to true later if it is the decimal point)
|
111
|
-
if(e.which == 46) allow = false;
|
112
|
-
}
|
113
|
-
// or keyCode != 0 and 'charCode'/'which' = 0
|
114
|
-
else if(e.keyCode != 0 && e.charCode == 0 && e.which == 0)
|
115
|
-
{
|
116
|
-
allow = true;
|
117
|
-
}
|
118
|
-
}
|
119
|
-
}
|
120
|
-
// if key pressed is the decimal and it is not already in the field
|
121
|
-
if(decimal && key == decimal.charCodeAt(0))
|
122
|
-
{
|
123
|
-
if(value.indexOf(decimal) == -1)
|
124
|
-
{
|
125
|
-
allow = true;
|
126
|
-
}
|
127
|
-
else
|
128
|
-
{
|
129
|
-
allow = false;
|
130
|
-
}
|
131
|
-
}
|
132
|
-
}
|
133
|
-
else
|
134
|
-
{
|
135
|
-
allow = true;
|
136
|
-
}
|
137
|
-
return allow;
|
138
|
-
}
|
139
|
-
|
140
|
-
$.fn.numeric.keyup = function(e)
|
141
|
-
{
|
142
|
-
var val = $(this).value;
|
143
|
-
if(val && val.length > 0)
|
144
|
-
{
|
145
|
-
// get carat (cursor) position
|
146
|
-
var carat = $.fn.getSelectionStart(this);
|
147
|
-
// get decimal character and determine if negatives are allowed
|
148
|
-
var decimal = $.data(this, "numeric.decimal");
|
149
|
-
var negative = $.data(this, "numeric.negative");
|
150
|
-
|
151
|
-
// prepend a 0 if necessary
|
152
|
-
if(decimal != "")
|
153
|
-
{
|
154
|
-
// find decimal point
|
155
|
-
var dot = val.indexOf(decimal);
|
156
|
-
// if dot at start, add 0 before
|
157
|
-
if(dot == 0)
|
158
|
-
{
|
159
|
-
this.value = "0" + val;
|
160
|
-
}
|
161
|
-
// if dot at position 1, check if there is a - symbol before it
|
162
|
-
if(dot == 1 && val.charAt(0) == "-")
|
163
|
-
{
|
164
|
-
this.value = "-0" + val.substring(1);
|
165
|
-
}
|
166
|
-
val = this.value;
|
167
|
-
}
|
168
|
-
|
169
|
-
// if pasted in, only allow the following characters
|
170
|
-
var validChars = [0,1,2,3,4,5,6,7,8,9,'-',decimal];
|
171
|
-
// get length of the value (to loop through)
|
172
|
-
var length = val.length;
|
173
|
-
// loop backwards (to prevent going out of bounds)
|
174
|
-
for(var i = length - 1; i >= 0; i--)
|
175
|
-
{
|
176
|
-
var ch = val.charAt(i);
|
177
|
-
// remove '-' if it is in the wrong place
|
178
|
-
if(i != 0 && ch == "-")
|
179
|
-
{
|
180
|
-
val = val.substring(0, i) + val.substring(i + 1);
|
181
|
-
}
|
182
|
-
// remove character if it is at the start, a '-' and negatives aren't allowed
|
183
|
-
else if(i == 0 && !negative && ch == "-")
|
184
|
-
{
|
185
|
-
val = val.substring(1);
|
186
|
-
}
|
187
|
-
var validChar = false;
|
188
|
-
// loop through validChars
|
189
|
-
for(var j = 0; j < validChars.length; j++)
|
190
|
-
{
|
191
|
-
// if it is valid, break out the loop
|
192
|
-
if(ch == validChars[j])
|
193
|
-
{
|
194
|
-
validChar = true;
|
195
|
-
break;
|
196
|
-
}
|
197
|
-
}
|
198
|
-
// if not a valid character, or a space, remove
|
199
|
-
if(!validChar || ch == " ")
|
200
|
-
{
|
201
|
-
val = val.substring(0, i) + val.substring(i + 1);
|
202
|
-
}
|
203
|
-
}
|
204
|
-
// remove extra decimal characters
|
205
|
-
var firstDecimal = val.indexOf(decimal);
|
206
|
-
if(firstDecimal > 0)
|
207
|
-
{
|
208
|
-
for(var i = length - 1; i > firstDecimal; i--)
|
209
|
-
{
|
210
|
-
var ch = val.charAt(i);
|
211
|
-
// remove decimal character
|
212
|
-
if(ch == decimal)
|
213
|
-
{
|
214
|
-
val = val.substring(0, i) + val.substring(i + 1);
|
215
|
-
}
|
216
|
-
}
|
217
|
-
}
|
218
|
-
// set the value and prevent the cursor moving to the end
|
219
|
-
this.value = val;
|
220
|
-
$.fn.setSelection(this, carat);
|
221
|
-
}
|
222
|
-
}
|
223
|
-
|
224
|
-
$.fn.numeric.blur = function()
|
225
|
-
{
|
226
|
-
var decimal = $.data(this, "numeric.decimal");
|
227
|
-
var callback = $.data(this, "numeric.callback");
|
228
|
-
var val = this.value;
|
229
|
-
if(val != "")
|
230
|
-
{
|
231
|
-
var re = new RegExp("^\\d+$|\\d*" + decimal + "\\d+");
|
232
|
-
if(!re.exec(val))
|
233
|
-
{
|
234
|
-
callback.apply(this);
|
235
|
-
}
|
236
|
-
}
|
237
|
-
}
|
238
|
-
|
239
|
-
$.fn.removeNumeric = function()
|
240
|
-
{
|
241
|
-
return this.data("numeric.decimal", null).data("numeric.negative", null).data("numeric.callback", null).unbind("keypress", $.fn.numeric.keypress).unbind("blur", $.fn.numeric.blur);
|
242
|
-
}
|
243
|
-
|
244
|
-
// Based on code from http://javascript.nwbox.com/cursor_position/ (Diego Perini <dperini@nwbox.com>)
|
245
|
-
$.fn.getSelectionStart = function(o)
|
246
|
-
{
|
247
|
-
if (o.createTextRange)
|
248
|
-
{
|
249
|
-
var r = document.selection.createRange().duplicate();
|
250
|
-
r.moveEnd('character', o.value.length);
|
251
|
-
if (r.text == '') return o.value.length;
|
252
|
-
return o.value.lastIndexOf(r.text);
|
253
|
-
} else return o.selectionStart;
|
254
|
-
}
|
255
|
-
|
256
|
-
// set the selection, o is the object (input), p is the position ([start, end] or just start)
|
257
|
-
$.fn.setSelection = function(o, p)
|
258
|
-
{
|
259
|
-
// if p is number, start and end are the same
|
260
|
-
if(typeof p == "number") p = [p, p];
|
261
|
-
// only set if p is an array of length 2
|
262
|
-
if(p && p.constructor == Array && p.length == 2)
|
263
|
-
{
|
264
|
-
if (o.createTextRange)
|
265
|
-
{
|
266
|
-
var r = o.createTextRange();
|
267
|
-
r.collapse(true);
|
268
|
-
r.moveStart('character', p[0]);
|
269
|
-
r.moveEnd('character', p[1]);
|
270
|
-
r.select();
|
271
|
-
}
|
272
|
-
else if(o.setSelectionRange)
|
273
|
-
{
|
274
|
-
o.focus();
|
275
|
-
o.setSelectionRange(p[0], p[1]);
|
276
|
-
}
|
277
|
-
}
|
278
|
-
}
|
279
|
-
|
1
|
+
/*
|
2
|
+
*
|
3
|
+
* Copyright (c) 2006-2011 Sam Collett (http://www.texotela.co.uk)
|
4
|
+
* Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
|
5
|
+
* and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
|
6
|
+
*
|
7
|
+
* Version 1.3.1
|
8
|
+
* Demo: http://www.texotela.co.uk/code/jquery/numeric/
|
9
|
+
*
|
10
|
+
*/
|
11
|
+
(function($) {
|
12
|
+
/*
|
13
|
+
* Allows only valid characters to be entered into input boxes.
|
14
|
+
* Note: fixes value when pasting via Ctrl+V, but not when using the mouse to paste
|
15
|
+
* side-effect: Ctrl+A does not work, though you can still use the mouse to select (or double-click to select all)
|
16
|
+
*
|
17
|
+
* @name numeric
|
18
|
+
* @param config { decimal : "." , negative : true }
|
19
|
+
* @param callback A function that runs if the number is not valid (fires onblur)
|
20
|
+
* @author Sam Collett (http://www.texotela.co.uk)
|
21
|
+
* @example $(".numeric").numeric();
|
22
|
+
* @example $(".numeric").numeric(","); // use , as separater
|
23
|
+
* @example $(".numeric").numeric({ decimal : "," }); // use , as separator
|
24
|
+
* @example $(".numeric").numeric({ negative : false }); // do not allow negative values
|
25
|
+
* @example $(".numeric").numeric(null, callback); // use default values, pass on the 'callback' function
|
26
|
+
*
|
27
|
+
*/
|
28
|
+
$.fn.numeric = function(config, callback)
|
29
|
+
{
|
30
|
+
if(typeof config === 'boolean')
|
31
|
+
{
|
32
|
+
config = { decimal: config };
|
33
|
+
}
|
34
|
+
config = config || {};
|
35
|
+
// if config.negative undefined, set to true (default is to allow negative numbers)
|
36
|
+
if(typeof config.negative == "undefined") config.negative = true;
|
37
|
+
// set decimal point
|
38
|
+
var decimal = (config.decimal === false) ? "" : config.decimal || ".";
|
39
|
+
// allow negatives
|
40
|
+
var negative = (config.negative === true) ? true : false;
|
41
|
+
// callback function
|
42
|
+
var callback = typeof callback == "function" ? callback : function(){};
|
43
|
+
// set data and methods
|
44
|
+
return this.data("numeric.decimal", decimal).data("numeric.negative", negative).data("numeric.callback", callback).keypress($.fn.numeric.keypress).keyup($.fn.numeric.keyup).blur($.fn.numeric.blur);
|
45
|
+
}
|
46
|
+
|
47
|
+
$.fn.numeric.keypress = function(e)
|
48
|
+
{
|
49
|
+
// get decimal character and determine if negatives are allowed
|
50
|
+
var decimal = $.data(this, "numeric.decimal");
|
51
|
+
var negative = $.data(this, "numeric.negative");
|
52
|
+
// get the key that was pressed
|
53
|
+
var key = e.charCode ? e.charCode : e.keyCode ? e.keyCode : 0;
|
54
|
+
// allow enter/return key (only when in an input box)
|
55
|
+
if(key == 13 && this.nodeName.toLowerCase() == "input")
|
56
|
+
{
|
57
|
+
return true;
|
58
|
+
}
|
59
|
+
else if(key == 13)
|
60
|
+
{
|
61
|
+
return false;
|
62
|
+
}
|
63
|
+
var allow = false;
|
64
|
+
// allow Ctrl+A
|
65
|
+
if((e.ctrlKey && key == 97 /* firefox */) || (e.ctrlKey && key == 65) /* opera */) return true;
|
66
|
+
// allow Ctrl+X (cut)
|
67
|
+
if((e.ctrlKey && key == 120 /* firefox */) || (e.ctrlKey && key == 88) /* opera */) return true;
|
68
|
+
// allow Ctrl+C (copy)
|
69
|
+
if((e.ctrlKey && key == 99 /* firefox */) || (e.ctrlKey && key == 67) /* opera */) return true;
|
70
|
+
// allow Ctrl+Z (undo)
|
71
|
+
if((e.ctrlKey && key == 122 /* firefox */) || (e.ctrlKey && key == 90) /* opera */) return true;
|
72
|
+
// allow or deny Ctrl+V (paste), Shift+Ins
|
73
|
+
if((e.ctrlKey && key == 118 /* firefox */) || (e.ctrlKey && key == 86) /* opera */
|
74
|
+
|| (e.shiftKey && key == 45)) return true;
|
75
|
+
// if a number was not pressed
|
76
|
+
if(key < 48 || key > 57)
|
77
|
+
{
|
78
|
+
var value = $(this).val();
|
79
|
+
/* '-' only allowed at start and if negative numbers allowed */
|
80
|
+
if(value.indexOf("-") != 0 && negative && key == 45 && (value.length == 0 || ($.fn.getSelectionStart(this)) == 0)) return true;
|
81
|
+
/* only one decimal separator allowed */
|
82
|
+
if(decimal && key == decimal.charCodeAt(0) && value.indexOf(decimal) != -1)
|
83
|
+
{
|
84
|
+
allow = false;
|
85
|
+
}
|
86
|
+
// check for other keys that have special purposes
|
87
|
+
if(
|
88
|
+
key != 8 /* backspace */ &&
|
89
|
+
key != 9 /* tab */ &&
|
90
|
+
key != 13 /* enter */ &&
|
91
|
+
key != 35 /* end */ &&
|
92
|
+
key != 36 /* home */ &&
|
93
|
+
key != 37 /* left */ &&
|
94
|
+
key != 39 /* right */ &&
|
95
|
+
key != 46 /* del */
|
96
|
+
)
|
97
|
+
{
|
98
|
+
allow = false;
|
99
|
+
}
|
100
|
+
else
|
101
|
+
{
|
102
|
+
// for detecting special keys (listed above)
|
103
|
+
// IE does not support 'charCode' and ignores them in keypress anyway
|
104
|
+
if(typeof e.charCode != "undefined")
|
105
|
+
{
|
106
|
+
// special keys have 'keyCode' and 'which' the same (e.g. backspace)
|
107
|
+
if(e.keyCode == e.which && e.which != 0)
|
108
|
+
{
|
109
|
+
allow = true;
|
110
|
+
// . and delete share the same code, don't allow . (will be set to true later if it is the decimal point)
|
111
|
+
if(e.which == 46) allow = false;
|
112
|
+
}
|
113
|
+
// or keyCode != 0 and 'charCode'/'which' = 0
|
114
|
+
else if(e.keyCode != 0 && e.charCode == 0 && e.which == 0)
|
115
|
+
{
|
116
|
+
allow = true;
|
117
|
+
}
|
118
|
+
}
|
119
|
+
}
|
120
|
+
// if key pressed is the decimal and it is not already in the field
|
121
|
+
if(decimal && key == decimal.charCodeAt(0))
|
122
|
+
{
|
123
|
+
if(value.indexOf(decimal) == -1)
|
124
|
+
{
|
125
|
+
allow = true;
|
126
|
+
}
|
127
|
+
else
|
128
|
+
{
|
129
|
+
allow = false;
|
130
|
+
}
|
131
|
+
}
|
132
|
+
}
|
133
|
+
else
|
134
|
+
{
|
135
|
+
allow = true;
|
136
|
+
}
|
137
|
+
return allow;
|
138
|
+
}
|
139
|
+
|
140
|
+
$.fn.numeric.keyup = function(e)
|
141
|
+
{
|
142
|
+
var val = $(this).value;
|
143
|
+
if(val && val.length > 0)
|
144
|
+
{
|
145
|
+
// get carat (cursor) position
|
146
|
+
var carat = $.fn.getSelectionStart(this);
|
147
|
+
// get decimal character and determine if negatives are allowed
|
148
|
+
var decimal = $.data(this, "numeric.decimal");
|
149
|
+
var negative = $.data(this, "numeric.negative");
|
150
|
+
|
151
|
+
// prepend a 0 if necessary
|
152
|
+
if(decimal != "")
|
153
|
+
{
|
154
|
+
// find decimal point
|
155
|
+
var dot = val.indexOf(decimal);
|
156
|
+
// if dot at start, add 0 before
|
157
|
+
if(dot == 0)
|
158
|
+
{
|
159
|
+
this.value = "0" + val;
|
160
|
+
}
|
161
|
+
// if dot at position 1, check if there is a - symbol before it
|
162
|
+
if(dot == 1 && val.charAt(0) == "-")
|
163
|
+
{
|
164
|
+
this.value = "-0" + val.substring(1);
|
165
|
+
}
|
166
|
+
val = this.value;
|
167
|
+
}
|
168
|
+
|
169
|
+
// if pasted in, only allow the following characters
|
170
|
+
var validChars = [0,1,2,3,4,5,6,7,8,9,'-',decimal];
|
171
|
+
// get length of the value (to loop through)
|
172
|
+
var length = val.length;
|
173
|
+
// loop backwards (to prevent going out of bounds)
|
174
|
+
for(var i = length - 1; i >= 0; i--)
|
175
|
+
{
|
176
|
+
var ch = val.charAt(i);
|
177
|
+
// remove '-' if it is in the wrong place
|
178
|
+
if(i != 0 && ch == "-")
|
179
|
+
{
|
180
|
+
val = val.substring(0, i) + val.substring(i + 1);
|
181
|
+
}
|
182
|
+
// remove character if it is at the start, a '-' and negatives aren't allowed
|
183
|
+
else if(i == 0 && !negative && ch == "-")
|
184
|
+
{
|
185
|
+
val = val.substring(1);
|
186
|
+
}
|
187
|
+
var validChar = false;
|
188
|
+
// loop through validChars
|
189
|
+
for(var j = 0; j < validChars.length; j++)
|
190
|
+
{
|
191
|
+
// if it is valid, break out the loop
|
192
|
+
if(ch == validChars[j])
|
193
|
+
{
|
194
|
+
validChar = true;
|
195
|
+
break;
|
196
|
+
}
|
197
|
+
}
|
198
|
+
// if not a valid character, or a space, remove
|
199
|
+
if(!validChar || ch == " ")
|
200
|
+
{
|
201
|
+
val = val.substring(0, i) + val.substring(i + 1);
|
202
|
+
}
|
203
|
+
}
|
204
|
+
// remove extra decimal characters
|
205
|
+
var firstDecimal = val.indexOf(decimal);
|
206
|
+
if(firstDecimal > 0)
|
207
|
+
{
|
208
|
+
for(var i = length - 1; i > firstDecimal; i--)
|
209
|
+
{
|
210
|
+
var ch = val.charAt(i);
|
211
|
+
// remove decimal character
|
212
|
+
if(ch == decimal)
|
213
|
+
{
|
214
|
+
val = val.substring(0, i) + val.substring(i + 1);
|
215
|
+
}
|
216
|
+
}
|
217
|
+
}
|
218
|
+
// set the value and prevent the cursor moving to the end
|
219
|
+
this.value = val;
|
220
|
+
$.fn.setSelection(this, carat);
|
221
|
+
}
|
222
|
+
}
|
223
|
+
|
224
|
+
$.fn.numeric.blur = function()
|
225
|
+
{
|
226
|
+
var decimal = $.data(this, "numeric.decimal");
|
227
|
+
var callback = $.data(this, "numeric.callback");
|
228
|
+
var val = this.value;
|
229
|
+
if(val != "")
|
230
|
+
{
|
231
|
+
var re = new RegExp("^\\d+$|\\d*" + decimal + "\\d+");
|
232
|
+
if(!re.exec(val))
|
233
|
+
{
|
234
|
+
callback.apply(this);
|
235
|
+
}
|
236
|
+
}
|
237
|
+
}
|
238
|
+
|
239
|
+
$.fn.removeNumeric = function()
|
240
|
+
{
|
241
|
+
return this.data("numeric.decimal", null).data("numeric.negative", null).data("numeric.callback", null).unbind("keypress", $.fn.numeric.keypress).unbind("blur", $.fn.numeric.blur);
|
242
|
+
}
|
243
|
+
|
244
|
+
// Based on code from http://javascript.nwbox.com/cursor_position/ (Diego Perini <dperini@nwbox.com>)
|
245
|
+
$.fn.getSelectionStart = function(o)
|
246
|
+
{
|
247
|
+
if (o.createTextRange)
|
248
|
+
{
|
249
|
+
var r = document.selection.createRange().duplicate();
|
250
|
+
r.moveEnd('character', o.value.length);
|
251
|
+
if (r.text == '') return o.value.length;
|
252
|
+
return o.value.lastIndexOf(r.text);
|
253
|
+
} else return o.selectionStart;
|
254
|
+
}
|
255
|
+
|
256
|
+
// set the selection, o is the object (input), p is the position ([start, end] or just start)
|
257
|
+
$.fn.setSelection = function(o, p)
|
258
|
+
{
|
259
|
+
// if p is number, start and end are the same
|
260
|
+
if(typeof p == "number") p = [p, p];
|
261
|
+
// only set if p is an array of length 2
|
262
|
+
if(p && p.constructor == Array && p.length == 2)
|
263
|
+
{
|
264
|
+
if (o.createTextRange)
|
265
|
+
{
|
266
|
+
var r = o.createTextRange();
|
267
|
+
r.collapse(true);
|
268
|
+
r.moveStart('character', p[0]);
|
269
|
+
r.moveEnd('character', p[1]);
|
270
|
+
r.select();
|
271
|
+
}
|
272
|
+
else if(o.setSelectionRange)
|
273
|
+
{
|
274
|
+
o.focus();
|
275
|
+
o.setSelectionRange(p[0], p[1]);
|
276
|
+
}
|
277
|
+
}
|
278
|
+
}
|
279
|
+
|
280
280
|
})(jQuery);
|