table_builder
table_builder copied to clipboard
Rails builder for creating tables and calendars inspired by ActionView's FormBuilder.
I have added support to calendar_helper for custom CSS classes, determined by a user-defined lambda passed into the #day method. I include a test case for it, which passes.
I need to highlight specific dates in a calendar_helper (some are to be blacked out on our calendar). So I need to do something like this: ``` :target_date) do |date,...
For a pre rails 3.0 table_builder: script/plugin install git://github.com/p8/table_builder.git cd vendor/plugins/table_builder/ git checkout pre-rails-2.2 last line need change: git checkout pre-rails-3
This is what I need to achieve: :target_date,:id => !blackouts.empty? ? "blackout" : "") do |date, blackouts| %> I know that's referencing blackouts before blackouts is created. How would one...
Hi, I have a bug with the plugin when I try to show in the calendar view sale "undefined method` safe_concat '"I work with rails 2.3.8 and ruby 1.8.7. my...
This fork does though: git://github.com/jchunky/table_builder.git
So, as you can read, TableBuilder is throwing an error because it expected an Array, but found an... Array. Not sure why this is throwing an exception. Any wisdom would...
The first calendar_for example in the readme will output a misleading / inaccurate calendar, owing to the default value of first_day_of_week being 0 (i.e. Sunday). I think the doc should...
This looks great but it relies on the construction for th and td elements to be displayed. If you move the example code into a helper, e.g. ``` def example...