compony 0.5.9 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/Gemfile.lock +1 -1
- data/README.md +21 -0
- data/VERSION +1 -1
- data/compony.gemspec +3 -3
- data/config/locales/de.yml +13 -0
- data/config/locales/en.yml +13 -0
- data/config/locales/fr.yml +14 -1
- data/doc/ComponentGenerator.html +16 -4
- data/doc/Components.html +3 -3
- data/doc/ComponentsGenerator.html +3 -3
- data/doc/Compony/Component.html +4 -4
- data/doc/Compony/ComponentMixins/Default/Labelling.html +3 -3
- data/doc/Compony/ComponentMixins/Default/Standalone/ResourcefulVerbDsl.html +3 -3
- data/doc/Compony/ComponentMixins/Default/Standalone/StandaloneDsl.html +3 -3
- data/doc/Compony/ComponentMixins/Default/Standalone/VerbDsl.html +3 -3
- data/doc/Compony/ComponentMixins/Default/Standalone.html +3 -3
- data/doc/Compony/ComponentMixins/Default.html +3 -3
- data/doc/Compony/ComponentMixins/Resourceful.html +4 -4
- data/doc/Compony/ComponentMixins.html +3 -3
- data/doc/Compony/Components/Button.html +3 -3
- data/doc/Compony/Components/Destroy.html +3 -3
- data/doc/Compony/Components/Edit.html +3 -3
- data/doc/Compony/Components/Form.html +3 -3
- data/doc/Compony/Components/Index.html +172 -0
- data/doc/Compony/Components/List.html +2820 -0
- data/doc/Compony/Components/New.html +3 -3
- data/doc/Compony/Components/Show.html +740 -0
- data/doc/Compony/Components/WithForm.html +3 -3
- data/doc/Compony/Components.html +5 -5
- data/doc/Compony/ControllerMixin.html +3 -3
- data/doc/Compony/Engine.html +3 -3
- data/doc/Compony/MethodAccessibleHash.html +3 -3
- data/doc/Compony/ModelFields/Anchormodel.html +136 -4
- data/doc/Compony/ModelFields/Association.html +4 -4
- data/doc/Compony/ModelFields/Attachment.html +4 -4
- data/doc/Compony/ModelFields/Base.html +143 -13
- data/doc/Compony/ModelFields/Boolean.html +136 -4
- data/doc/Compony/ModelFields/Color.html +4 -4
- data/doc/Compony/ModelFields/Currency.html +4 -4
- data/doc/Compony/ModelFields/Date.html +4 -4
- data/doc/Compony/ModelFields/Datetime.html +4 -4
- data/doc/Compony/ModelFields/Decimal.html +4 -4
- data/doc/Compony/ModelFields/Email.html +4 -4
- data/doc/Compony/ModelFields/Float.html +4 -4
- data/doc/Compony/ModelFields/Integer.html +83 -5
- data/doc/Compony/ModelFields/Percentage.html +4 -4
- data/doc/Compony/ModelFields/Phone.html +4 -4
- data/doc/Compony/ModelFields/RichText.html +4 -4
- data/doc/Compony/ModelFields/String.html +4 -4
- data/doc/Compony/ModelFields/Text.html +4 -4
- data/doc/Compony/ModelFields/Time.html +4 -4
- data/doc/Compony/ModelFields/Url.html +4 -4
- data/doc/Compony/ModelFields.html +3 -3
- data/doc/Compony/ModelMixin.html +26 -26
- data/doc/Compony/NaturalOrdering.html +3 -3
- data/doc/Compony/RequestContext.html +3 -3
- data/doc/Compony/Version.html +3 -3
- data/doc/Compony/ViewHelpers.html +3 -3
- data/doc/Compony.html +4 -4
- data/doc/ComponyController.html +3 -3
- data/doc/_index.html +25 -4
- data/doc/class_list.html +3 -6
- data/doc/css/full_list.css +3 -3
- data/doc/css/style.css +0 -6
- data/doc/file.README.html +37 -10
- data/doc/file_list.html +2 -5
- data/doc/frames.html +5 -10
- data/doc/index.html +37 -10
- data/doc/js/app.js +264 -294
- data/doc/js/full_list.js +4 -30
- data/doc/method_list.html +413 -96
- data/doc/top-level-namespace.html +3 -3
- data/lib/compony/components/index.rb +33 -0
- data/lib/compony/components/list.rb +428 -0
- data/lib/compony/components/show.rb +116 -0
- data/lib/compony/model_fields/anchormodel.rb +13 -0
- data/lib/compony/model_fields/base.rb +12 -0
- data/lib/compony/model_fields/boolean.rb +13 -0
- data/lib/compony/model_fields/integer.rb +3 -0
- data/lib/compony/model_mixin.rb +5 -0
- data/lib/compony.rb +3 -0
- data/lib/generators/component/component_generator.rb +6 -0
- data/lib/generators/component/templates/index.rb.erb +2 -0
- data/lib/generators/component/templates/list.rb.erb +7 -0
- data/lib/generators/component/templates/show.rb.erb +2 -0
- metadata +10 -1
data/doc/method_list.html
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
<!DOCTYPE html>
|
2
|
-
<html
|
2
|
+
<html>
|
3
3
|
<head>
|
4
4
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
5
5
|
<meta charset="utf-8" />
|
@@ -38,10 +38,7 @@
|
|
38
38
|
|
39
39
|
</div>
|
40
40
|
|
41
|
-
<div id="search">
|
42
|
-
<label for="search-class">Search:</label>
|
43
|
-
<input id="search-class" type="text" />
|
44
|
-
</div>
|
41
|
+
<div id="search">Search: <input type="text" /></div>
|
45
42
|
</div>
|
46
43
|
|
47
44
|
<ul id="full_list" class="method">
|
@@ -88,6 +85,14 @@
|
|
88
85
|
|
89
86
|
|
90
87
|
<li class="even ">
|
88
|
+
<div class="item">
|
89
|
+
<span class='object_link'><a href="Compony/Components/Show.html#all_field_columns-instance_method" title="Compony::Components::Show#all_field_columns (method)">#all_field_columns</a></span>
|
90
|
+
<small>Compony::Components::Show</small>
|
91
|
+
</div>
|
92
|
+
</li>
|
93
|
+
|
94
|
+
|
95
|
+
<li class="odd ">
|
91
96
|
<div class="item">
|
92
97
|
<span class='object_link'><a href="Compony/ComponentMixins/Resourceful.html#assign_attributes-instance_method" title="Compony::ComponentMixins::Resourceful#assign_attributes (method)">#assign_attributes</a></span>
|
93
98
|
<small>Compony::ComponentMixins::Resourceful</small>
|
@@ -95,7 +100,7 @@
|
|
95
100
|
</li>
|
96
101
|
|
97
102
|
|
98
|
-
<li class="
|
103
|
+
<li class="even ">
|
99
104
|
<div class="item">
|
100
105
|
<span class='object_link'><a href="Compony/ComponentMixins/Default/Standalone/ResourcefulVerbDsl.html#assign_attributes-instance_method" title="Compony::ComponentMixins::Default::Standalone::ResourcefulVerbDsl#assign_attributes (method)">#assign_attributes</a></span>
|
101
106
|
<small>Compony::ComponentMixins::Default::Standalone::ResourcefulVerbDsl</small>
|
@@ -103,7 +108,7 @@
|
|
103
108
|
</li>
|
104
109
|
|
105
110
|
|
106
|
-
<li class="
|
111
|
+
<li class="odd ">
|
107
112
|
<div class="item">
|
108
113
|
<span class='object_link'><a href="Compony/ModelFields/Base.html#association%3F-instance_method" title="Compony::ModelFields::Base#association? (method)">#association?</a></span>
|
109
114
|
<small>Compony::ModelFields::Base</small>
|
@@ -111,7 +116,7 @@
|
|
111
116
|
</li>
|
112
117
|
|
113
118
|
|
114
|
-
<li class="
|
119
|
+
<li class="even ">
|
115
120
|
<div class="item">
|
116
121
|
<span class='object_link'><a href="Compony.html#authentication_before_action-class_method" title="Compony.authentication_before_action (method)">authentication_before_action</a></span>
|
117
122
|
<small>Compony</small>
|
@@ -119,7 +124,7 @@
|
|
119
124
|
</li>
|
120
125
|
|
121
126
|
|
122
|
-
<li class="
|
127
|
+
<li class="odd ">
|
123
128
|
<div class="item">
|
124
129
|
<span class='object_link'><a href="Compony.html#authentication_before_action=-class_method" title="Compony.authentication_before_action= (method)">authentication_before_action=</a></span>
|
125
130
|
<small>Compony</small>
|
@@ -127,7 +132,7 @@
|
|
127
132
|
</li>
|
128
133
|
|
129
134
|
|
130
|
-
<li class="
|
135
|
+
<li class="even ">
|
131
136
|
<div class="item">
|
132
137
|
<span class='object_link'><a href="Compony/ComponentMixins/Default/Standalone/VerbDsl.html#authorize-instance_method" title="Compony::ComponentMixins::Default::Standalone::VerbDsl#authorize (method)">#authorize</a></span>
|
133
138
|
<small>Compony::ComponentMixins::Default::Standalone::VerbDsl</small>
|
@@ -135,7 +140,7 @@
|
|
135
140
|
</li>
|
136
141
|
|
137
142
|
|
138
|
-
<li class="
|
143
|
+
<li class="odd ">
|
139
144
|
<div class="item">
|
140
145
|
<span class='object_link'><a href="Compony/Component.html#before_render-instance_method" title="Compony::Component#before_render (method)">#before_render</a></span>
|
141
146
|
<small>Compony::Component</small>
|
@@ -143,7 +148,7 @@
|
|
143
148
|
</li>
|
144
149
|
|
145
150
|
|
146
|
-
<li class="
|
151
|
+
<li class="even ">
|
147
152
|
<div class="item">
|
148
153
|
<span class='object_link'><a href="Compony.html#button-class_method" title="Compony.button (method)">button</a></span>
|
149
154
|
<small>Compony</small>
|
@@ -151,7 +156,7 @@
|
|
151
156
|
</li>
|
152
157
|
|
153
158
|
|
154
|
-
<li class="
|
159
|
+
<li class="odd ">
|
155
160
|
<div class="item">
|
156
161
|
<span class='object_link'><a href="Compony.html#button_component_class-class_method" title="Compony.button_component_class (method)">button_component_class</a></span>
|
157
162
|
<small>Compony</small>
|
@@ -159,7 +164,7 @@
|
|
159
164
|
</li>
|
160
165
|
|
161
166
|
|
162
|
-
<li class="
|
167
|
+
<li class="even ">
|
163
168
|
<div class="item">
|
164
169
|
<span class='object_link'><a href="Compony.html#button_component_class=-class_method" title="Compony.button_component_class= (method)">button_component_class=</a></span>
|
165
170
|
<small>Compony</small>
|
@@ -167,7 +172,7 @@
|
|
167
172
|
</li>
|
168
173
|
|
169
174
|
|
170
|
-
<li class="
|
175
|
+
<li class="odd ">
|
171
176
|
<div class="item">
|
172
177
|
<span class='object_link'><a href="Compony.html#button_defaults-class_method" title="Compony.button_defaults (method)">button_defaults</a></span>
|
173
178
|
<small>Compony</small>
|
@@ -175,7 +180,7 @@
|
|
175
180
|
</li>
|
176
181
|
|
177
182
|
|
178
|
-
<li class="
|
183
|
+
<li class="even ">
|
179
184
|
<div class="item">
|
180
185
|
<span class='object_link'><a href="Compony/ComponentMixins/Default/Standalone.html#clear_standalone!-instance_method" title="Compony::ComponentMixins::Default::Standalone#clear_standalone! (method)">#clear_standalone!</a></span>
|
181
186
|
<small>Compony::ComponentMixins::Default::Standalone</small>
|
@@ -183,7 +188,7 @@
|
|
183
188
|
</li>
|
184
189
|
|
185
190
|
|
186
|
-
<li class="
|
191
|
+
<li class="odd ">
|
187
192
|
<div class="item">
|
188
193
|
<span class='object_link'><a href="Compony/Components/Form.html#collect-instance_method" title="Compony::Components::Form#collect (method)">#collect</a></span>
|
189
194
|
<small>Compony::Components::Form</small>
|
@@ -191,7 +196,7 @@
|
|
191
196
|
</li>
|
192
197
|
|
193
198
|
|
194
|
-
<li class="
|
199
|
+
<li class="even ">
|
195
200
|
<div class="item">
|
196
201
|
<span class='object_link'><a href="Compony/ModelFields/Anchormodel.html#collect-class_method" title="Compony::ModelFields::Anchormodel.collect (method)">collect</a></span>
|
197
202
|
<small>Compony::ModelFields::Anchormodel</small>
|
@@ -199,7 +204,7 @@
|
|
199
204
|
</li>
|
200
205
|
|
201
206
|
|
202
|
-
<li class="
|
207
|
+
<li class="odd ">
|
203
208
|
<div class="item">
|
204
209
|
<span class='object_link'><a href="Compony/ComponentMixins/Default/Labelling.html#color-instance_method" title="Compony::ComponentMixins::Default::Labelling#color (method)">#color</a></span>
|
205
210
|
<small>Compony::ComponentMixins::Default::Labelling</small>
|
@@ -207,7 +212,39 @@
|
|
207
212
|
</li>
|
208
213
|
|
209
214
|
|
215
|
+
<li class="even ">
|
216
|
+
<div class="item">
|
217
|
+
<span class='object_link'><a href="Compony/Components/List.html#column-instance_method" title="Compony::Components::List#column (method)">#column</a></span>
|
218
|
+
<small>Compony::Components::List</small>
|
219
|
+
</div>
|
220
|
+
</li>
|
221
|
+
|
222
|
+
|
210
223
|
<li class="odd ">
|
224
|
+
<div class="item">
|
225
|
+
<span class='object_link'><a href="Compony/Components/Show.html#column-instance_method" title="Compony::Components::Show#column (method)">#column</a></span>
|
226
|
+
<small>Compony::Components::Show</small>
|
227
|
+
</div>
|
228
|
+
</li>
|
229
|
+
|
230
|
+
|
231
|
+
<li class="even ">
|
232
|
+
<div class="item">
|
233
|
+
<span class='object_link'><a href="Compony/Components/List.html#columns-instance_method" title="Compony::Components::List#columns (method)">#columns</a></span>
|
234
|
+
<small>Compony::Components::List</small>
|
235
|
+
</div>
|
236
|
+
</li>
|
237
|
+
|
238
|
+
|
239
|
+
<li class="odd ">
|
240
|
+
<div class="item">
|
241
|
+
<span class='object_link'><a href="Compony/Components/Show.html#columns-instance_method" title="Compony::Components::Show#columns (method)">#columns</a></span>
|
242
|
+
<small>Compony::Components::Show</small>
|
243
|
+
</div>
|
244
|
+
</li>
|
245
|
+
|
246
|
+
|
247
|
+
<li class="even ">
|
211
248
|
<div class="item">
|
212
249
|
<span class='object_link'><a href="Compony.html#comp_class_for-class_method" title="Compony.comp_class_for (method)">comp_class_for</a></span>
|
213
250
|
<small>Compony</small>
|
@@ -215,7 +252,7 @@
|
|
215
252
|
</li>
|
216
253
|
|
217
254
|
|
218
|
-
<li class="
|
255
|
+
<li class="odd ">
|
219
256
|
<div class="item">
|
220
257
|
<span class='object_link'><a href="Compony.html#comp_class_for!-class_method" title="Compony.comp_class_for! (method)">comp_class_for!</a></span>
|
221
258
|
<small>Compony</small>
|
@@ -223,7 +260,7 @@
|
|
223
260
|
</li>
|
224
261
|
|
225
262
|
|
226
|
-
<li class="
|
263
|
+
<li class="even ">
|
227
264
|
<div class="item">
|
228
265
|
<span class='object_link'><a href="Compony/Component.html#comp_cst-class_method" title="Compony::Component.comp_cst (method)">comp_cst</a></span>
|
229
266
|
<small>Compony::Component</small>
|
@@ -231,7 +268,7 @@
|
|
231
268
|
</li>
|
232
269
|
|
233
270
|
|
234
|
-
<li class="
|
271
|
+
<li class="odd ">
|
235
272
|
<div class="item">
|
236
273
|
<span class='object_link'><a href="Compony/Component.html#comp_name-class_method" title="Compony::Component.comp_name (method)">comp_name</a></span>
|
237
274
|
<small>Compony::Component</small>
|
@@ -239,7 +276,7 @@
|
|
239
276
|
</li>
|
240
277
|
|
241
278
|
|
242
|
-
<li class="
|
279
|
+
<li class="even ">
|
243
280
|
<div class="item">
|
244
281
|
<span class='object_link'><a href="Compony/Component.html#comp_opts-instance_method" title="Compony::Component#comp_opts (method)">#comp_opts</a></span>
|
245
282
|
<small>Compony::Component</small>
|
@@ -247,7 +284,7 @@
|
|
247
284
|
</li>
|
248
285
|
|
249
286
|
|
250
|
-
<li class="
|
287
|
+
<li class="odd ">
|
251
288
|
<div class="item">
|
252
289
|
<span class='object_link'><a href="Compony/RequestContext.html#component-instance_method" title="Compony::RequestContext#component (method)">#component</a></span>
|
253
290
|
<small>Compony::RequestContext</small>
|
@@ -255,7 +292,7 @@
|
|
255
292
|
</li>
|
256
293
|
|
257
294
|
|
258
|
-
<li class="
|
295
|
+
<li class="even ">
|
259
296
|
<div class="item">
|
260
297
|
<span class='object_link'><a href="Compony/ViewHelpers.html#compony_actions-instance_method" title="Compony::ViewHelpers#compony_actions (method)">#compony_actions</a></span>
|
261
298
|
<small>Compony::ViewHelpers</small>
|
@@ -263,7 +300,7 @@
|
|
263
300
|
</li>
|
264
301
|
|
265
302
|
|
266
|
-
<li class="
|
303
|
+
<li class="odd ">
|
267
304
|
<div class="item">
|
268
305
|
<span class='object_link'><a href="Compony/ViewHelpers.html#compony_button-instance_method" title="Compony::ViewHelpers#compony_button (method)">#compony_button</a></span>
|
269
306
|
<small>Compony::ViewHelpers</small>
|
@@ -271,7 +308,7 @@
|
|
271
308
|
</li>
|
272
309
|
|
273
310
|
|
274
|
-
<li class="
|
311
|
+
<li class="even ">
|
275
312
|
<div class="item">
|
276
313
|
<span class='object_link'><a href="Compony/ViewHelpers.html#compony_link-instance_method" title="Compony::ViewHelpers#compony_link (method)">#compony_link</a></span>
|
277
314
|
<small>Compony::ViewHelpers</small>
|
@@ -279,7 +316,7 @@
|
|
279
316
|
</li>
|
280
317
|
|
281
318
|
|
282
|
-
<li class="
|
319
|
+
<li class="odd ">
|
283
320
|
<div class="item">
|
284
321
|
<span class='object_link'><a href="Compony/Component.html#content-instance_method" title="Compony::Component#content (method)">#content</a></span>
|
285
322
|
<small>Compony::Component</small>
|
@@ -287,7 +324,7 @@
|
|
287
324
|
</li>
|
288
325
|
|
289
326
|
|
290
|
-
<li class="
|
327
|
+
<li class="even ">
|
291
328
|
<div class="item">
|
292
329
|
<span class='object_link'><a href="Compony/RequestContext.html#content-instance_method" title="Compony::RequestContext#content (method)">#content</a></span>
|
293
330
|
<small>Compony::RequestContext</small>
|
@@ -295,7 +332,7 @@
|
|
295
332
|
</li>
|
296
333
|
|
297
334
|
|
298
|
-
<li class="
|
335
|
+
<li class="odd ">
|
299
336
|
<div class="item">
|
300
337
|
<span class='object_link'><a href="Compony/RequestContext.html#content!-instance_method" title="Compony::RequestContext#content! (method)">#content!</a></span>
|
301
338
|
<small>Compony::RequestContext</small>
|
@@ -303,7 +340,7 @@
|
|
303
340
|
</li>
|
304
341
|
|
305
342
|
|
306
|
-
<li class="
|
343
|
+
<li class="even ">
|
307
344
|
<div class="item">
|
308
345
|
<span class='object_link'><a href="Compony.html#content_after_root_comp-class_method" title="Compony.content_after_root_comp (method)">content_after_root_comp</a></span>
|
309
346
|
<small>Compony</small>
|
@@ -311,7 +348,7 @@
|
|
311
348
|
</li>
|
312
349
|
|
313
350
|
|
314
|
-
<li class="
|
351
|
+
<li class="odd ">
|
315
352
|
<div class="item">
|
316
353
|
<span class='object_link'><a href="Compony.html#content_after_root_comp_block-class_method" title="Compony.content_after_root_comp_block (method)">content_after_root_comp_block</a></span>
|
317
354
|
<small>Compony</small>
|
@@ -319,7 +356,7 @@
|
|
319
356
|
</li>
|
320
357
|
|
321
358
|
|
322
|
-
<li class="
|
359
|
+
<li class="even ">
|
323
360
|
<div class="item">
|
324
361
|
<span class='object_link'><a href="Compony.html#content_before_root_comp-class_method" title="Compony.content_before_root_comp (method)">content_before_root_comp</a></span>
|
325
362
|
<small>Compony</small>
|
@@ -327,7 +364,7 @@
|
|
327
364
|
</li>
|
328
365
|
|
329
366
|
|
330
|
-
<li class="
|
367
|
+
<li class="odd ">
|
331
368
|
<div class="item">
|
332
369
|
<span class='object_link'><a href="Compony.html#content_before_root_comp_block-class_method" title="Compony.content_before_root_comp_block (method)">content_before_root_comp_block</a></span>
|
333
370
|
<small>Compony</small>
|
@@ -335,7 +372,7 @@
|
|
335
372
|
</li>
|
336
373
|
|
337
374
|
|
338
|
-
<li class="
|
375
|
+
<li class="even ">
|
339
376
|
<div class="item">
|
340
377
|
<span class='object_link'><a href="Compony/Component.html#content_blocks-instance_method" title="Compony::Component#content_blocks (method)">#content_blocks</a></span>
|
341
378
|
<small>Compony::Component</small>
|
@@ -343,7 +380,7 @@
|
|
343
380
|
</li>
|
344
381
|
|
345
382
|
|
346
|
-
<li class="
|
383
|
+
<li class="odd ">
|
347
384
|
<div class="item">
|
348
385
|
<span class='object_link'><a href="Compony/RequestContext.html#controller-instance_method" title="Compony::RequestContext#controller (method)">#controller</a></span>
|
349
386
|
<small>Compony::RequestContext</small>
|
@@ -351,7 +388,7 @@
|
|
351
388
|
</li>
|
352
389
|
|
353
390
|
|
354
|
-
<li class="
|
391
|
+
<li class="even ">
|
355
392
|
<div class="item">
|
356
393
|
<span class='object_link'><a href="Compony/ComponentMixins/Resourceful.html#data-instance_method" title="Compony::ComponentMixins::Resourceful#data (method)">#data</a></span>
|
357
394
|
<small>Compony::ComponentMixins::Resourceful</small>
|
@@ -359,7 +396,7 @@
|
|
359
396
|
</li>
|
360
397
|
|
361
398
|
|
362
|
-
<li class="
|
399
|
+
<li class="odd ">
|
363
400
|
<div class="item">
|
364
401
|
<span class='object_link'><a href="Compony/ComponentMixins/Resourceful.html#data_class-instance_method" title="Compony::ComponentMixins::Resourceful#data_class (method)">#data_class</a></span>
|
365
402
|
<small>Compony::ComponentMixins::Resourceful</small>
|
@@ -367,7 +404,7 @@
|
|
367
404
|
</li>
|
368
405
|
|
369
406
|
|
370
|
-
<li class="
|
407
|
+
<li class="even ">
|
371
408
|
<div class="item">
|
372
409
|
<span class='object_link'><a href="Compony/ComponentMixins/Default/Standalone/VerbDsl.html#default_config-instance_method" title="Compony::ComponentMixins::Default::Standalone::VerbDsl#default_config (method)">#default_config</a></span>
|
373
410
|
<small>Compony::ComponentMixins::Default::Standalone::VerbDsl</small>
|
@@ -375,6 +412,14 @@
|
|
375
412
|
</li>
|
376
413
|
|
377
414
|
|
415
|
+
<li class="odd ">
|
416
|
+
<div class="item">
|
417
|
+
<span class='object_link'><a href="Compony/Components/List.html#default_sorting-instance_method" title="Compony::Components::List#default_sorting (method)">#default_sorting</a></span>
|
418
|
+
<small>Compony::Components::List</small>
|
419
|
+
</div>
|
420
|
+
</li>
|
421
|
+
|
422
|
+
|
378
423
|
<li class="even ">
|
379
424
|
<div class="item">
|
380
425
|
<span class='object_link'><a href="Compony/Components/Form.html#disable!-instance_method" title="Compony::Components::Form#disable! (method)">#disable!</a></span>
|
@@ -464,6 +509,62 @@
|
|
464
509
|
|
465
510
|
|
466
511
|
<li class="odd ">
|
512
|
+
<div class="item">
|
513
|
+
<span class='object_link'><a href="Compony/Components/List.html#filter-instance_method" title="Compony::Components::List#filter (method)">#filter</a></span>
|
514
|
+
<small>Compony::Components::List</small>
|
515
|
+
</div>
|
516
|
+
</li>
|
517
|
+
|
518
|
+
|
519
|
+
<li class="even ">
|
520
|
+
<div class="item">
|
521
|
+
<span class='object_link'><a href="Compony/Components/List.html#filter_input_class-instance_method" title="Compony::Components::List#filter_input_class (method)">#filter_input_class</a></span>
|
522
|
+
<small>Compony::Components::List</small>
|
523
|
+
</div>
|
524
|
+
</li>
|
525
|
+
|
526
|
+
|
527
|
+
<li class="odd ">
|
528
|
+
<div class="item">
|
529
|
+
<span class='object_link'><a href="Compony/Components/List.html#filter_item_wrapper_class-instance_method" title="Compony::Components::List#filter_item_wrapper_class (method)">#filter_item_wrapper_class</a></span>
|
530
|
+
<small>Compony::Components::List</small>
|
531
|
+
</div>
|
532
|
+
</li>
|
533
|
+
|
534
|
+
|
535
|
+
<li class="even ">
|
536
|
+
<div class="item">
|
537
|
+
<span class='object_link'><a href="Compony/Components/List.html#filter_label_class-instance_method" title="Compony::Components::List#filter_label_class (method)">#filter_label_class</a></span>
|
538
|
+
<small>Compony::Components::List</small>
|
539
|
+
</div>
|
540
|
+
</li>
|
541
|
+
|
542
|
+
|
543
|
+
<li class="odd ">
|
544
|
+
<div class="item">
|
545
|
+
<span class='object_link'><a href="Compony/Components/List.html#filter_select_class-instance_method" title="Compony::Components::List#filter_select_class (method)">#filter_select_class</a></span>
|
546
|
+
<small>Compony::Components::List</small>
|
547
|
+
</div>
|
548
|
+
</li>
|
549
|
+
|
550
|
+
|
551
|
+
<li class="even ">
|
552
|
+
<div class="item">
|
553
|
+
<span class='object_link'><a href="Compony/Components/List.html#filtering_enabled%3F-instance_method" title="Compony::Components::List#filtering_enabled? (method)">#filtering_enabled?</a></span>
|
554
|
+
<small>Compony::Components::List</small>
|
555
|
+
</div>
|
556
|
+
</li>
|
557
|
+
|
558
|
+
|
559
|
+
<li class="odd ">
|
560
|
+
<div class="item">
|
561
|
+
<span class='object_link'><a href="Compony/Components/List.html#filters-instance_method" title="Compony::Components::List#filters (method)">#filters</a></span>
|
562
|
+
<small>Compony::Components::List</small>
|
563
|
+
</div>
|
564
|
+
</li>
|
565
|
+
|
566
|
+
|
567
|
+
<li class="even ">
|
467
568
|
<div class="item">
|
468
569
|
<span class='object_link'><a href="Compony/Components/WithForm.html#form_cancancan_action-instance_method" title="Compony::Components::WithForm#form_cancancan_action (method)">#form_cancancan_action</a></span>
|
469
570
|
<small>Compony::Components::WithForm</small>
|
@@ -471,7 +572,7 @@
|
|
471
572
|
</li>
|
472
573
|
|
473
574
|
|
474
|
-
<li class="
|
575
|
+
<li class="odd ">
|
475
576
|
<div class="item">
|
476
577
|
<span class='object_link'><a href="Compony/Components/WithForm.html#form_comp-instance_method" title="Compony::Components::WithForm#form_comp (method)">#form_comp</a></span>
|
477
578
|
<small>Compony::Components::WithForm</small>
|
@@ -479,7 +580,7 @@
|
|
479
580
|
</li>
|
480
581
|
|
481
582
|
|
482
|
-
<li class="
|
583
|
+
<li class="even ">
|
483
584
|
<div class="item">
|
484
585
|
<span class='object_link'><a href="Compony/Components/WithForm.html#form_comp_class-instance_method" title="Compony::Components::WithForm#form_comp_class (method)">#form_comp_class</a></span>
|
485
586
|
<small>Compony::Components::WithForm</small>
|
@@ -487,7 +588,7 @@
|
|
487
588
|
</li>
|
488
589
|
|
489
590
|
|
490
|
-
<li class="
|
591
|
+
<li class="odd ">
|
491
592
|
<div class="item">
|
492
593
|
<span class='object_link'><a href="Compony/Components/Form.html#form_fields-instance_method" title="Compony::Components::Form#form_fields (method)">#form_fields</a></span>
|
493
594
|
<small>Compony::Components::Form</small>
|
@@ -495,7 +596,7 @@
|
|
495
596
|
</li>
|
496
597
|
|
497
598
|
|
498
|
-
<li class="
|
599
|
+
<li class="even ">
|
499
600
|
<div class="item">
|
500
601
|
<span class='object_link'><a href="Compony/Components/Form.html#form_params-instance_method" title="Compony::Components::Form#form_params (method)">#form_params</a></span>
|
501
602
|
<small>Compony::Components::Form</small>
|
@@ -503,7 +604,7 @@
|
|
503
604
|
</li>
|
504
605
|
|
505
606
|
|
506
|
-
<li class="
|
607
|
+
<li class="odd ">
|
507
608
|
<div class="item">
|
508
609
|
<span class='object_link'><a href="Compony/ModelMixin.html#full_feasibility_messages-instance_method" title="Compony::ModelMixin#full_feasibility_messages (method)">#full_feasibility_messages</a></span>
|
509
610
|
<small>Compony::ModelMixin</small>
|
@@ -511,7 +612,7 @@
|
|
511
612
|
</li>
|
512
613
|
|
513
614
|
|
514
|
-
<li class="
|
615
|
+
<li class="even ">
|
515
616
|
<div class="item">
|
516
617
|
<span class='object_link'><a href="Compony/ComponentMixins/Resourceful.html#global_after_assign_attributes_block-instance_method" title="Compony::ComponentMixins::Resourceful#global_after_assign_attributes_block (method)">#global_after_assign_attributes_block</a></span>
|
517
618
|
<small>Compony::ComponentMixins::Resourceful</small>
|
@@ -519,7 +620,7 @@
|
|
519
620
|
</li>
|
520
621
|
|
521
622
|
|
522
|
-
<li class="
|
623
|
+
<li class="odd ">
|
523
624
|
<div class="item">
|
524
625
|
<span class='object_link'><a href="Compony/ComponentMixins/Resourceful.html#global_after_load_data_block-instance_method" title="Compony::ComponentMixins::Resourceful#global_after_load_data_block (method)">#global_after_load_data_block</a></span>
|
525
626
|
<small>Compony::ComponentMixins::Resourceful</small>
|
@@ -527,7 +628,7 @@
|
|
527
628
|
</li>
|
528
629
|
|
529
630
|
|
530
|
-
<li class="
|
631
|
+
<li class="even ">
|
531
632
|
<div class="item">
|
532
633
|
<span class='object_link'><a href="Compony/ComponentMixins/Resourceful.html#global_assign_attributes_block-instance_method" title="Compony::ComponentMixins::Resourceful#global_assign_attributes_block (method)">#global_assign_attributes_block</a></span>
|
533
634
|
<small>Compony::ComponentMixins::Resourceful</small>
|
@@ -535,7 +636,7 @@
|
|
535
636
|
</li>
|
536
637
|
|
537
638
|
|
538
|
-
<li class="
|
639
|
+
<li class="odd ">
|
539
640
|
<div class="item">
|
540
641
|
<span class='object_link'><a href="Compony/ComponentMixins/Resourceful.html#global_load_data_block-instance_method" title="Compony::ComponentMixins::Resourceful#global_load_data_block (method)">#global_load_data_block</a></span>
|
541
642
|
<small>Compony::ComponentMixins::Resourceful</small>
|
@@ -543,7 +644,7 @@
|
|
543
644
|
</li>
|
544
645
|
|
545
646
|
|
546
|
-
<li class="
|
647
|
+
<li class="even ">
|
547
648
|
<div class="item">
|
548
649
|
<span class='object_link'><a href="Compony/ComponentMixins/Resourceful.html#global_store_data_block-instance_method" title="Compony::ComponentMixins::Resourceful#global_store_data_block (method)">#global_store_data_block</a></span>
|
549
650
|
<small>Compony::ComponentMixins::Resourceful</small>
|
@@ -551,7 +652,7 @@
|
|
551
652
|
</li>
|
552
653
|
|
553
654
|
|
554
|
-
<li class="
|
655
|
+
<li class="odd ">
|
555
656
|
<div class="item">
|
556
657
|
<span class='object_link'><a href="Compony/RequestContext.html#helpers-instance_method" title="Compony::RequestContext#helpers (method)">#helpers</a></span>
|
557
658
|
<small>Compony::RequestContext</small>
|
@@ -559,7 +660,7 @@
|
|
559
660
|
</li>
|
560
661
|
|
561
662
|
|
562
|
-
<li class="
|
663
|
+
<li class="even ">
|
563
664
|
<div class="item">
|
564
665
|
<span class='object_link'><a href="Compony/ComponentMixins/Default/Labelling.html#icon-instance_method" title="Compony::ComponentMixins::Default::Labelling#icon (method)">#icon</a></span>
|
565
666
|
<small>Compony::ComponentMixins::Default::Labelling</small>
|
@@ -567,7 +668,7 @@
|
|
567
668
|
</li>
|
568
669
|
|
569
670
|
|
570
|
-
<li class="
|
671
|
+
<li class="odd ">
|
571
672
|
<div class="item">
|
572
673
|
<span class='object_link'><a href="Compony/Component.html#id-instance_method" title="Compony::Component#id (method)">#id</a></span>
|
573
674
|
<small>Compony::Component</small>
|
@@ -575,7 +676,7 @@
|
|
575
676
|
</li>
|
576
677
|
|
577
678
|
|
578
|
-
<li class="
|
679
|
+
<li class="even ">
|
579
680
|
<div class="item">
|
580
681
|
<span class='object_link'><a href="Compony/Component.html#initialize-instance_method" title="Compony::Component#initialize (method)">#initialize</a></span>
|
581
682
|
<small>Compony::Component</small>
|
@@ -583,7 +684,7 @@
|
|
583
684
|
</li>
|
584
685
|
|
585
686
|
|
586
|
-
<li class="
|
687
|
+
<li class="odd ">
|
587
688
|
<div class="item">
|
588
689
|
<span class='object_link'><a href="Compony/Components/Form.html#initialize-instance_method" title="Compony::Components::Form#initialize (method)">#initialize</a></span>
|
589
690
|
<small>Compony::Components::Form</small>
|
@@ -591,7 +692,23 @@
|
|
591
692
|
</li>
|
592
693
|
|
593
694
|
|
695
|
+
<li class="even ">
|
696
|
+
<div class="item">
|
697
|
+
<span class='object_link'><a href="Compony/Components/List.html#initialize-instance_method" title="Compony::Components::List#initialize (method)">#initialize</a></span>
|
698
|
+
<small>Compony::Components::List</small>
|
699
|
+
</div>
|
700
|
+
</li>
|
701
|
+
|
702
|
+
|
594
703
|
<li class="odd ">
|
704
|
+
<div class="item">
|
705
|
+
<span class='object_link'><a href="Compony/Components/Show.html#initialize-instance_method" title="Compony::Components::Show#initialize (method)">#initialize</a></span>
|
706
|
+
<small>Compony::Components::Show</small>
|
707
|
+
</div>
|
708
|
+
</li>
|
709
|
+
|
710
|
+
|
711
|
+
<li class="even ">
|
595
712
|
<div class="item">
|
596
713
|
<span class='object_link'><a href="Compony/RequestContext.html#initialize-instance_method" title="Compony::RequestContext#initialize (method)">#initialize</a></span>
|
597
714
|
<small>Compony::RequestContext</small>
|
@@ -599,7 +716,7 @@
|
|
599
716
|
</li>
|
600
717
|
|
601
718
|
|
602
|
-
<li class="
|
719
|
+
<li class="odd ">
|
603
720
|
<div class="item">
|
604
721
|
<span class='object_link'><a href="Compony/Components/Button.html#initialize-instance_method" title="Compony::Components::Button#initialize (method)">#initialize</a></span>
|
605
722
|
<small>Compony::Components::Button</small>
|
@@ -607,7 +724,7 @@
|
|
607
724
|
</li>
|
608
725
|
|
609
726
|
|
610
|
-
<li class="
|
727
|
+
<li class="even ">
|
611
728
|
<div class="item">
|
612
729
|
<span class='object_link'><a href="Compony/ModelFields/Base.html#initialize-instance_method" title="Compony::ModelFields::Base#initialize (method)">#initialize</a></span>
|
613
730
|
<small>Compony::ModelFields::Base</small>
|
@@ -615,7 +732,7 @@
|
|
615
732
|
</li>
|
616
733
|
|
617
734
|
|
618
|
-
<li class="
|
735
|
+
<li class="odd ">
|
619
736
|
<div class="item">
|
620
737
|
<span class='object_link'><a href="Compony/ModelFields/Phone.html#initialize-instance_method" title="Compony::ModelFields::Phone#initialize (method)">#initialize</a></span>
|
621
738
|
<small>Compony::ModelFields::Phone</small>
|
@@ -623,7 +740,7 @@
|
|
623
740
|
</li>
|
624
741
|
|
625
742
|
|
626
|
-
<li class="
|
743
|
+
<li class="even ">
|
627
744
|
<div class="item">
|
628
745
|
<span class='object_link'><a href="Compony/Components/WithForm.html#initialize-instance_method" title="Compony::Components::WithForm#initialize (method)">#initialize</a></span>
|
629
746
|
<small>Compony::Components::WithForm</small>
|
@@ -631,7 +748,7 @@
|
|
631
748
|
</li>
|
632
749
|
|
633
750
|
|
634
|
-
<li class="
|
751
|
+
<li class="odd ">
|
635
752
|
<div class="item">
|
636
753
|
<span class='object_link'><a href="Compony/MethodAccessibleHash.html#initialize-instance_method" title="Compony::MethodAccessibleHash#initialize (method)">#initialize</a></span>
|
637
754
|
<small>Compony::MethodAccessibleHash</small>
|
@@ -639,7 +756,7 @@
|
|
639
756
|
</li>
|
640
757
|
|
641
758
|
|
642
|
-
<li class="
|
759
|
+
<li class="even ">
|
643
760
|
<div class="item">
|
644
761
|
<span class='object_link'><a href="Compony/ModelFields/Association.html#initialize-instance_method" title="Compony::ModelFields::Association#initialize (method)">#initialize</a></span>
|
645
762
|
<small>Compony::ModelFields::Association</small>
|
@@ -647,7 +764,7 @@
|
|
647
764
|
</li>
|
648
765
|
|
649
766
|
|
650
|
-
<li class="
|
767
|
+
<li class="odd ">
|
651
768
|
<div class="item">
|
652
769
|
<span class='object_link'><a href="Compony/ComponentMixins/Resourceful.html#initialize-instance_method" title="Compony::ComponentMixins::Resourceful#initialize (method)">#initialize</a></span>
|
653
770
|
<small>Compony::ComponentMixins::Resourceful</small>
|
@@ -655,7 +772,7 @@
|
|
655
772
|
</li>
|
656
773
|
|
657
774
|
|
658
|
-
<li class="
|
775
|
+
<li class="even ">
|
659
776
|
<div class="item">
|
660
777
|
<span class='object_link'><a href="Compony/ComponentMixins/Default/Standalone/VerbDsl.html#initialize-instance_method" title="Compony::ComponentMixins::Default::Standalone::VerbDsl#initialize (method)">#initialize</a></span>
|
661
778
|
<small>Compony::ComponentMixins::Default::Standalone::VerbDsl</small>
|
@@ -663,7 +780,7 @@
|
|
663
780
|
</li>
|
664
781
|
|
665
782
|
|
666
|
-
<li class="
|
783
|
+
<li class="odd ">
|
667
784
|
<div class="item">
|
668
785
|
<span class='object_link'><a href="Compony/ComponentMixins/Default/Standalone/StandaloneDsl.html#initialize-instance_method" title="Compony::ComponentMixins::Default::Standalone::StandaloneDsl#initialize (method)">#initialize</a></span>
|
669
786
|
<small>Compony::ComponentMixins::Default::Standalone::StandaloneDsl</small>
|
@@ -671,7 +788,7 @@
|
|
671
788
|
</li>
|
672
789
|
|
673
790
|
|
674
|
-
<li class="
|
791
|
+
<li class="even ">
|
675
792
|
<div class="item">
|
676
793
|
<span class='object_link'><a href="Compony/ComponentMixins/Default/Standalone/ResourcefulVerbDsl.html#initialize-instance_method" title="Compony::ComponentMixins::Default::Standalone::ResourcefulVerbDsl#initialize (method)">#initialize</a></span>
|
677
794
|
<small>Compony::ComponentMixins::Default::Standalone::ResourcefulVerbDsl</small>
|
@@ -679,7 +796,7 @@
|
|
679
796
|
</li>
|
680
797
|
|
681
798
|
|
682
|
-
<li class="
|
799
|
+
<li class="odd ">
|
683
800
|
<div class="item">
|
684
801
|
<span class='object_link'><a href="Compony/Component.html#inspect-instance_method" title="Compony::Component#inspect (method)">#inspect</a></span>
|
685
802
|
<small>Compony::Component</small>
|
@@ -687,7 +804,7 @@
|
|
687
804
|
</li>
|
688
805
|
|
689
806
|
|
690
|
-
<li class="
|
807
|
+
<li class="even ">
|
691
808
|
<div class="item">
|
692
809
|
<span class='object_link'><a href="Compony/ModelFields/Base.html#label-instance_method" title="Compony::ModelFields::Base#label (method)">#label</a></span>
|
693
810
|
<small>Compony::ModelFields::Base</small>
|
@@ -695,7 +812,7 @@
|
|
695
812
|
</li>
|
696
813
|
|
697
814
|
|
698
|
-
<li class="
|
815
|
+
<li class="odd ">
|
699
816
|
<div class="item">
|
700
817
|
<span class='object_link'><a href="Compony/ComponentMixins/Default/Labelling.html#label-instance_method" title="Compony::ComponentMixins::Default::Labelling#label (method)">#label</a></span>
|
701
818
|
<small>Compony::ComponentMixins::Default::Labelling</small>
|
@@ -703,7 +820,7 @@
|
|
703
820
|
</li>
|
704
821
|
|
705
822
|
|
706
|
-
<li class="
|
823
|
+
<li class="even ">
|
707
824
|
<div class="item">
|
708
825
|
<span class='object_link'><a href="Compony/ComponentMixins/Default/Standalone/StandaloneDsl.html#layout-instance_method" title="Compony::ComponentMixins::Default::Standalone::StandaloneDsl#layout (method)">#layout</a></span>
|
709
826
|
<small>Compony::ComponentMixins::Default::Standalone::StandaloneDsl</small>
|
@@ -711,7 +828,7 @@
|
|
711
828
|
</li>
|
712
829
|
|
713
830
|
|
714
|
-
<li class="
|
831
|
+
<li class="odd ">
|
715
832
|
<div class="item">
|
716
833
|
<span class='object_link'><a href="Compony/ComponentMixins/Resourceful.html#load_data-instance_method" title="Compony::ComponentMixins::Resourceful#load_data (method)">#load_data</a></span>
|
717
834
|
<small>Compony::ComponentMixins::Resourceful</small>
|
@@ -719,7 +836,7 @@
|
|
719
836
|
</li>
|
720
837
|
|
721
838
|
|
722
|
-
<li class="
|
839
|
+
<li class="even ">
|
723
840
|
<div class="item">
|
724
841
|
<span class='object_link'><a href="Compony/ComponentMixins/Default/Standalone/ResourcefulVerbDsl.html#load_data-instance_method" title="Compony::ComponentMixins::Default::Standalone::ResourcefulVerbDsl#load_data (method)">#load_data</a></span>
|
725
842
|
<small>Compony::ComponentMixins::Default::Standalone::ResourcefulVerbDsl</small>
|
@@ -727,7 +844,7 @@
|
|
727
844
|
</li>
|
728
845
|
|
729
846
|
|
730
|
-
<li class="
|
847
|
+
<li class="odd ">
|
731
848
|
<div class="item">
|
732
849
|
<span class='object_link'><a href="Compony/RequestContext.html#local_assigns-instance_method" title="Compony::RequestContext#local_assigns (method)">#local_assigns</a></span>
|
733
850
|
<small>Compony::RequestContext</small>
|
@@ -735,7 +852,7 @@
|
|
735
852
|
</li>
|
736
853
|
|
737
854
|
|
738
|
-
<li class="
|
855
|
+
<li class="even ">
|
739
856
|
<div class="item">
|
740
857
|
<span class='object_link'><a href="Compony/MethodAccessibleHash.html#merge-instance_method" title="Compony::MethodAccessibleHash#merge (method)">#merge</a></span>
|
741
858
|
<small>Compony::MethodAccessibleHash</small>
|
@@ -743,7 +860,7 @@
|
|
743
860
|
</li>
|
744
861
|
|
745
862
|
|
746
|
-
<li class="
|
863
|
+
<li class="odd ">
|
747
864
|
<div class="item">
|
748
865
|
<span class='object_link'><a href="Compony/RequestContext.html#method_missing-instance_method" title="Compony::RequestContext#method_missing (method)">#method_missing</a></span>
|
749
866
|
<small>Compony::RequestContext</small>
|
@@ -751,7 +868,7 @@
|
|
751
868
|
</li>
|
752
869
|
|
753
870
|
|
754
|
-
<li class="
|
871
|
+
<li class="even ">
|
755
872
|
<div class="item">
|
756
873
|
<span class='object_link'><a href="Compony/MethodAccessibleHash.html#method_missing-instance_method" title="Compony::MethodAccessibleHash#method_missing (method)">#method_missing</a></span>
|
757
874
|
<small>Compony::MethodAccessibleHash</small>
|
@@ -759,7 +876,7 @@
|
|
759
876
|
</li>
|
760
877
|
|
761
878
|
|
762
|
-
<li class="
|
879
|
+
<li class="odd ">
|
763
880
|
<div class="item">
|
764
881
|
<span class='object_link'><a href="Compony/ModelFields/Base.html#model_class-instance_method" title="Compony::ModelFields::Base#model_class (method)">#model_class</a></span>
|
765
882
|
<small>Compony::ModelFields::Base</small>
|
@@ -767,7 +884,7 @@
|
|
767
884
|
</li>
|
768
885
|
|
769
886
|
|
770
|
-
<li class="
|
887
|
+
<li class="even ">
|
771
888
|
<div class="item">
|
772
889
|
<span class='object_link'><a href="Compony.html#model_field_class_for-class_method" title="Compony.model_field_class_for (method)">model_field_class_for</a></span>
|
773
890
|
<small>Compony</small>
|
@@ -775,7 +892,7 @@
|
|
775
892
|
</li>
|
776
893
|
|
777
894
|
|
778
|
-
<li class="
|
895
|
+
<li class="odd ">
|
779
896
|
<div class="item">
|
780
897
|
<span class='object_link'><a href="Compony.html#model_field_namespaces-class_method" title="Compony.model_field_namespaces (method)">model_field_namespaces</a></span>
|
781
898
|
<small>Compony</small>
|
@@ -783,7 +900,7 @@
|
|
783
900
|
</li>
|
784
901
|
|
785
902
|
|
786
|
-
<li class="
|
903
|
+
<li class="even ">
|
787
904
|
<div class="item">
|
788
905
|
<span class='object_link'><a href="Compony.html#model_field_namespaces=-class_method" title="Compony.model_field_namespaces= (method)">model_field_namespaces=</a></span>
|
789
906
|
<small>Compony</small>
|
@@ -791,7 +908,7 @@
|
|
791
908
|
</li>
|
792
909
|
|
793
910
|
|
794
|
-
<li class="
|
911
|
+
<li class="odd ">
|
795
912
|
<div class="item">
|
796
913
|
<span class='object_link'><a href="Compony/ModelFields/Base.html#multi%3F-instance_method" title="Compony::ModelFields::Base#multi? (method)">#multi?</a></span>
|
797
914
|
<small>Compony::ModelFields::Base</small>
|
@@ -799,7 +916,7 @@
|
|
799
916
|
</li>
|
800
917
|
|
801
918
|
|
802
|
-
<li class="
|
919
|
+
<li class="even ">
|
803
920
|
<div class="item">
|
804
921
|
<span class='object_link'><a href="Compony/ModelFields/Base.html#name-instance_method" title="Compony::ModelFields::Base#name (method)">#name</a></span>
|
805
922
|
<small>Compony::ModelFields::Base</small>
|
@@ -807,7 +924,7 @@
|
|
807
924
|
</li>
|
808
925
|
|
809
926
|
|
810
|
-
<li class="
|
927
|
+
<li class="odd ">
|
811
928
|
<div class="item">
|
812
929
|
<span class='object_link'><a href="Compony/NaturalOrdering.html#natural_push-instance_method" title="Compony::NaturalOrdering#natural_push (method)">#natural_push</a></span>
|
813
930
|
<small>Compony::NaturalOrdering</small>
|
@@ -815,7 +932,7 @@
|
|
815
932
|
</li>
|
816
933
|
|
817
934
|
|
818
|
-
<li class="
|
935
|
+
<li class="even ">
|
819
936
|
<div class="item">
|
820
937
|
<span class='object_link'><a href="Compony/Components/New.html#on_create_failed_respond-instance_method" title="Compony::Components::New#on_create_failed_respond (method)">#on_create_failed_respond</a></span>
|
821
938
|
<small>Compony::Components::New</small>
|
@@ -823,7 +940,7 @@
|
|
823
940
|
</li>
|
824
941
|
|
825
942
|
|
826
|
-
<li class="
|
943
|
+
<li class="odd ">
|
827
944
|
<div class="item">
|
828
945
|
<span class='object_link'><a href="Compony/Components/New.html#on_created-instance_method" title="Compony::Components::New#on_created (method)">#on_created</a></span>
|
829
946
|
<small>Compony::Components::New</small>
|
@@ -831,7 +948,7 @@
|
|
831
948
|
</li>
|
832
949
|
|
833
950
|
|
834
|
-
<li class="
|
951
|
+
<li class="even ">
|
835
952
|
<div class="item">
|
836
953
|
<span class='object_link'><a href="Compony/Components/New.html#on_created_redirect_path-instance_method" title="Compony::Components::New#on_created_redirect_path (method)">#on_created_redirect_path</a></span>
|
837
954
|
<small>Compony::Components::New</small>
|
@@ -839,7 +956,7 @@
|
|
839
956
|
</li>
|
840
957
|
|
841
958
|
|
842
|
-
<li class="
|
959
|
+
<li class="odd ">
|
843
960
|
<div class="item">
|
844
961
|
<span class='object_link'><a href="Compony/Components/New.html#on_created_respond-instance_method" title="Compony::Components::New#on_created_respond (method)">#on_created_respond</a></span>
|
845
962
|
<small>Compony::Components::New</small>
|
@@ -847,7 +964,7 @@
|
|
847
964
|
</li>
|
848
965
|
|
849
966
|
|
850
|
-
<li class="
|
967
|
+
<li class="even ">
|
851
968
|
<div class="item">
|
852
969
|
<span class='object_link'><a href="Compony/Components/Destroy.html#on_destroyed-instance_method" title="Compony::Components::Destroy#on_destroyed (method)">#on_destroyed</a></span>
|
853
970
|
<small>Compony::Components::Destroy</small>
|
@@ -855,7 +972,7 @@
|
|
855
972
|
</li>
|
856
973
|
|
857
974
|
|
858
|
-
<li class="
|
975
|
+
<li class="odd ">
|
859
976
|
<div class="item">
|
860
977
|
<span class='object_link'><a href="Compony/Components/Destroy.html#on_destroyed_redirect_path-instance_method" title="Compony::Components::Destroy#on_destroyed_redirect_path (method)">#on_destroyed_redirect_path</a></span>
|
861
978
|
<small>Compony::Components::Destroy</small>
|
@@ -863,7 +980,7 @@
|
|
863
980
|
</li>
|
864
981
|
|
865
982
|
|
866
|
-
<li class="
|
983
|
+
<li class="even ">
|
867
984
|
<div class="item">
|
868
985
|
<span class='object_link'><a href="Compony/Components/Destroy.html#on_destroyed_respond-instance_method" title="Compony::Components::Destroy#on_destroyed_respond (method)">#on_destroyed_respond</a></span>
|
869
986
|
<small>Compony::Components::Destroy</small>
|
@@ -871,7 +988,7 @@
|
|
871
988
|
</li>
|
872
989
|
|
873
990
|
|
874
|
-
<li class="
|
991
|
+
<li class="odd ">
|
875
992
|
<div class="item">
|
876
993
|
<span class='object_link'><a href="Compony/ComponentMixins/Default/Standalone.html#on_standalone_access-instance_method" title="Compony::ComponentMixins::Default::Standalone#on_standalone_access (method)">#on_standalone_access</a></span>
|
877
994
|
<small>Compony::ComponentMixins::Default::Standalone</small>
|
@@ -879,7 +996,7 @@
|
|
879
996
|
</li>
|
880
997
|
|
881
998
|
|
882
|
-
<li class="
|
999
|
+
<li class="even ">
|
883
1000
|
<div class="item">
|
884
1001
|
<span class='object_link'><a href="Compony/Components/Edit.html#on_update_failed-instance_method" title="Compony::Components::Edit#on_update_failed (method)">#on_update_failed</a></span>
|
885
1002
|
<small>Compony::Components::Edit</small>
|
@@ -887,7 +1004,7 @@
|
|
887
1004
|
</li>
|
888
1005
|
|
889
1006
|
|
890
|
-
<li class="
|
1007
|
+
<li class="odd ">
|
891
1008
|
<div class="item">
|
892
1009
|
<span class='object_link'><a href="Compony/Components/Edit.html#on_updated-instance_method" title="Compony::Components::Edit#on_updated (method)">#on_updated</a></span>
|
893
1010
|
<small>Compony::Components::Edit</small>
|
@@ -895,7 +1012,7 @@
|
|
895
1012
|
</li>
|
896
1013
|
|
897
1014
|
|
898
|
-
<li class="
|
1015
|
+
<li class="even ">
|
899
1016
|
<div class="item">
|
900
1017
|
<span class='object_link'><a href="Compony/Components/Edit.html#on_updated_redirect_path-instance_method" title="Compony::Components::Edit#on_updated_redirect_path (method)">#on_updated_redirect_path</a></span>
|
901
1018
|
<small>Compony::Components::Edit</small>
|
@@ -903,7 +1020,7 @@
|
|
903
1020
|
</li>
|
904
1021
|
|
905
1022
|
|
906
|
-
<li class="
|
1023
|
+
<li class="odd ">
|
907
1024
|
<div class="item">
|
908
1025
|
<span class='object_link'><a href="Compony/Components/Edit.html#on_updated_respond-instance_method" title="Compony::Components::Edit#on_updated_respond (method)">#on_updated_respond</a></span>
|
909
1026
|
<small>Compony::Components::Edit</small>
|
@@ -911,6 +1028,14 @@
|
|
911
1028
|
</li>
|
912
1029
|
|
913
1030
|
|
1031
|
+
<li class="even ">
|
1032
|
+
<div class="item">
|
1033
|
+
<span class='object_link'><a href="Compony/Components/List.html#pagination_enabled%3F-instance_method" title="Compony::Components::List#pagination_enabled? (method)">#pagination_enabled?</a></span>
|
1034
|
+
<small>Compony::Components::List</small>
|
1035
|
+
</div>
|
1036
|
+
</li>
|
1037
|
+
|
1038
|
+
|
914
1039
|
<li class="odd ">
|
915
1040
|
<div class="item">
|
916
1041
|
<span class='object_link'><a href="Compony/Component.html#param_name-instance_method" title="Compony::Component#param_name (method)">#param_name</a></span>
|
@@ -960,6 +1085,14 @@
|
|
960
1085
|
|
961
1086
|
|
962
1087
|
<li class="odd ">
|
1088
|
+
<div class="item">
|
1089
|
+
<span class='object_link'><a href="Compony/Components/List.html#process_data!-instance_method" title="Compony::Components::List#process_data! (method)">#process_data!</a></span>
|
1090
|
+
<small>Compony::Components::List</small>
|
1091
|
+
</div>
|
1092
|
+
</li>
|
1093
|
+
|
1094
|
+
|
1095
|
+
<li class="even ">
|
963
1096
|
<div class="item">
|
964
1097
|
<span class='object_link'><a href="Compony/Components/Form.html#pw_field-instance_method" title="Compony::Components::Form#pw_field (method)">#pw_field</a></span>
|
965
1098
|
<small>Compony::Components::Form</small>
|
@@ -967,7 +1100,7 @@
|
|
967
1100
|
</li>
|
968
1101
|
|
969
1102
|
|
970
|
-
<li class="
|
1103
|
+
<li class="odd ">
|
971
1104
|
<div class="item">
|
972
1105
|
<span class='object_link'><a href="Compony.html#rails_action_name-class_method" title="Compony.rails_action_name (method)">rails_action_name</a></span>
|
973
1106
|
<small>Compony</small>
|
@@ -975,6 +1108,62 @@
|
|
975
1108
|
</li>
|
976
1109
|
|
977
1110
|
|
1111
|
+
<li class="even ">
|
1112
|
+
<div class="item">
|
1113
|
+
<span class='object_link'><a href="Compony/ModelFields/Base.html#ransack_filter_input-instance_method" title="Compony::ModelFields::Base#ransack_filter_input (method)">#ransack_filter_input</a></span>
|
1114
|
+
<small>Compony::ModelFields::Base</small>
|
1115
|
+
</div>
|
1116
|
+
</li>
|
1117
|
+
|
1118
|
+
|
1119
|
+
<li class="odd ">
|
1120
|
+
<div class="item">
|
1121
|
+
<span class='object_link'><a href="Compony/ModelFields/Boolean.html#ransack_filter_input-instance_method" title="Compony::ModelFields::Boolean#ransack_filter_input (method)">#ransack_filter_input</a></span>
|
1122
|
+
<small>Compony::ModelFields::Boolean</small>
|
1123
|
+
</div>
|
1124
|
+
</li>
|
1125
|
+
|
1126
|
+
|
1127
|
+
<li class="even ">
|
1128
|
+
<div class="item">
|
1129
|
+
<span class='object_link'><a href="Compony/ModelFields/Anchormodel.html#ransack_filter_input-instance_method" title="Compony::ModelFields::Anchormodel#ransack_filter_input (method)">#ransack_filter_input</a></span>
|
1130
|
+
<small>Compony::ModelFields::Anchormodel</small>
|
1131
|
+
</div>
|
1132
|
+
</li>
|
1133
|
+
|
1134
|
+
|
1135
|
+
<li class="odd ">
|
1136
|
+
<div class="item">
|
1137
|
+
<span class='object_link'><a href="Compony/ModelFields/Base.html#ransack_filter_name-instance_method" title="Compony::ModelFields::Base#ransack_filter_name (method)">#ransack_filter_name</a></span>
|
1138
|
+
<small>Compony::ModelFields::Base</small>
|
1139
|
+
</div>
|
1140
|
+
</li>
|
1141
|
+
|
1142
|
+
|
1143
|
+
<li class="even ">
|
1144
|
+
<div class="item">
|
1145
|
+
<span class='object_link'><a href="Compony/ModelFields/Boolean.html#ransack_filter_name-instance_method" title="Compony::ModelFields::Boolean#ransack_filter_name (method)">#ransack_filter_name</a></span>
|
1146
|
+
<small>Compony::ModelFields::Boolean</small>
|
1147
|
+
</div>
|
1148
|
+
</li>
|
1149
|
+
|
1150
|
+
|
1151
|
+
<li class="odd ">
|
1152
|
+
<div class="item">
|
1153
|
+
<span class='object_link'><a href="Compony/ModelFields/Integer.html#ransack_filter_name-instance_method" title="Compony::ModelFields::Integer#ransack_filter_name (method)">#ransack_filter_name</a></span>
|
1154
|
+
<small>Compony::ModelFields::Integer</small>
|
1155
|
+
</div>
|
1156
|
+
</li>
|
1157
|
+
|
1158
|
+
|
1159
|
+
<li class="even ">
|
1160
|
+
<div class="item">
|
1161
|
+
<span class='object_link'><a href="Compony/ModelFields/Anchormodel.html#ransack_filter_name-instance_method" title="Compony::ModelFields::Anchormodel#ransack_filter_name (method)">#ransack_filter_name</a></span>
|
1162
|
+
<small>Compony::ModelFields::Anchormodel</small>
|
1163
|
+
</div>
|
1164
|
+
</li>
|
1165
|
+
|
1166
|
+
|
978
1167
|
<li class="odd ">
|
979
1168
|
<div class="item">
|
980
1169
|
<span class='object_link'><a href="Compony/Component.html#remove_content-instance_method" title="Compony::Component#remove_content (method)">#remove_content</a></span>
|
@@ -1080,6 +1269,14 @@
|
|
1080
1269
|
|
1081
1270
|
|
1082
1271
|
<li class="even ">
|
1272
|
+
<div class="item">
|
1273
|
+
<span class='object_link'><a href="Compony/Components/List.html#results_per_page-instance_method" title="Compony::Components::List#results_per_page (method)">#results_per_page</a></span>
|
1274
|
+
<small>Compony::Components::List</small>
|
1275
|
+
</div>
|
1276
|
+
</li>
|
1277
|
+
|
1278
|
+
|
1279
|
+
<li class="odd ">
|
1083
1280
|
<div class="item">
|
1084
1281
|
<span class='object_link'><a href="Compony.html#root_comp-class_method" title="Compony.root_comp (method)">root_comp</a></span>
|
1085
1282
|
<small>Compony</small>
|
@@ -1087,7 +1284,7 @@
|
|
1087
1284
|
</li>
|
1088
1285
|
|
1089
1286
|
|
1090
|
-
<li class="
|
1287
|
+
<li class="even ">
|
1091
1288
|
<div class="item">
|
1092
1289
|
<span class='object_link'><a href="Compony/Component.html#root_comp-instance_method" title="Compony::Component#root_comp (method)">#root_comp</a></span>
|
1093
1290
|
<small>Compony::Component</small>
|
@@ -1095,7 +1292,7 @@
|
|
1095
1292
|
</li>
|
1096
1293
|
|
1097
1294
|
|
1098
|
-
<li class="
|
1295
|
+
<li class="odd ">
|
1099
1296
|
<div class="item">
|
1100
1297
|
<span class='object_link'><a href="Compony/Component.html#root_comp%3F-instance_method" title="Compony::Component#root_comp? (method)">#root_comp?</a></span>
|
1101
1298
|
<small>Compony::Component</small>
|
@@ -1103,6 +1300,14 @@
|
|
1103
1300
|
</li>
|
1104
1301
|
|
1105
1302
|
|
1303
|
+
<li class="even ">
|
1304
|
+
<div class="item">
|
1305
|
+
<span class='object_link'><a href="Compony/Components/List.html#row_action-instance_method" title="Compony::Components::List#row_action (method)">#row_action</a></span>
|
1306
|
+
<small>Compony::Components::List</small>
|
1307
|
+
</div>
|
1308
|
+
</li>
|
1309
|
+
|
1310
|
+
|
1106
1311
|
<li class="odd ">
|
1107
1312
|
<div class="item">
|
1108
1313
|
<span class='object_link'><a href="Compony/Components/Form.html#schema-instance_method" title="Compony::Components::Form#schema (method)">#schema</a></span>
|
@@ -1280,6 +1485,30 @@
|
|
1280
1485
|
|
1281
1486
|
|
1282
1487
|
<li class="odd ">
|
1488
|
+
<div class="item">
|
1489
|
+
<span class='object_link'><a href="Compony/Components/List.html#skip_column-instance_method" title="Compony::Components::List#skip_column (method)">#skip_column</a></span>
|
1490
|
+
<small>Compony::Components::List</small>
|
1491
|
+
</div>
|
1492
|
+
</li>
|
1493
|
+
|
1494
|
+
|
1495
|
+
<li class="even ">
|
1496
|
+
<div class="item">
|
1497
|
+
<span class='object_link'><a href="Compony/Components/Show.html#skip_column-instance_method" title="Compony::Components::Show#skip_column (method)">#skip_column</a></span>
|
1498
|
+
<small>Compony::Components::Show</small>
|
1499
|
+
</div>
|
1500
|
+
</li>
|
1501
|
+
|
1502
|
+
|
1503
|
+
<li class="odd ">
|
1504
|
+
<div class="item">
|
1505
|
+
<span class='object_link'><a href="Compony/Components/List.html#skip_filtering!-instance_method" title="Compony::Components::List#skip_filtering! (method)">#skip_filtering!</a></span>
|
1506
|
+
<small>Compony::Components::List</small>
|
1507
|
+
</div>
|
1508
|
+
</li>
|
1509
|
+
|
1510
|
+
|
1511
|
+
<li class="even ">
|
1283
1512
|
<div class="item">
|
1284
1513
|
<span class='object_link'><a href="Compony/ComponentMixins/Default/Standalone/StandaloneDsl.html#skip_forgery_protection!-instance_method" title="Compony::ComponentMixins::Default::Standalone::StandaloneDsl#skip_forgery_protection! (method)">#skip_forgery_protection!</a></span>
|
1285
1514
|
<small>Compony::ComponentMixins::Default::Standalone::StandaloneDsl</small>
|
@@ -1287,6 +1516,94 @@
|
|
1287
1516
|
</li>
|
1288
1517
|
|
1289
1518
|
|
1519
|
+
<li class="odd ">
|
1520
|
+
<div class="item">
|
1521
|
+
<span class='object_link'><a href="Compony/Components/List.html#skip_pagination!-instance_method" title="Compony::Components::List#skip_pagination! (method)">#skip_pagination!</a></span>
|
1522
|
+
<small>Compony::Components::List</small>
|
1523
|
+
</div>
|
1524
|
+
</li>
|
1525
|
+
|
1526
|
+
|
1527
|
+
<li class="even ">
|
1528
|
+
<div class="item">
|
1529
|
+
<span class='object_link'><a href="Compony/Components/List.html#skip_row_action-instance_method" title="Compony::Components::List#skip_row_action (method)">#skip_row_action</a></span>
|
1530
|
+
<small>Compony::Components::List</small>
|
1531
|
+
</div>
|
1532
|
+
</li>
|
1533
|
+
|
1534
|
+
|
1535
|
+
<li class="odd ">
|
1536
|
+
<div class="item">
|
1537
|
+
<span class='object_link'><a href="Compony/Components/List.html#skip_sorting!-instance_method" title="Compony::Components::List#skip_sorting! (method)">#skip_sorting!</a></span>
|
1538
|
+
<small>Compony::Components::List</small>
|
1539
|
+
</div>
|
1540
|
+
</li>
|
1541
|
+
|
1542
|
+
|
1543
|
+
<li class="even ">
|
1544
|
+
<div class="item">
|
1545
|
+
<span class='object_link'><a href="Compony/Components/List.html#skip_sorting_in_filter!-instance_method" title="Compony::Components::List#skip_sorting_in_filter! (method)">#skip_sorting_in_filter!</a></span>
|
1546
|
+
<small>Compony::Components::List</small>
|
1547
|
+
</div>
|
1548
|
+
</li>
|
1549
|
+
|
1550
|
+
|
1551
|
+
<li class="odd ">
|
1552
|
+
<div class="item">
|
1553
|
+
<span class='object_link'><a href="Compony/Components/List.html#skip_sorting_links!-instance_method" title="Compony::Components::List#skip_sorting_links! (method)">#skip_sorting_links!</a></span>
|
1554
|
+
<small>Compony::Components::List</small>
|
1555
|
+
</div>
|
1556
|
+
</li>
|
1557
|
+
|
1558
|
+
|
1559
|
+
<li class="even ">
|
1560
|
+
<div class="item">
|
1561
|
+
<span class='object_link'><a href="Compony/Components/List.html#sort-instance_method" title="Compony::Components::List#sort (method)">#sort</a></span>
|
1562
|
+
<small>Compony::Components::List</small>
|
1563
|
+
</div>
|
1564
|
+
</li>
|
1565
|
+
|
1566
|
+
|
1567
|
+
<li class="odd ">
|
1568
|
+
<div class="item">
|
1569
|
+
<span class='object_link'><a href="Compony/Components/List.html#sorting_enabled%3F-instance_method" title="Compony::Components::List#sorting_enabled? (method)">#sorting_enabled?</a></span>
|
1570
|
+
<small>Compony::Components::List</small>
|
1571
|
+
</div>
|
1572
|
+
</li>
|
1573
|
+
|
1574
|
+
|
1575
|
+
<li class="even ">
|
1576
|
+
<div class="item">
|
1577
|
+
<span class='object_link'><a href="Compony/Components/List.html#sorting_in_filter_enabled%3F-instance_method" title="Compony::Components::List#sorting_in_filter_enabled? (method)">#sorting_in_filter_enabled?</a></span>
|
1578
|
+
<small>Compony::Components::List</small>
|
1579
|
+
</div>
|
1580
|
+
</li>
|
1581
|
+
|
1582
|
+
|
1583
|
+
<li class="odd ">
|
1584
|
+
<div class="item">
|
1585
|
+
<span class='object_link'><a href="Compony/Components/List.html#sorting_in_filter_select_opts-instance_method" title="Compony::Components::List#sorting_in_filter_select_opts (method)">#sorting_in_filter_select_opts</a></span>
|
1586
|
+
<small>Compony::Components::List</small>
|
1587
|
+
</div>
|
1588
|
+
</li>
|
1589
|
+
|
1590
|
+
|
1591
|
+
<li class="even ">
|
1592
|
+
<div class="item">
|
1593
|
+
<span class='object_link'><a href="Compony/Components/List.html#sorting_links_enabled%3F-instance_method" title="Compony::Components::List#sorting_links_enabled? (method)">#sorting_links_enabled?</a></span>
|
1594
|
+
<small>Compony::Components::List</small>
|
1595
|
+
</div>
|
1596
|
+
</li>
|
1597
|
+
|
1598
|
+
|
1599
|
+
<li class="odd ">
|
1600
|
+
<div class="item">
|
1601
|
+
<span class='object_link'><a href="Compony/Components/List.html#sorts-instance_method" title="Compony::Components::List#sorts (method)">#sorts</a></span>
|
1602
|
+
<small>Compony::Components::List</small>
|
1603
|
+
</div>
|
1604
|
+
</li>
|
1605
|
+
|
1606
|
+
|
1290
1607
|
<li class="even ">
|
1291
1608
|
<div class="item">
|
1292
1609
|
<span class='object_link'><a href="Compony/ComponentMixins/Default/Standalone.html#standalone-instance_method" title="Compony::ComponentMixins::Default::Standalone#standalone (method)">#standalone</a></span>
|