compony 0.5.9 → 0.6.0

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.
Files changed (88) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +5 -0
  3. data/Gemfile.lock +1 -1
  4. data/README.md +21 -0
  5. data/VERSION +1 -1
  6. data/compony.gemspec +3 -3
  7. data/config/locales/de.yml +13 -0
  8. data/config/locales/en.yml +13 -0
  9. data/config/locales/fr.yml +14 -1
  10. data/doc/ComponentGenerator.html +16 -4
  11. data/doc/Components.html +3 -3
  12. data/doc/ComponentsGenerator.html +3 -3
  13. data/doc/Compony/Component.html +4 -4
  14. data/doc/Compony/ComponentMixins/Default/Labelling.html +3 -3
  15. data/doc/Compony/ComponentMixins/Default/Standalone/ResourcefulVerbDsl.html +3 -3
  16. data/doc/Compony/ComponentMixins/Default/Standalone/StandaloneDsl.html +3 -3
  17. data/doc/Compony/ComponentMixins/Default/Standalone/VerbDsl.html +3 -3
  18. data/doc/Compony/ComponentMixins/Default/Standalone.html +3 -3
  19. data/doc/Compony/ComponentMixins/Default.html +3 -3
  20. data/doc/Compony/ComponentMixins/Resourceful.html +4 -4
  21. data/doc/Compony/ComponentMixins.html +3 -3
  22. data/doc/Compony/Components/Button.html +3 -3
  23. data/doc/Compony/Components/Destroy.html +3 -3
  24. data/doc/Compony/Components/Edit.html +3 -3
  25. data/doc/Compony/Components/Form.html +3 -3
  26. data/doc/Compony/Components/Index.html +172 -0
  27. data/doc/Compony/Components/List.html +2731 -0
  28. data/doc/Compony/Components/New.html +3 -3
  29. data/doc/Compony/Components/Show.html +740 -0
  30. data/doc/Compony/Components/WithForm.html +3 -3
  31. data/doc/Compony/Components.html +5 -5
  32. data/doc/Compony/ControllerMixin.html +3 -3
  33. data/doc/Compony/Engine.html +3 -3
  34. data/doc/Compony/MethodAccessibleHash.html +3 -3
  35. data/doc/Compony/ModelFields/Anchormodel.html +136 -4
  36. data/doc/Compony/ModelFields/Association.html +4 -4
  37. data/doc/Compony/ModelFields/Attachment.html +4 -4
  38. data/doc/Compony/ModelFields/Base.html +143 -13
  39. data/doc/Compony/ModelFields/Boolean.html +136 -4
  40. data/doc/Compony/ModelFields/Color.html +4 -4
  41. data/doc/Compony/ModelFields/Currency.html +4 -4
  42. data/doc/Compony/ModelFields/Date.html +4 -4
  43. data/doc/Compony/ModelFields/Datetime.html +4 -4
  44. data/doc/Compony/ModelFields/Decimal.html +4 -4
  45. data/doc/Compony/ModelFields/Email.html +4 -4
  46. data/doc/Compony/ModelFields/Float.html +4 -4
  47. data/doc/Compony/ModelFields/Integer.html +83 -5
  48. data/doc/Compony/ModelFields/Percentage.html +4 -4
  49. data/doc/Compony/ModelFields/Phone.html +4 -4
  50. data/doc/Compony/ModelFields/RichText.html +4 -4
  51. data/doc/Compony/ModelFields/String.html +4 -4
  52. data/doc/Compony/ModelFields/Text.html +4 -4
  53. data/doc/Compony/ModelFields/Time.html +4 -4
  54. data/doc/Compony/ModelFields/Url.html +4 -4
  55. data/doc/Compony/ModelFields.html +3 -3
  56. data/doc/Compony/ModelMixin.html +26 -26
  57. data/doc/Compony/NaturalOrdering.html +3 -3
  58. data/doc/Compony/RequestContext.html +3 -3
  59. data/doc/Compony/Version.html +3 -3
  60. data/doc/Compony/ViewHelpers.html +3 -3
  61. data/doc/Compony.html +4 -4
  62. data/doc/ComponyController.html +3 -3
  63. data/doc/_index.html +25 -4
  64. data/doc/class_list.html +3 -6
  65. data/doc/css/full_list.css +3 -3
  66. data/doc/css/style.css +0 -6
  67. data/doc/file.README.html +37 -10
  68. data/doc/file_list.html +2 -5
  69. data/doc/frames.html +5 -10
  70. data/doc/index.html +37 -10
  71. data/doc/js/app.js +264 -294
  72. data/doc/js/full_list.js +4 -30
  73. data/doc/method_list.html +423 -114
  74. data/doc/top-level-namespace.html +3 -3
  75. data/lib/compony/components/index.rb +33 -0
  76. data/lib/compony/components/list.rb +418 -0
  77. data/lib/compony/components/show.rb +116 -0
  78. data/lib/compony/model_fields/anchormodel.rb +13 -0
  79. data/lib/compony/model_fields/base.rb +12 -0
  80. data/lib/compony/model_fields/boolean.rb +13 -0
  81. data/lib/compony/model_fields/integer.rb +3 -0
  82. data/lib/compony/model_mixin.rb +5 -0
  83. data/lib/compony.rb +3 -0
  84. data/lib/generators/component/component_generator.rb +6 -0
  85. data/lib/generators/component/templates/index.rb.erb +2 -0
  86. data/lib/generators/component/templates/list.rb.erb +7 -0
  87. data/lib/generators/component/templates/show.rb.erb +2 -0
  88. 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="odd ">
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="even ">
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="odd ">
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="even ">
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="odd ">
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="even ">
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="odd ">
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="even ">
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="odd ">
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="even ">
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="odd ">
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="even ">
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="odd ">
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="even ">
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="even ">
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="odd ">
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="even ">
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="odd ">
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="even ">
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="odd ">
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="even ">
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="odd ">
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="even ">
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="odd ">
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="even ">
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="odd ">
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="even ">
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="odd ">
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="even ">
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="odd ">
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="even ">
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="odd ">
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="even ">
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="odd ">
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,7 +412,7 @@
375
412
  </li>
376
413
 
377
414
 
378
- <li class="even ">
415
+ <li class="odd ">
379
416
  <div class="item">
