Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
erp5
Commits
beb0bfa9
Commit
beb0bfa9
authored
Feb 10, 2016
by
Xiaowu Zhang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_web_renderjs_ui: display all lines for listbox configured with a 'lines' value to 0
parent
62968e03
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
4 deletions
+15
-4
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_listbox_js.xml
...mplateItem/web_page_module/rjs_gadget_erp5_listbox_js.xml
+15
-4
No files found.
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_listbox_js.xml
View file @
beb0bfa9
...
...
@@ -409,6 +409,7 @@
select_list = [],\n
dataset,\n
counter,\n
limit_options,\n
queue,\n
i;\n
\n
...
...
@@ -433,11 +434,16 @@
select_list.push(field_json.column_list[i][0]);\n
}\n
select_list.push("uid");\n
if (lines === 0) {\n
limit_options = undefined;\n
} else {\n
limit_options = [begin_from, lines + 1];\n
}\n
queue = gadget.jio_allDocs({\n
// XXX Not jIO compatible, but until a better api is found...\n
"list_method_template": field_json.list_method_template,\n
"query": query_string,\n
"limit":
[begin_from, lines + 1]
,\n
"limit":
limit_options
,\n
"select_list": select_list,\n
"sort_on": gadget.props.sort_list\n
});\n
...
...
@@ -454,7 +460,12 @@
})\n
.push(function (result) {\n
var promise_list = [result];\n
counter = Math.min(result.data.total_rows, lines);\n
if (lines === 0) {\n
lines = result.data.total_rows;\n
counter = result.data.total_rows;\n
} else {\n
counter = Math.min(result.data.total_rows, lines);\n
}\n
for (i = 0; i < counter; i += 1) {\n
promise_list.push(\n
gadget.getUrlFor({\n
...
...
@@ -829,7 +840,7 @@
</item>
<item>
<key>
<string>
serial
</string>
</key>
<value>
<string>
949.
2121.3637.17544
</string>
</value>
<value>
<string>
949.
3576.234.9489
</string>
</value>
</item>
<item>
<key>
<string>
state
</string>
</key>
...
...
@@ -847,7 +858,7 @@
</tuple>
<state>
<tuple>
<float>
1455
022186.29
</float>
<float>
1455
109014.98
</float>
<string>
UTC
</string>
</tuple>
</state>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment