{{!--
  Binding through get-helper checked=(get this "value") is a way to achieve one way binding.
  It makes value immutable within component, what is major rule of "Data Down Actions Up (DDAU)" pattern:
  component should display data, but not mutate it by its own.
--}}
{{input
  class=flexberryClassNames.checkboxInput
  type="checkbox"
  checked=(get this "value")
}}
<label class={{flexberryClassNames.checkboxCaption}}>
  {{caption}}
</label>