380
417
  <span class='object_link'><a href="Compony/Components/Form.html#disable!-instance_method" title="Compony::Components::Form#disable! (method)">#disable!</a></span>
381
418
  <small>Compony::Components::Form</small>
@@ -383,7 +420,7 @@
383
420
  </li>
384
421
 
385
422
 
386
- <li class="odd ">
423
+ <li class="even ">
387
424
  <div class="item">
388
425
  <span class='object_link'><a href="Compony/RequestContext.html#evaluate_with_backfire-instance_method" title="Compony::RequestContext#evaluate_with_backfire (method)">#evaluate_with_backfire</a></span>
389
426
  <small>Compony::RequestContext</small>
@@ -391,7 +428,7 @@
391
428
  </li>
392
429
 
393
430
 
394
- <li class="even ">
431
+ <li class="odd ">
395
432
  <div class="item">
396
433
  <span class='object_link'><a href="Compony/ModelFields/Base.html#extra_attrs-instance_method" title="Compony::ModelFields::Base#extra_attrs (method)">#extra_attrs</a></span>
397
434
  <small>Compony::ModelFields::Base</small>
@@ -399,7 +436,7 @@
399
436
  </li>
400
437
 
401
438
 
402
- <li class="odd ">
439
+ <li class="even ">
403
440
  <div class="item">
404
441
  <span class='object_link'><a href="Compony/Components/Form.html#f-instance_method" title="Compony::Components::Form#f (method)">#f</a></span>
405
442
  <small>Compony::Components::Form</small>
@@ -407,7 +444,7 @@
407
444
  </li>
408
445
 
409
446
 
410
- <li class="even ">
447
+ <li class="odd ">
411
448
  <div class="item">
412
449
  <span class='object_link'><a href="Compony/Component.html#family_cst-class_method" title="Compony::Component.family_cst (method)">family_cst</a></span>
413
450
  <small>Compony::Component</small>
@@ -415,7 +452,7 @@
415
452
  </li>
416
453
 
417
454
 
418
- <li class="odd ">
455
+ <li class="even ">
419
456
  <div class="item">
420
457
  <span class='object_link'><a href="Compony/Component.html#family_name-class_method" title="Compony::Component.family_name (method)">family_name</a></span>
421
458
  <small>Compony::Component</small>
@@ -423,7 +460,7 @@
423
460
  </li>
424
461
 
425
462
 
426
- <li class="even ">
463
+ <li class="odd ">
427
464
  <div class="item">
428
465
  <span class='object_link'><a href="Compony.html#family_name_for-class_method" title="Compony.family_name_for (method)">family_name_for</a></span>
429
466
  <small>Compony</small>
@@ -431,7 +468,7 @@
431
468
  </li>
432
469
 
433
470
 
434
- <li class="odd ">
471
+ <li class="even ">
435
472
  <div class="item">
436
473
  <span class='object_link'><a href="Compony/ModelMixin.html#feasibility_messages-instance_method" title="Compony::ModelMixin#feasibility_messages (method)">#feasibility_messages</a></span>
437
474
  <small>Compony::ModelMixin</small>
@@ -439,7 +476,7 @@
439
476
  </li>
440
477
 
441
478
 
442
- <li class="even ">
479
+ <li class="odd ">
443
480
  <div class="item">
444
481
  <span class='object_link'><a href="Compony/ModelMixin.html#feasible%3F-instance_method" title="Compony::ModelMixin#feasible? (method)">#feasible?</a></span>
445
482
  <small>Compony::ModelMixin</small>
@@ -447,7 +484,7 @@
447
484
  </li>
448
485
 
449
486
 
450
- <li class="odd ">
487
+ <li class="even ">
451
488
  <div class="item">
452
489
  <span class='object_link'><a href="Compony/ModelMixin.html#field-instance_method" title="Compony::ModelMixin#field (method)">#field</a></span>
453
490
  <small>Compony::ModelMixin</small>
@@ -455,7 +492,7 @@
455
492
  </li>
456
493
 
457
494
 
458
- <li class="even ">
495
+ <li class="odd ">
459
496
  <div class="item">
460
497
  <span class='object_link'><a href="Compony/Components/Form.html#field-instance_method" title="Compony::Components::Form#field (method)">#field</a></span>
461
498
  <small>Compony::Components::Form</small>
@@ -463,6 +500,62 @@
463
500
  </li>
464
501
 
465
502
 
503
+ <li class="even ">
504
+ <div class="item">
505
+ <span class='object_link'><a href="Compony/Components/List.html#filter-instance_method" title="Compony::Components::List#filter (method)">#filter</a></span>
506
+ <small>Compony::Components::List</small>
507
+ </div>
508
+ </li>
509
+
510
+
511
+ <li class="odd ">
512
+ <div class="item">
513
+ <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>
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_item_wrapper_class-instance_method" title="Compony::Components::List#filter_item_wrapper_class (method)">#filter_item_wrapper_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_label_class-instance_method" title="Compony::Components::List#filter_label_class (method)">#filter_label_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_select_class-instance_method" title="Compony::Components::List#filter_select_class (method)">#filter_select_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#filtering_enabled%3F-instance_method" title="Compony::Components::List#filtering_enabled? (method)">#filtering_enabled?</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#filters-instance_method" title="Compony::Components::List#filters (method)">#filters</a></span>
554
+ <small>Compony::Components::List</small>
555
+ </div>
556
+ </li>
557
+
558
+
466
559
  <li class="odd ">
467
560
  <div class="item">
468
561
  <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>
@@ -591,6 +684,22 @@
591
684
  </li>
592
685
 
593
686
 
687
+ <li class="odd ">
688
+ <div class="item">
689
+ <span class='object_link'><a href="Compony/Components/List.html#initialize-instance_method" title="Compony::Components::List#initialize (method)">#initialize</a></span>
690
+ <small>Compony::Components::List</small>
691
+ </div>
692
+ </li>
693
+
694
+
695
+ <li class="even ">
696
+ <div class="item">
697
+ <span class='object_link'><a href="Compony/Components/Show.html#initialize-instance_method" title="Compony::Components::Show#initialize (method)">#initialize</a></span>
698
+ <small>Compony::Components::Show</small>
699
+ </div>
700
+ </li>
701
+
702
+
594
703
  <li class="odd ">
595
704
  <div class="item">
