class HtmlGrid::PassThru

Public Class Methods

new(model, session, container = nil) click to toggle source
# File lib/htmlgrid/passthru.rb, line 29
def initialize(model, session, container = nil)
  @model = model
  @session = session
  @lookandfeel = @session.lookandfeel
  init
end

Public Instance Methods

http_headers() click to toggle source
# File lib/htmlgrid/passthru.rb, line 39
def http_headers
  {}
end
init() click to toggle source
# File lib/htmlgrid/passthru.rb, line 36
def init
end
to_html(context) click to toggle source
# File lib/htmlgrid/passthru.rb, line 43
def to_html(context)
  ""
end