@@ -39,16 +39,13 @@ The full list of options is below. Simple options can be specified as `data-` at
- strings specify a numeral.js format if the value is a number (you must include numeral.js)
- strings specify a moment.js format if the value is a date (you must include moment.js)
-`editable`: `true` (default) / `false`. When `true`, edit and save buttons appears at end of each row.
- To bind UI input element such as dropdown, datepicker, radio etc., `editable` accepts an object with these keys.
-`input`: **Mandatory**. The type of input element to use. The valid values are checkbox, radio, range, select, and any other legal [HTML form input type](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input).
-`options`: An array of options to select from. **Mandatory** if `input` is either of `select` or `radio`
-`attrs`: To place common attributes such as max, min, placeholder, name etc., on the `input` element.
Example:
`input: 'number', attrs: {step: 10, placeholder: '0 - 1000', name: 'some_name'}` would render as
To bind UI input element such as dropdown, datepicker, radio etc., `editable` accepts an object with these keys.
-`input`: **Mandatory**. The type of input element to use. The valid values are checkbox, radio, range, select, and any other legal [HTML form input type](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input).
-`options`: An array of options to select from. **Mandatory** if `input` is either of `select` or `radio`
-`attrs`: To place common attributes such as max, min, placeholder, name etc., on the input.