diff options
author | isteven <ignatius.steven@gmail.com> | 2015-04-02 00:39:57 +0800 |
---|---|---|
committer | isteven <ignatius.steven@gmail.com> | 2015-04-02 00:39:57 +0800 |
commit | 3c2be852d5d9096cb35eff7a7c0d182f3dcee13c (patch) | |
tree | 1b3e01bb7994d3bf18f611fee2a51a21f3c5f82c | |
parent | d74ce26ebc5a8311198ffb854d2605052760bd89 (diff) | |
download | angular-multi-select-3c2be852d5d9096cb35eff7a7c0d182f3dcee13c.zip angular-multi-select-3c2be852d5d9096cb35eff7a7c0d182f3dcee13c.tar.gz angular-multi-select-3c2be852d5d9096cb35eff7a7c0d182f3dcee13c.tar.bz2 |
update config options
-rw-r--r-- | views/configs-options.htm | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/views/configs-options.htm b/views/configs-options.htm index 82d18c1..6d0af28 100644 --- a/views/configs-options.htm +++ b/views/configs-options.htm @@ -310,7 +310,7 @@ <span class="inlineTitle">Example</span>: <code><div isteven-multi-select ... on-item-click="funcClick( data )"></div></code>. </p> - <h5>on-select-all</h5> <span class="label label-warning">New! v3.0.0</span> + <h5>on-select-all</h5> <p> A $scope function to call when "select all" button is clicked. You need to define this function in your controller. @@ -322,7 +322,7 @@ <span class="inlineTitle">Example</span>: <code><div isteven-multi-select ... on-select-all="funcSelectAll()"></div></code>. </p> - <h5>on-select-none</h5> <span class="label label-warning">New! v3.0.0</span> + <h5>on-select-none</h5> <p> A $scope function to call when "select none" button is clicked. You need to define this function in your controller. @@ -334,7 +334,7 @@ <span class="inlineTitle">Example</span>: <code><div isteven-multi-select ... on-select-none="funcSelectNone()"></div></code>. </p> - <h5>on-reset</h5> <span class="label label-warning">New! v3.0.0</span> + <h5>on-reset</h5> <p> A $scope function to call when "reset" button is clicked. You need to define this function in your controller. @@ -346,7 +346,7 @@ <span class="inlineTitle">Example</span>: <code><div isteven-multi-select ... on-reset="funcReset()"></div></code>. </p> - <h5>on-clear</h5> <span class="label label-warning">New! v3.0.0</span> + <h5>on-clear</h5> <p> A $scope function to call when the "x" button in filter field is clicked. You need to define this function in your controller. @@ -358,7 +358,7 @@ <span class="inlineTitle">Example</span>: <code><div isteven-multi-select ... on-clear="funcClear()"></div></code>. </p> - <h5>on-search-change</h5> <span class="label label-warning">New! v3.0.0</span> + <h5>on-search-change</h5> <p> A $scope function to call when you type in the search field. You need to define this function in your controller. @@ -370,6 +370,16 @@ <span class="inlineTitle">Example</span>: <code><div isteven-multi-select ... on-filter-change="funcFilterChange( data )"></div></code>. </p> + <h5>output-properties</h5> <span class="label label-warning">New! v4.0.0</span> + <p> + Set what model properties you want to have in your output-model + </p> + <p> + <span class="inlineTitle">Type</span>: String. Separate multiple values by space.<br /> + <span class="inlineTitle">Default value</span>: N/A<br /> + <span class="inlineTitle">Example</span>: <code><div isteven-multi-select ... output-properties="firstName pic selected"></div></code> + </p> + </span> </div> </div> |