596
705
  <span class='object_link'><a href="Compony/RequestContext.html#initialize-instance_method" title="Compony::RequestContext#initialize (method)">#initialize</a></span>
@@ -912,6 +1021,14 @@
912
1021
 
913
1022
 
914
1023
  <li class="odd ">
1024
+ <div class="item">
1025
+ <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>
1026
+ <small>Compony::Components::List</small>
1027
+ </div>
1028
+ </li>
1029
+
1030
+
1031
+ <li class="even ">
915
1032
  <div class="item">
916
1033
  <span class='object_link'><a href="Compony/Component.html#param_name-instance_method" title="Compony::Component#param_name (method)">#param_name</a></span>
917
1034
  <small>Compony::Component</small>
@@ -919,7 +1036,7 @@
919
1036
  </li>
920
1037
 
921
1038
 
922
- <li class="even ">
1039
+ <li class="odd ">
923
1040
  <div class="item">
924
1041
  <span class='object_link'><a href="Compony/Component.html#parent_comp-instance_method" title="Compony::Component#parent_comp (method)">#parent_comp</a></span>
925
1042
  <small>Compony::Component</small>
@@ -927,7 +1044,7 @@
927
1044
  </li>
928
1045
 
929
1046
 
930
- <li class="odd ">
1047
+ <li class="even ">
931
1048
  <div class="item">
932
1049
  <span class='object_link'><a href="Compony.html#path-class_method" title="Compony.path (method)">path</a></span>
933
1050
  <small>Compony</small>
@@ -935,7 +1052,7 @@
935
1052
  </li>
936
1053
 
937
1054
 
938
- <li class="even ">
1055
+ <li class="odd ">
939
1056
  <div class="item">
940
1057
  <span class='object_link'><a href="Compony/Component.html#path-instance_method" title="Compony::Component#path (method)">#path</a></span>
941
1058
  <small>Compony::Component</small>
@@ -943,7 +1060,7 @@
943
1060
  </li>
944
1061
 
945
1062
 
946
- <li class="odd ">
1063
+ <li class="even ">
947
1064
  <div class="item">
948
1065
  <span class='object_link'><a href="Compony/Component.html#path_hash-instance_method" title="Compony::Component#path_hash (method)">#path_hash</a></span>
949
1066
  <small>Compony::Component</small>
@@ -951,7 +1068,7 @@
951
1068
  </li>
952
1069
 
953
1070
 
954
- <li class="even ">
1071
+ <li class="odd ">
955
1072
  <div class="item">
956
1073
  <span class='object_link'><a href="Compony.html#path_helper_name-class_method" title="Compony.path_helper_name (method)">path_helper_name</a></span>
957
1074
  <small>Compony</small>
@@ -959,6 +1076,14 @@
959
1076
  </li>
960
1077
 
961
1078
 
1079
+ <li class="even ">
1080
+ <div class="item">
1081
+ <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>
1082
+ <small>Compony::Components::List</small>
1083
+ </div>
1084
+ </li>
1085
+
1086
+
962
1087
  <li class="odd ">
963
1088
  <div class="item">
964
1089
  <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>
@@ -976,6 +1101,62 @@
976
1101
 
977
1102
 
978
1103
  <li class="odd ">
1104
+ <div class="item">
1105
+ <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>
1106
+ <small>Compony::ModelFields::Base</small>
1107
+ </div>
1108
+ </li>
1109
+
1110
+
1111
+ <li class="even ">
1112
+ <div class="item">
1113
+ <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>
1114
+ <small>Compony::ModelFields::Boolean</small>
1115
+ </div>
1116
+ </li>
1117
+
1118
+
1119
+ <li class="odd ">
1120
+ <div class="item">
1121
+ <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>
1122
+ <small>Compony::ModelFields::Anchormodel</small>
1123
+ </div>
1124
+ </li>
1125
+
1126
+
1127
+ <li class="even ">
1128
+ <div class="item">
1129
+ <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>
1130
+ <small>Compony::ModelFields::Base</small>
1131
+ </div>
1132
+ </li>
1133
+
1134
+
1135
+ <li class="odd ">
1136
+ <div class="item">
1137
+ <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>
1138
+ <small>Compony::ModelFields::Boolean</small>
1139
+ </div>
1140
+ </li>
1141
+
1142
+
1143
+ <li class="even ">
1144
+ <div class="item">
1145
+ <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>
1146
+ <small>Compony::ModelFields::Integer</small>
1147
+ </div>
1148
+ </li>
1149
+
1150
+
1151
+ <li class="odd ">
1152
+ <div class="item">
1153
+ <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>
1154
+ <small>Compony::ModelFields::Anchormodel</small>
1155
+ </div>
1156
+ </li>
1157
+
1158
+
1159
+ <li class="even ">
979
1160
  <div class="item">
980
1161
  <span class='object_link'><a href="Compony/Component.html#remove_content-instance_method" title="Compony::Component#remove_content (method)">#remove_content</a></span>
981
1162
  <small>Compony::Component</small>
@@ -983,7 +1164,7 @@
983
1164
  </li>
984
1165
 
985
1166
 
986
- <li class="even ">
1167
+ <li class="odd ">
987
1168
  <div class="item">
988
1169
  <span class='object_link'><a href="Compony/Component.html#remove_content!-instance_method" title="Compony::Component#remove_content! (method)">#remove_content!</a></span>
989
1170
  <small>Compony::Component</small>
@@ -991,7 +1172,7 @@
991
1172
  </li>
992
1173
 
993
1174
 
994
- <li class="odd ">
1175
+ <li class="even ">
995
1176
  <div class="item">
996
1177
  <span class='object_link'><a href="Compony/Component.html#render-instance_method" title="Compony::Component#render (method)">#render</a></span>
997
1178
  <small>Compony::Component</small>
@@ -999,7 +1180,7 @@
999
1180
  </li>
1000
1181
 
1001
1182
 
1002
- <li class="even ">
1183
+ <li class="odd ">
1003
1184
  <div class="item">
1004
1185
  <span class='object_link'><a href="Compony/Component.html#render_actions-instance_method" title="Compony::Component#render_actions (method)">#render_actions</a></span>
1005
1186
  <small>Compony::Component</small>
@@ -1007,7 +1188,7 @@
1007
1188
  </li>
1008
1189
 
