comments fixes for docs
This commit is contained in:
src
@ -301,7 +301,7 @@ Editableform is linked with one of input types, e.g. 'text' or 'select'.
|
|||||||
/* see also defaults for input */
|
/* see also defaults for input */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Type of input. Can be <code>text|textarea|select|date</code>
|
Type of input. Can be <code>text|textarea|select|date|checklist</code>
|
||||||
|
|
||||||
@property type
|
@property type
|
||||||
@type string
|
@type string
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
/**
|
/**
|
||||||
Checklist input. Internally value stored as array.
|
List of checkboxes. Internally value stored as javascript array.
|
||||||
|
|
||||||
@class checklist
|
@class checklist
|
||||||
@extends list
|
@extends list
|
||||||
@final
|
@final
|
||||||
@example
|
@example
|
||||||
<a href="#" id="status" data-type="checklist" data-pk="1" data-url="/post" data-original-title="Select options"></a>
|
<a href="#" id="options" data-type="checklist" data-pk="1" data-url="/post" data-original-title="Select options"></a>
|
||||||
<script>
|
<script>
|
||||||
$(function(){
|
$(function(){
|
||||||
$('#options').editable({
|
$('#options').editable({
|
||||||
@ -122,7 +122,7 @@ $(function(){
|
|||||||
|
|
||||||
@property viewseparator
|
@property viewseparator
|
||||||
@type string
|
@type string
|
||||||
@default ', '
|
@default '<br>'
|
||||||
**/
|
**/
|
||||||
viewseparator: '<br>',
|
viewseparator: '<br>',
|
||||||
/**
|
/**
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/**
|
/**
|
||||||
jQuery UI Datepicker.
|
jQuery UI Datepicker.
|
||||||
Description and examples: http://jqueryui.com/datepicker.
|
Description and examples: http://jqueryui.com/datepicker.
|
||||||
Do not use it together with bootstrap-datepicker.
|
This input is also accessible as **date** type. Do not use it together with __bootstrap-datepicker__ as both apply <code>$().datepicker()</code> method.
|
||||||
|
|
||||||
@class dateui
|
@class dateui
|
||||||
@extends abstract
|
@extends abstract
|
||||||
|
@ -225,7 +225,7 @@ List - abstract class for inputs that have source option loaded from js array or
|
|||||||
/**
|
/**
|
||||||
Source data for dropdown list. If string - considered ajax url to load items. Otherwise should be an array.
|
Source data for dropdown list. If string - considered ajax url to load items. Otherwise should be an array.
|
||||||
Array format is: <code>[{value: 1, text: "text"}, {...}]</code><br>
|
Array format is: <code>[{value: 1, text: "text"}, {...}]</code><br>
|
||||||
For compability it also supports format <code>{value1: text1, value2: text2 ...}</code> but it does not guarantee elements order.
|
For compability it also supports format <code>{value1: "text1", value2: "text2" ...}</code> but it does not guarantee elements order.
|
||||||
|
|
||||||
@property source
|
@property source
|
||||||
@type string|array|object
|
@type string|array|object
|
||||||
|
Reference in New Issue
Block a user