You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 14, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: docs/ListpresentationRequest.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,5 +10,6 @@ Name | Type | Description | Notes
10
10
**a_sColumnName** | **[String]** | An array of column names that the user chose to bee visible |
11
11
**iListpresentationRowMax** | **Number** | The maximum numbers of results to be returned |
12
12
**iListpresentationRowOffset** | **Number** | The starting element from where to start retrieving the results. For example if you started at iRowOffset=0 and asked for iRowMax=100, to get the next 100 results, you could specify iRowOffset=100&iRowMax=100, |
13
+
**bListpresentationDefault** | **Boolean** | Set to true if the user chose this Listpresentation as the default one. A single element should be set to true |
Copy file name to clipboardExpand all lines: src/eZmaxAPI/model/ListpresentationRequest.js
+29-3Lines changed: 29 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -29,24 +29,26 @@ class ListpresentationRequest {
29
29
* @param a_sColumnName {Array.<String>} An array of column names that the user chose to bee visible
30
30
* @param iListpresentationRowMax {Number} The maximum numbers of results to be returned
31
31
* @param iListpresentationRowOffset {Number} The starting element from where to start retrieving the results. For example if you started at iRowOffset=0 and asked for iRowMax=100, to get the next 100 results, you could specify iRowOffset=100&iRowMax=100,
32
+
* @param bListpresentationDefault {Boolean} Set to true if the user chose this Listpresentation as the default one. A single element should be set to true
* Returns Set to true if the user chose this Listpresentation as the default one. A single element should be set to true
182
+
* @return {Boolean}
183
+
*/
184
+
getBListpresentationDefault(){
185
+
returnthis.bListpresentationDefault;
186
+
}
187
+
188
+
/**
189
+
* Sets Set to true if the user chose this Listpresentation as the default one. A single element should be set to true
190
+
* @param {Boolean} bListpresentationDefault Set to true if the user chose this Listpresentation as the default one. A single element should be set to true
0 commit comments