1009
1190
 
1010
- <li class="odd ">
1191
+ <li class="even ">
1011
1192
  <div class="item">
1012
1193
  <span class='object_link'><a href="Compony/ComponentMixins/Default/Standalone.html#render_standalone-instance_method" title="Compony::ComponentMixins::Default::Standalone#render_standalone (method)">#render_standalone</a></span>
1013
1194
  <small>Compony::ComponentMixins::Default::Standalone</small>
@@ -1015,7 +1196,7 @@
1015
1196
  </li>
1016
1197
 
1017
1198
 
1018
- <li class="even ">
1199
+ <li class="odd ">
1019
1200
  <div class="item">
1020
1201
  <span class='object_link'><a href="Compony/RequestContext.html#request_context-instance_method" title="Compony::RequestContext#request_context (method)">#request_context</a></span>
1021
1202
  <small>Compony::RequestContext</small>
@@ -1023,7 +1204,7 @@
1023
1204
  </li>
1024
1205
 
1025
1206
 
1026
- <li class="odd ">
1207
+ <li class="even ">
1027
1208
  <div class="item">
1028
1209
  <span class='object_link'><a href="Compony/ModelFields/Association.html#resolve_association!-instance_method" title="Compony::ModelFields::Association#resolve_association! (method)">#resolve_association!</a></span>
1029
1210
  <small>Compony::ModelFields::Association</small>
@@ -1031,7 +1212,7 @@
1031
1212
  </li>
1032
1213
 
1033
1214
 
1034
- <li class="even ">
1215
+ <li class="odd ">
1035
1216
  <div class="item">
1036
1217
  <span class='object_link'><a href="Compony/Component.html#resourceful%3F-instance_method" title="Compony::Component#resourceful? (method)">#resourceful?</a></span>
1037
1218
  <small>Compony::Component</small>
@@ -1039,7 +1220,7 @@
1039
1220
  </li>
1040
1221
 
1041
1222
 
1042
- <li class="odd ">
1223
+ <li class="even ">
1043
1224
  <div class="item">
1044
1225
  <span class='object_link'><a href="Compony/ComponentMixins/Resourceful.html#resourceful%3F-instance_method" title="Compony::ComponentMixins::Resourceful#resourceful? (method)">#resourceful?</a></span>
1045
1226
  <small>Compony::ComponentMixins::Resourceful</small>
@@ -1047,7 +1228,7 @@
1047
1228
  </li>
1048
1229
 
1049
1230
 
1050
- <li class="even ">
1231
+ <li class="odd ">
1051
1232
  <div class="item">
1052
1233
  <span class='object_link'><a href="Compony/ComponentMixins/Resourceful.html#resourceful_sub_comp-instance_method" title="Compony::ComponentMixins::Resourceful#resourceful_sub_comp (method)">#resourceful_sub_comp</a></span>
1053
1234
  <small>Compony::ComponentMixins::Resourceful</small>
@@ -1055,7 +1236,7 @@
1055
1236
  </li>
1056
1237
 
1057
1238
 
1058
- <li class="odd ">
1239
+ <li class="even ">
1059
1240
  <div class="item">
1060
1241
  <span class='object_link'><a href="Compony/ComponentMixins/Default/Standalone/VerbDsl.html#respond-instance_method" title="Compony::ComponentMixins::Default::Standalone::VerbDsl#respond (method)">#respond</a></span>
1061
1242
  <small>Compony::ComponentMixins::Default::Standalone::VerbDsl</small>
@@ -1063,7 +1244,7 @@
1063
1244
  </li>
1064
1245
 
1065
1246
 
1066
- <li class="even ">
1247
+ <li class="odd ">
1067
1248
  <div class="item">
1068
1249
  <span class='object_link'><a href="Compony/RequestContext.html#respond_to_missing%3F-instance_method" title="Compony::RequestContext#respond_to_missing? (method)">#respond_to_missing?</a></span>
1069
1250
  <small>Compony::RequestContext</small>
@@ -1071,7 +1252,7 @@
1071
1252
  </li>
1072
1253
 
1073
1254
 
1074
- <li class="odd ">
1255
+ <li class="even ">
1075
1256
  <div class="item">
1076
1257
  <span class='object_link'><a href="Compony/MethodAccessibleHash.html#respond_to_missing%3F-instance_method" title="Compony::MethodAccessibleHash#respond_to_missing? (method)">#respond_to_missing?</a></span>
1077
1258
  <small>Compony::MethodAccessibleHash</small>
@@ -1079,6 +1260,14 @@
1079
1260
  </li>
1080
1261
 
1081
1262
 
1263
+ <li class="odd ">
1264
+ <div class="item">
1265
+ <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>
1266
+ <small>Compony::Components::List</small>
1267
+ </div>
1268
+ </li>
1269
+
1270
+
1082
1271
  <li class="even ">
1083
1272
  <div class="item">
1084
1273
  <span class='object_link'><a href="Compony.html#root_comp-class_method" title="Compony.root_comp (method)">root_comp</a></span>
@@ -1104,6 +1293,14 @@
1104
1293
 
1105
1294
 
1106
1295
  <li class="odd ">
1296
+ <div class="item">
1297
+ <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>
1298
+ <small>Compony::Components::List</small>
1299
+ </div>
1300
+ </li>
1301
+
1302
+
1303
+ <li class="even ">
1107
1304
  <div class="item">
1108
1305
  <span class='object_link'><a href="Compony/Components/Form.html#schema-instance_method" title="Compony::Components::Form#schema (method)">#schema</a></span>
1109
1306
  <small>Compony::Components::Form</small>
@@ -1111,7 +1308,7 @@
1111
1308
  </li>
1112
1309
 
1113
1310
 
1114
- <li class="even ">
1311
+ <li class="odd ">
1115
1312
  <div class="item">
1116
1313
  <span class='object_link'><a href="Compony/Components/Form.html#schema_block_for-instance_method" title="Compony::Components::Form#schema_block_for (method)">#schema_block_for</a></span>
1117
1314
  <small>Compony::Components::Form</small>
@@ -1119,7 +1316,7 @@
1119
1316
  </li>
1120
1317
 
1121
1318
 
1122
- <li class="odd ">
1319
+ <li class="even ">
1123
1320
  <div class="item">
