gridion 0.0.19 → 0.0.20
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/gridion/grid_helper.rb +13 -5
- data/lib/gridion/version.rb +1 -1
- metadata +8 -8
data/lib/gridion/grid_helper.rb
CHANGED
@@ -53,6 +53,8 @@ module Gridion
|
|
53
53
|
|
54
54
|
options[:table_tag]||="table"
|
55
55
|
options[:table_header_tag]||="th"
|
56
|
+
options[:table_header_wrapper_tag]="thead"
|
57
|
+
options[:table_body_wrapper_tag]="tbody"
|
56
58
|
options[:table_row_tag]||="tr"
|
57
59
|
options[:table_cell_tag]||="td"
|
58
60
|
|
@@ -86,20 +88,25 @@ module Gridion
|
|
86
88
|
table_tag = options[:table_tag]||"table"
|
87
89
|
table_row_tag=options[:table_row_tag]||"tr"
|
88
90
|
table_header_tag=options[:table_header_tag]||"th"
|
91
|
+
table_header_wrapper_tag=options[:table_header_wrapper_tag]||"thead"
|
92
|
+
table_body_wrapper_tag=options[:table_body_wrapper_tag]||"tbody"
|
89
93
|
table_classes=[options[:class]].flatten.compact
|
90
94
|
safe_concat("<#{table_tag} class=\"#{klass.name.downcase} #{table_classes.join(' ')}\">")
|
91
|
-
|
95
|
+
|
92
96
|
columns=options[:columns]||klass.column_names
|
93
|
-
|
97
|
+
safe_concat("<#{table_header_wrapper_tag}>") if table_header_wrapper_tag.present?
|
94
98
|
safe_concat("<#{table_row_tag} class=\"header\">")
|
99
|
+
|
95
100
|
(columns).each do |col|
|
96
101
|
col_label=klass.human_attribute_name(col)
|
97
102
|
col_label = sort_link(options[:q], col, col_label) if defined?(:sort_link) && options.has_key?(:q)
|
98
103
|
safe_concat("<#{table_header_tag} class=\"header_cell #{col.to_s.parameterize.underscore}\">#{col_label}</#{table_header_tag}>")
|
99
104
|
end
|
100
|
-
safe_concat("<#{table_header_tag} class=\"actions\">Actions</#{table_header_tag}>")
|
105
|
+
safe_concat("<#{table_header_tag} class=\"actions\">Actions</#{table_header_tag}>") unless options[:actions].blank?
|
101
106
|
safe_concat("<#{table_header_tag} class=\"children\"></#{table_header_tag}>") if options.has_key?(:children)
|
102
107
|
safe_concat("</#{table_row_tag}>")
|
108
|
+
safe_concat("</#{table_header_wrapper_tag}>") if table_header_wrapper_tag.present?
|
109
|
+
safe_concat("<#{table_body_wrapper_tag}>") if table_body_wrapper_tag.present?
|
103
110
|
end
|
104
111
|
|
105
112
|
grid_binding.row do |klass, object, options={}|
|
@@ -200,7 +207,7 @@ module Gridion
|
|
200
207
|
table_row_tag=options[:table_row_tag]
|
201
208
|
table_cell_tag=options[:table_cell_tag]
|
202
209
|
|
203
|
-
colspans=(options[:columns]||klass.column_names).count +
|
210
|
+
colspans=(options[:columns]||klass.column_names).count + 1 + (options[:actions].blank? ? 0 : 1) #TODO: change this to number of action columns
|
204
211
|
result = ""
|
205
212
|
result << "<#{table_row_tag} class=\"paginator\">"
|
206
213
|
result << "<#{table_cell_tag} colspan=\"#{colspans}\">"
|
@@ -214,7 +221,8 @@ module Gridion
|
|
214
221
|
table_tag = options[:table_tag]
|
215
222
|
table_row_tag=options[:table_row_tag]
|
216
223
|
table_cell_tag=options[:table_cell_tag]
|
217
|
-
|
224
|
+
table_body_wrapper_tag=options[:table_body_wrapper_tag]
|
225
|
+
safe_concat("</#{table_body_wrapper_tag}>") if table_body_wrapper_tag.present?
|
218
226
|
safe_concat("</#{table_tag}>")
|
219
227
|
end
|
220
228
|
|
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.20
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2012-01-27 00:00:00.000000000Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sqlite3
|
16
|
-
requirement: &
|
16
|
+
requirement: &70112276837960 !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: *70112276837960
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: kaminari
|
27
|
-
requirement: &
|
27
|
+
requirement: &70112276837220 !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: *70112276837220
|
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: 387820204184933051
|
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: 387820204184933051
|
103
103
|
requirements: []
|
104
104
|
rubyforge_project:
|
105
105
|
rubygems_version: 1.8.10
|