0.0.2 • Published 8 years ago

ember-cli-data-widgets v0.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

Ember-cli-data-widgets

Ember cli addon for providing rich data widgets

Prerequisites

  • Bootstrap css must be included !

Components

Tester

No Functions only for test renders a test message

{{dw-tester}}

Form

Widgets for Form Elements

Includes

  • Form dw-form
  • Input dw-form-input
  • Submit dw-form-submit

Example

{{#dw-form onsubmit=(action "onsubmit")}}
  {{dw-form-input type="text"
                 label="test text"
                 validator=(action "no1Validator")
                 errorMsg="No 1 is allowed"
                 name="testText"
                 mandatory=true
                 errorMandatory="Wert wird benoetigt"}}
  {{dw-form-submit text="absenden"}}
{{/dw-form}}