1124
1321
  <span class='object_link'><a href="Compony/Components/Form.html#schema_field-instance_method" title="Compony::Components::Form#schema_field (method)">#schema_field</a></span>
1125
1322
  <small>Compony::Components::Form</small>
@@ -1127,7 +1324,7 @@
1127
1324
  </li>
1128
1325
 
1129
1326
 
1130
- <li class="even ">
1327
+ <li class="odd ">
1131
1328
  <div class="item">
1132
1329
  <span class='object_link'><a href="Compony/Components/Form.html#schema_fields-instance_method" title="Compony::Components::Form#schema_fields (method)">#schema_fields</a></span>
1133
1330
  <small>Compony::Components::Form</small>
@@ -1135,7 +1332,7 @@
1135
1332
  </li>
1136
1333
 
1137
1334
 
1138
- <li class="odd ">
1335
+ <li class="even ">
1139
1336
  <div class="item">
1140
1337
  <span class='object_link'><a href="Compony/ModelFields/Base.html#schema_key-instance_method" title="Compony::ModelFields::Base#schema_key (method)">#schema_key</a></span>
1141
1338
  <small>Compony::ModelFields::Base</small>
@@ -1143,7 +1340,7 @@
1143
1340
  </li>
1144
1341
 
1145
1342
 
1146
- <li class="even ">
1343
+ <li class="odd ">
1147
1344
  <div class="item">
1148
1345
  <span class='object_link'><a href="Compony/Components/Form.html#schema_line-instance_method" title="Compony::Components::Form#schema_line (method)">#schema_line</a></span>
1149
1346
  <small>Compony::Components::Form</small>
@@ -1151,7 +1348,7 @@
1151
1348
  </li>
1152
1349
 
1153
1350
 
1154
- <li class="odd ">
1351
+ <li class="even ">
1155
1352
  <div class="item">
1156
1353
  <span class='object_link'><a href="Compony/ModelFields/Base.html#schema_line-instance_method" title="Compony::ModelFields::Base#schema_line (method)">#schema_line</a></span>
1157
1354
  <small>Compony::ModelFields::Base</small>
@@ -1159,7 +1356,7 @@
1159
1356
  </li>
1160
1357
 
1161
1358
 
1162
- <li class="even ">
1359
+ <li class="odd ">
1163
1360
  <div class="item">
1164
1361
  <span class='object_link'><a href="Compony/ModelFields/Association.html#schema_line-instance_method" title="Compony::ModelFields::Association#schema_line (method)">#schema_line</a></span>
1165
1362
  <small>Compony::ModelFields::Association</small>
@@ -1167,7 +1364,7 @@
1167
1364
  </li>
1168
1365
 
1169
1366
 
1170
- <li class="odd ">
1367
+ <li class="even ">
1171
1368
  <div class="item">
1172
1369
  <span class='object_link'><a href="Compony/Components/Form.html#schema_pw_field-instance_method" title="Compony::Components::Form#schema_pw_field (method)">#schema_pw_field</a></span>
1173
1370
  <small>Compony::Components::Form</small>
@@ -1175,7 +1372,7 @@
1175
1372
  </li>
1176
1373
 
1177
1374
 
1178
- <li class="even ">
1375
+ <li class="odd ">
1179
1376
  <div class="item">
1180
1377
  <span class='object_link'><a href="Compony/Components/Form.html#schema_wrapper_key_for-instance_method" title="Compony::Components::Form#schema_wrapper_key_for (method)">#schema_wrapper_key_for</a></span>
1181
1378
  <small>Compony::Components::Form</small>
@@ -1183,7 +1380,7 @@
1183
1380
  </li>
1184
1381
 
1185
1382
 
1186
- <li class="odd ">
1383
+ <li class="even ">
1187
1384
  <div class="item">
1188
1385
  <span class='object_link'><a href="Compony/Component.html#setup-class_method" title="Compony::Component.setup (method)">setup</a></span>
1189
1386
  <small>Compony::Component</small>
@@ -1191,7 +1388,7 @@
1191
1388
  </li>
1192
1389
 
1193
1390
 
1194
- <li class="even ">
1391
+ <li class="odd ">
1195
1392
  <div class="item">
1196
1393
  <span class='object_link'><a href="Compony/ModelFields/Base.html#simpleform_input-instance_method" title="Compony::ModelFields::Base#simpleform_input (method)">#simpleform_input</a></span>
1197
1394
  <small>Compony::ModelFields::Base</small>
@@ -1199,7 +1396,7 @@
1199
1396
  </li>
1200
1397
 
1201
1398
 
1202
- <li class="odd ">
1399
+ <li class="even ">
1203
1400
  <div class="item">
1204
1401
  <span class='object_link'><a href="Compony/ModelFields/Color.html#simpleform_input-instance_method" title="Compony::ModelFields::Color#simpleform_input (method)">#simpleform_input</a></span>
1205
1402
  <small>Compony::ModelFields::Color</small>
@@ -1207,7 +1404,7 @@
1207
1404
  </li>
1208
1405
 
1209
1406
 
1210
- <li class="even ">
1407
+ <li class="odd ">
1211
1408
  <div class="item">
1212
1409
  <span class='object_link'><a href="Compony/ModelFields/RichText.html#simpleform_input-instance_method" title="Compony::ModelFields::RichText#simpleform_input (method)">#simpleform_input</a></span>
1213
1410
  <small>Compony::ModelFields::RichText</small>
@@ -1215,7 +1412,7 @@
1215
1412
  </li>
1216
1413
 
1217
1414
 
1218
- <li class="odd ">
1415
+ <li class="even ">
1219
1416
  <div class="item">
1220
1417
  <span class='object_link'><a href="Compony/ModelFields/Attachment.html#simpleform_input-instance_method" title="Compony::ModelFields::Attachment#simpleform_input (method)">#simpleform_input</a></span>
1221
1418
  <small>Compony::ModelFields::Attachment</small>
@@ -1223,7 +1420,7 @@
1223
1420
  </li>
1224
1421
 
1225
1422
 
1226
- <li class="even ">
1423
+ <li class="odd ">
1227
1424
  <div class="item">
1228
1425
  <span class='object_link'><a href="Compony/ModelFields/Association.html#simpleform_input-instance_method" title="Compony::ModelFields::Association#simpleform_input (method)">#simpleform_input</a></span>
