Skip to content

Commit dd73091

Browse files
committed
SVY-20649 Check Solution Explorer List docu for all components
Add new lines to docu so the tooltip looks better
1 parent f92eb3e commit dd73091

3 files changed

Lines changed: 6 additions & 0 deletions

File tree

components/accordion/accordion_doc.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ var handlers = {
7070
* Return the Tab of the given index.
7171
*
7272
* @param {Number} i The 1-based index of the tab to retrieve from the accordion component.
73+
*
7374
* @return {CustomType<bootstrapcomponents-accordion.tab>} The tab object at the specified index in the accordion component.
7475
*/
7576
function getTabAt (index) {}
@@ -79,6 +80,7 @@ var handlers = {
7980
* Return true if this was sucessfull.
8081
*
8182
* @param {Number} index The 1-based position of the tab to be removed from the accordion component.
83+
*
8284
* @return {Boolean} True if the tab was successfully removed; false otherwise.
8385
*/
8486
function removeTabAt(index) {}

components/tabpanel/tabpanel_doc.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ function selectTabAt(idx) {}
100100
* Removes the tab from the given index (index is 1-based).
101101
*
102102
* @param {Number} index The 1-based index of the tab to remove.
103+
*
103104
* @return {Boolean} True if the tab was successfully removed; false otherwise.
104105
*/
105106
function removeTabAt(index) {}
@@ -114,6 +115,7 @@ function removeAllTabs() {}
114115
/**
115116
* Retrieves the tab at the specified index from the tabs model.
116117
* @param {Number} index The 1-based index of the tab to retrieve.
118+
*
117119
* @return {CustomType<bootstrapcomponents-tabpanel.tab>} The tab object at the specified index, or null if the index is out of range.
118120
*/
119121
function getTabAt(index) {

components/textbox/textbox_doc.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,9 @@ function requestFocus(mustExecuteOnFocusGainedMethod) {}
136136
/**
137137
* Reset the dataProvider to null and change the inputType of the textbox.<br/>
138138
* <b>Note:</b> the value of the dataProvider bound to this field will be automatically set to null
139+
*
139140
* @param {String} inputType allowed values for inputType are <i>text, password, email, tel, date, time, datetime-local, month, week, number, color</i>
141+
*
140142
* @example %%prefix%%%%elementName%%.inputType("tel");
141143
*
142144
* @return {Boolean} True if the inputType was successfully changed and the dataProvider was reset to null; false otherwise.

0 commit comments

Comments
 (0)