gridion 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/gridion/grid_helper.rb +7 -4
- data/lib/gridion/version.rb +1 -1
- metadata +7 -7
data/lib/gridion/grid_helper.rb
CHANGED
@@ -39,11 +39,12 @@ module Gridion
|
|
39
39
|
# we need to initialize the procs in the helper context otherwise other helpers inside the proc object (e.g. link_to) wont work
|
40
40
|
|
41
41
|
|
42
|
-
|
42
|
+
options=options.with_indifferent_access
|
43
|
+
|
43
44
|
unless collection.blank?
|
44
45
|
grid_binding.header.call(collection.first.class, collection, options)
|
45
46
|
|
46
|
-
collection.each_with_index {|object, i| grid_binding.row.call(object.class, object, options.merge(:row_is_even=>i%2==
|
47
|
+
collection.each_with_index {|object, i| grid_binding.row.call(object.class, object, options.merge(:row_is_even=>i%2==1)) } #index starts from 0
|
47
48
|
|
48
49
|
grid_binding.paginator.call(collection.first.class, collection, options) if collection.respond_to?(:current_page) && defined?(Kaminari) # we assume only Kaminari is supported
|
49
50
|
|
@@ -73,17 +74,19 @@ module Gridion
|
|
73
74
|
grid_binding.row do |klass, object, options={}|
|
74
75
|
object_list=
|
75
76
|
if options.has_key?(:parent)
|
76
|
-
(options[:parent] + [object]).flatten
|
77
|
+
([options[:parent]] + [object]).flatten
|
77
78
|
else
|
78
79
|
[object]
|
79
80
|
end
|
81
|
+
puts "options: #{options.inspect}"
|
82
|
+
puts "object_list: #{object_list.inspect}"
|
80
83
|
|
81
84
|
result =""
|
82
85
|
result << "<tr id=\"#{klass.name}_#{object.id}\" class=\"#{options[:row_is_even] ? 'even' : 'odd'}\">"
|
83
86
|
(options[:columns]||klass.column_names).each do |col|
|
84
87
|
result << "<td class=\"#{col}\">#{object.send(col)}</td>"
|
85
88
|
end
|
86
|
-
result << "<td>#{link_to 'Edit', [:edit]+ object_list, :class=>%w{action_link edit}}"
|
89
|
+
result << "<td class=\"actions\">#{link_to 'Edit', [:edit]+ object_list, :class=>%w{action_link edit}}"
|
87
90
|
result << "#{link_to 'Delete', object_list, :class=>%w{action_link delete}, :method=>:delete, :confirm=>'Are you sure?'}"
|
88
91
|
result << "</td>"
|
89
92
|
result << "</tr>"
|
data/lib/gridion/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gridion
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -13,7 +13,7 @@ date: 2011-09-26 00:00:00.000000000Z
|
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sqlite3
|
16
|
-
requirement: &
|
16
|
+
requirement: &70290043066340 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: '0'
|
22
22
|
type: :development
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70290043066340
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: kaminari
|
27
|
-
requirement: &
|
27
|
+
requirement: &70290043065360 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,7 +32,7 @@ dependencies:
|
|
32
32
|
version: '0'
|
33
33
|
type: :development
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *70290043065360
|
36
36
|
description: Simple grid helper for rails
|
37
37
|
email:
|
38
38
|
- william@tofugear.com
|
@@ -90,7 +90,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
90
90
|
version: '0'
|
91
91
|
segments:
|
92
92
|
- 0
|
93
|
-
hash:
|
93
|
+
hash: 258325444444947835
|
94
94
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
95
95
|
none: false
|
96
96
|
requirements:
|
@@ -99,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
99
99
|
version: '0'
|
100
100
|
segments:
|
101
101
|
- 0
|
102
|
-
hash:
|
102
|
+
hash: 258325444444947835
|
103
103
|
requirements: []
|
104
104
|
rubyforge_project:
|
105
105
|
rubygems_version: 1.8.10
|