1229
1426
  <small>Compony::ModelFields::Association</small>
@@ -1231,7 +1428,7 @@
1231
1428
  </li>
1232
1429
 
1233
1430
 
1234
- <li class="odd ">
1431
+ <li class="even ">
1235
1432
  <div class="item">
1236
1433
  <span class='object_link'><a href="Compony/ModelFields/Base.html#simpleform_input_hidden-instance_method" title="Compony::ModelFields::Base#simpleform_input_hidden (method)">#simpleform_input_hidden</a></span>
1237
1434
  <small>Compony::ModelFields::Base</small>
@@ -1239,7 +1436,7 @@
1239
1436
  </li>
1240
1437
 
1241
1438
 
1242
- <li class="even ">
1439
+ <li class="odd ">
1243
1440
  <div class="item">
1244
1441
  <span class='object_link'><a href="Compony/ModelFields/Anchormodel.html#simpleform_input_hidden-instance_method" title="Compony::ModelFields::Anchormodel#simpleform_input_hidden (method)">#simpleform_input_hidden</a></span>
1245
1442
  <small>Compony::ModelFields::Anchormodel</small>
@@ -1247,7 +1444,7 @@
1247
1444
  </li>
1248
1445
 
1249
1446
 
1250
- <li class="odd ">
1447
+ <li class="even ">
1251
1448
  <div class="item">
1252
1449
  <span class='object_link'><a href="Compony/ModelFields/Association.html#simpleform_input_hidden-instance_method" title="Compony::ModelFields::Association#simpleform_input_hidden (method)">#simpleform_input_hidden</a></span>
1253
1450
  <small>Compony::ModelFields::Association</small>
@@ -1255,7 +1452,7 @@
1255
1452
  </li>
1256
1453
 
1257
1454
 
1258
- <li class="even ">
1455
+ <li class="odd ">
1259
1456
  <div class="item">
1260
1457
  <span class='object_link'><a href="Compony/Component.html#skip_action-instance_method" title="Compony::Component#skip_action (method)">#skip_action</a></span>
1261
1458
  <small>Compony::Component</small>
@@ -1263,7 +1460,7 @@
1263
1460
  </li>
1264
1461
 
1265
1462
 
1266
- <li class="odd ">
1463
+ <li class="even ">
1267
1464
  <div class="item">
1268
1465
  <span class='object_link'><a href="Compony/ComponentMixins/Default/Standalone/StandaloneDsl.html#skip_authentication!-instance_method" title="Compony::ComponentMixins::Default::Standalone::StandaloneDsl#skip_authentication! (method)">#skip_authentication!</a></span>
1269
1466
  <small>Compony::ComponentMixins::Default::Standalone::StandaloneDsl</small>
@@ -1271,7 +1468,7 @@
1271
1468
  </li>
1272
1469
 
1273
1470
 
1274
- <li class="even ">
1471
+ <li class="odd ">
1275
1472
  <div class="item">
1276
1473
  <span class='object_link'><a href="Compony/Components/Form.html#skip_autofocus-instance_method" title="Compony::Components::Form#skip_autofocus (method)">#skip_autofocus</a></span>
1277
1474
  <small>Compony::Components::Form</small>
@@ -1279,6 +1476,30 @@
1279
1476
  </li>
1280
1477
 
1281
1478
 
1479
+ <li class="even ">
1480
+ <div class="item">
1481
+ <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>
1482
+ <small>Compony::Components::List</small>
1483
+ </div>
1484
+ </li>
1485
+
1486
+
1487
+ <li class="odd ">
1488
+ <div class="item">
1489
+ <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>
1490
+ <small>Compony::Components::Show</small>
1491
+ </div>
1492
+ </li>
1493
+
1494
+
1495
+ <li class="even ">
1496
+ <div class="item">
1497
+ <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>
1498
+ <small>Compony::Components::List</small>
1499
+ </div>
1500
+ </li>
1501
+
1502
+
1282
1503
  <li class="odd ">
1283
1504
  <div class="item">
1284
1505
  <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>
@@ -1288,6 +1509,94 @@
1288
1509
 
1289
1510
 
1290
1511
  <li class="even ">
1512
+ <div class="item">
1513
+ <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>
1514
+ <small>Compony::Components::List</small>
1515
+ </div>
1516
+ </li>
1517
+
1518
+
1519
+ <li class="odd ">
1520
+ <div class="item">
1521
+ <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>
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_sorting!-instance_method" title="Compony::Components::List#skip_sorting! (method)">#skip_sorting!</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_in_filter!-instance_method" title="Compony::Components::List#skip_sorting_in_filter! (method)">#skip_sorting_in_filter!</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_links!-instance_method" title="Compony::Components::List#skip_sorting_links! (method)">#skip_sorting_links!</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#sort-instance_method" title="Compony::Components::List#sort (method)">#sort</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#sorting_enabled%3F-instance_method" title="Compony::Components::List#sorting_enabled? (method)">#sorting_enabled?</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_in_filter_enabled%3F-instance_method" title="Compony::Components::List#sorting_in_filter_enabled? (method)">#sorting_in_filter_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_select_opts-instance_method" title="Compony::Components::List#sorting_in_filter_select_opts (method)">#sorting_in_filter_select_opts</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_links_enabled%3F-instance_method" title="Compony::Components::List#sorting_links_enabled? (method)">#sorting_links_enabled?</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#sorts-instance_method" title="Compony::Components::List#sorts (method)">#sorts</a></span>
1594
+ <small>Compony::Components::List</small>
1595
+ </div>
1596
+ </li>
1597
+
1598
+
1599
+ <li class="odd ">
1291
1600
  <div class="item">
1292
1601
  <span class='object_link'><a href="Compony/ComponentMixins/Default/Standalone.html#standalone-instance_method" title="Compony::ComponentMixins::Default::Standalone#standalone (method)">#standalone</a></span>
1293
1602
  <small>Compony::ComponentMixins::Default::Standalone</small>
@@ -1295,7 +1604,7 @@
1295
1604
  </li>
1296
1605
 
1297
1606
 
1298
- <li class="odd ">
1607
+ <li class="even ">
1299
1608
  <div class="item">
1300
1609
  <span class='object_link'><a href="Compony/ComponentMixins/Default/Standalone.html#standalone_access_permitted_for%3F-instance_method" title="Compony::ComponentMixins::Default::Standalone#standalone_access_permitted_for? (method)">#standalone_access_permitted_for?</a></span>
