Sha256: a4ca23d5a06fac384f2c31b709cab504870e5fab0099d829f9454f76be2f9680
Contents?: true
Size: 1.07 KB
Versions: 38
Compression:
Stored size: 1.07 KB
Contents
module UiBibz::Ui::Core::Boxes::Components # Create a card list_group # # ==== Attributes # # * +content+ - Content of element # * +options+ - Options of element # * +html_options+ - Html Options of element # # ==== Options # # You can add HTML attributes using the +html_options+. # You can pass arguments in options attribute: # # ==== Signatures # # UiBibz::Ui::Core::Boxes::CardListGroup.new(content, options = nil, html_options = nil) # # UiBibz::Ui::Core::Boxes::CardListGroup.new(options = nil, html_options = nil) do # content # end # # ==== Examples # # UiBibz::Ui::Core::Boxes::CardListGroup.new.render # # UiBibz::Ui::Core::Boxes::CardListGroup.new do # 'Exemple' # end.render # class CardListGroup < UiBibz::Ui::Core::Lists::ListGroup # See UiBibz::Ui::Core::Component.initialize def initialize content = nil, options = nil, html_options = nil, &block super @lists = [] end protected def component_html_classes ["list-group-flush", "list-group"] end end end
Version data entries
38 entries across 38 versions & 1 rubygems