Allows using Basepack data componets (grids and panels) with DataMapper.
Implements Netzke::Basepack::DataAdapters::AbstractAdapter from Basepack.
Warning: WIP (and not published on rubygems yet). Please, contribute!
Add this line to your application's Gemfile after 'netzke-basepack':
gem 'netzke-basepack-dm', git: "git://github.com/nomadcoder/netzke-basepack-dm"
And then execute:
$ bundle
After installation, you should be able to simply configure Basepack components with DataMapper models, e.g.:
MyGrid < Netzke::Basepack::GridPanel
def configure(c)
c.model = "MyDataMapperModel"
end
end
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
Initially was implemented as part of Basepack by @pschyska