1301
1610
  <small>Compony::ComponentMixins::Default::Standalone</small>
@@ -1303,7 +1612,7 @@
1303
1612
  </li>
1304
1613
 
1305
1614
 
1306
- <li class="even ">
1615
+ <li class="odd ">
1307
1616
  <div class="item">
1308
1617
  <span class='object_link'><a href="Compony/ComponentMixins/Resourceful.html#store_data-instance_method" title="Compony::ComponentMixins::Resourceful#store_data (method)">#store_data</a></span>
1309
1618
  <small>Compony::ComponentMixins::Resourceful</small>
@@ -1311,7 +1620,7 @@
1311
1620
  </li>
1312
1621
 
1313
1622
 
1314
- <li class="odd ">
1623
+ <li class="even ">
1315
1624
  <div class="item">
1316
1625
  <span class='object_link'><a href="Compony/ComponentMixins/Default/Standalone/ResourcefulVerbDsl.html#store_data-instance_method" title="Compony::ComponentMixins::Default::Standalone::ResourcefulVerbDsl#store_data (method)">#store_data</a></span>
1317
1626
  <small>Compony::ComponentMixins::Default::Standalone::ResourcefulVerbDsl</small>
@@ -1319,7 +1628,7 @@
1319
1628
  </li>
1320
1629
 
1321
1630
 
1322
- <li class="even ">
1631
+ <li class="odd ">
1323
1632
  <div class="item">
1324
1633
  <span class='object_link'><a href="Compony/Component.html#sub_comp-instance_method" title="Compony::Component#sub_comp (method)">#sub_comp</a></span>
1325
1634
  <small>Compony::Component</small>
@@ -1327,7 +1636,7 @@
1327
1636
  </li>
1328
1637
 
1329
1638
 
1330
- <li class="odd ">
1639
+ <li class="even ">
1331
1640
  <div class="item">
1332
1641
  <span class='object_link'><a href="Compony/Components/WithForm.html#submit_path-instance_method" title="Compony::Components::WithForm#submit_path (method)">#submit_path</a></span>
1333
1642
  <small>Compony::Components::WithForm</small>
@@ -1335,7 +1644,7 @@
1335
1644
  </li>
1336
1645
 
1337
1646
 
1338
- <li class="even ">
1647
+ <li class="odd ">
1339
1648
  <div class="item">
1340
1649
  <span class='object_link'><a href="Compony/Components/WithForm.html#submit_verb-instance_method" title="Compony::Components::WithForm#submit_verb (method)">#submit_verb</a></span>
1341
1650
  <small>Compony::Components::WithForm</small>
@@ -1343,7 +1652,7 @@
1343
1652
  </li>
1344
1653
 
1345
1654
 
1346
- <li class="odd ">
1655
+ <li class="even ">
1347
1656
  <div class="item">
1348
1657
  <span class='object_link'><a href="Compony/ComponentMixins/Default/Standalone/VerbDsl.html#to_conf-instance_method" title="Compony::ComponentMixins::Default::Standalone::VerbDsl#to_conf (method)">#to_conf</a></span>
1349
1658
  <small>Compony::ComponentMixins::Default::Standalone::VerbDsl</small>
@@ -1351,7 +1660,7 @@
1351
1660
  </li>
1352
1661
 
1353
1662
 
1354
- <li class="even ">
1663
+ <li class="odd ">
1355
1664
  <div class="item">
1356
1665
  <span class='object_link'><a href="Compony/ComponentMixins/Default/Standalone/StandaloneDsl.html#to_conf-instance_method" title="Compony::ComponentMixins::Default::Standalone::StandaloneDsl#to_conf (method)">#to_conf</a></span>
1357
1666
  <small>Compony::ComponentMixins::Default::Standalone::StandaloneDsl</small>
@@ -1359,7 +1668,7 @@
1359
1668
  </li>
1360
1669
 
1361
1670
 
1362
- <li class="odd ">
1671
+ <li class="even ">
1363
1672
  <div class="item">
1364
1673
  <span class='object_link'><a href="Compony/ComponentMixins/Default/Standalone/ResourcefulVerbDsl.html#to_conf-instance_method" title="Compony::ComponentMixins::Default::Standalone::ResourcefulVerbDsl#to_conf (method)">#to_conf</a></span>
1365
1674
  <small>Compony::ComponentMixins::Default::Standalone::ResourcefulVerbDsl</small>
@@ -1367,7 +1676,7 @@
1367
1676
  </li>
1368
1677
 
1369
1678
 
1370
- <li class="even ">
1679
+ <li class="odd ">
1371
1680
  <div class="item">
1372
1681
  <span class='object_link'><a href="Compony/ModelFields/Base.html#transform_and_join-instance_method" title="Compony::ModelFields::Base#transform_and_join (method)">#transform_and_join</a></span>
1373
1682
  <small>Compony::ModelFields::Base</small>
@@ -1375,7 +1684,7 @@
1375
1684
  </li>
1376
1685
 
1377
1686
 
1378
- <li class="odd ">
1687
+ <li class="even ">
1379
1688
  <div class="item">
1380
1689
  <span class='object_link'><a href="Compony/ModelFields/Url.html#value_for-instance_method" title="Compony::ModelFields::Url#value_for (method)">#value_for</a></span>
1381
1690
  <small>Compony::ModelFields::Url</small>
@@ -1383,7 +1692,7 @@
1383
1692
  </li>
1384
1693
 
1385
1694
 
1386
- <li class="even ">
1695
+ <li class="odd ">
1387
1696
  <div class="item">
1388
1697
  <span class='object_link'><a href="Compony/ModelFields/Base.html#value_for-instance_method" title="Compony::ModelFields::Base#value_for (method)">#value_for</a></span>
1389
1698
  <small>Compony::ModelFields::Base</small>
@@ -1391,7 +1700,7 @@
1391
1700
  </li>
1392
1701
 
1393
1702
 
1394
- <li class="odd ">
1703
+ <li class="even ">
1395
1704
  <div class="item">
1396
1705
  <span class='object_link'><a href="Compony/ModelFields/Date.html#value_for-instance_method" title="Compony::ModelFields::Date#value_for (method)">#value_for</a></span>
1397
1706
  <small>Compony::ModelFields::Date</small>
@@ -1399,7 +1708,7 @@
1399
1708
  </li>
1400
1709
 
1401
1710
 
1402
- <li class="even ">
1711
+ <li class="odd ">
1403
1712
  <div class="item">
1404
1713
  <span class='object_link'><a href="Compony/ModelFields/Color.html#value_for-instance_method" title="Compony::ModelFields::Color#value_for (method)">#value_for</a></span>
1405
1714
  <small>Compony::ModelFields::Color</small>
@@ -1407,7 +1716,7 @@
1407
1716
  </li>
1408
1717
 
1409
1718
 
1410
- <li class="odd ">
1719
+ <li class="even ">
1411
1720
  <div class="item">
1412
1721
  <span class='object_link'><a href="Compony/ModelFields/Email.html#value_for-instance_method" title="Compony::ModelFields::Email#value_for (method)">#value_for</a></span>
1413
1722
  <small>Compony::ModelFields::Email</small>
@@ -1415,7 +1724,7 @@
1415
1724
  </li>
1416
1725
 
1417
1726
 
1418
- <li class="even ">
1727
+ <li class="odd ">
1419
1728
  <div class="item">
1420
1729
  <span class='object_link'><a href="Compony/ModelFields/Phone.html#value_for-instance_method" title="Compony::ModelFields::Phone#value_for (method)">#value_for</a></span>
1421
1730
  <small>Compony::ModelFields::Phone</small>
@@ -1423,7 +1732,7 @@
1423
1732
  </li>
1424
1733
 
1425
1734
 
1426
- <li class="odd ">
1735
+ <li class="even ">
1427
1736
  <div class="item">
1428
1737
  <span class='object_link'><a href="Compony/ModelFields/Boolean.html#value_for-instance_method" title="Compony::ModelFields::Boolean#value_for (method)">#value_for</a></span>
1429
1738
  <small>Compony::ModelFields::Boolean</small>
@@ -1431,7 +1740,7 @@
1431
1740
  </li>
1432
1741
 
1433
1742
 
1434
- <li class="even ">
1743
+ <li class="odd ">
1435
1744
  <div class="item">
1436
1745
  <span class='object_link'><a href="Compony/ModelFields/Currency.html#value_for-instance_method" title="Compony::ModelFields::Currency#value_for (method)">#value_for</a></span>
1437
1746
  <small>Compony::ModelFields::Currency</small>
@@ -1439,7 +1748,7 @@
1439
1748
  </li>
1440
1749
 
1441
1750
 
1442
- <li class="odd ">
1751
+ <li class="even ">
1443
1752
  <div class="item">
1444
1753
  <span class='object_link'><a href="Compony/ModelFields/Datetime.html#value_for-instance_method" title="Compony::ModelFields::Datetime#value_for (method)">#value_for</a></span>
1445
1754
  <small>Compony::ModelFields::Datetime</small>
@@ -1447,7 +1756,7 @@
1447
1756
  </li>
1448
1757
 
1449
1758
 
1450
- <li class="even ">
1759
+ <li class="odd ">
1451
1760
  <div class="item">
1452
1761
  <span class='object_link'><a href="Compony/ModelFields/Attachment.html#value_for-instance_method" title="Compony::ModelFields::Attachment#value_for (method)">#value_for</a></span>
1453
1762
  <small>Compony::ModelFields::Attachment</small>
@@ -1455,7 +1764,7 @@
1455
1764
  </li>
1456
1765
 
1457
1766
 
1458
- <li class="odd ">
1767
+ <li class="even ">
1459
1768
  <div class="item">
1460
1769
  <span class='object_link'><a href="Compony/ModelFields/Percentage.html#value_for-instance_method" title="Compony::ModelFields::Percentage#value_for (method)">#value_for</a></span>
1461
1770
  <small>Compony::ModelFields::Percentage</small>
@@ -1463,7 +1772,7 @@
1463
1772
  </li>
1464
1773
 
1465
1774
 
1466
- <li class="even ">
1775
+ <li class="odd ">
1467
1776
  <div class="item">
1468
1777
  <span class='object_link'><a href="Compony/ModelFields/Anchormodel.html#value_for-instance_method" title="Compony::ModelFields::Anchormodel#value_for (method)">#value_for</a></span>
1469
1778
  <small>Compony::ModelFields::Anchormodel</small>
@@ -1471,7 +1780,7 @@
1471
1780
  </li>
1472
1781
 
1473
1782
 
1474
- <li class="odd ">
1783
+ <li class="even ">
1475
1784
  <div class="item">
1476
1785
  <span class='object_link'><a href="Compony/ModelFields/Association.html#value_for-instance_method" title="Compony::ModelFields::Association#value_for (method)">#value_for</a></span>
1477
1786
  <small>Compony::ModelFields::Association</small>
@@ -1479,7 +1788,7 @@
1479
1788
  </li>
1480
1789
 
1481
1790
 
1482
- <li class="even ">
1791
+ <li class="odd ">
1483
1792
  <div class="item">
1484
1793
  <span class='object_link'><a href="Compony/ComponentMixins/Default/Standalone/StandaloneDsl.html#verb-instance_method" title="Compony::ComponentMixins::Default::Standalone::StandaloneDsl#verb (method)">#verb</a></span>
1485
1794
  <small>Compony::ComponentMixins::Default::Standalone::StandaloneDsl</small>
@@ -1487,7 +1796,7 @@
1487
1796
  </li>
1488
1797
 
1489
1798
 
1490
- <li class="odd ">
1799
+ <li class="even ">
1491
1800
  <div class="item">
1492
1801
  <span class='object_link'><a href="Compony.html#with_button_defaults-class_method" title="Compony.with_button_defaults (method)">with_button_defaults</a></span>
1493
1802
  <small>Compony</small>
@@ -1495,7 +1804,7 @@
1495
1804
  </li>
1496
1805
 
1497
1806
 
1498
- <li class="even ">
1807
+ <li class="odd ">
1499
1808
  <div class="item">
1500
1809
  <span class='object_link'><a href="Compony/Components/Form.html#with_simpleform-instance_method" title="Compony::Components::Form#with_simpleform (method)">#with_simpleform</a></span>
1501
1810
  <small>Compony::Components::Form</small>