Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
qfq
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
typo3
qfq
Merge requests
!144
F8270 more button for columns with long text AND add QBAR to for qfq | escape
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
F8270 more button for columns with long text AND add QBAR to for qfq | escape
F8270moreButtonForColumnsWithLongText
into
master
Overview
0
Commits
8
Pipelines
3
Changes
6
Merged
Marc Egger
requested to merge
F8270moreButtonForColumnsWithLongText
into
master
5 years ago
Overview
0
Commits
8
Pipelines
3
Changes
2
Expand
1
0
Merge request reports
Compare
version 1
version 2
e535ecd8
5 years ago
version 1
0055945d
5 years ago
master (base)
and
version 2
latest version
75dd8721
8 commits,
5 years ago
version 2
e535ecd8
7 commits,
5 years ago
version 1
0055945d
6 commits,
5 years ago
Show latest version
2 files
+
34
−
29
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
extension/Documentation/Manual.rst
+
34
−
0
Options
@@ -6470,6 +6470,40 @@ Example::
CONCAT('y|F:', p.pathFileName,'|t:File (link)|o:', p.pathFileName) AS _link
FROM Person AS p
.. _special-sql-functions:
Special SQL Functions
---------------------
.. _qbar-qscape-qfq-delimiter:
QBAR: Escape qfq Delimiter
^^^^^^^^^^^^^^^^^^^^^^^^^^
The SQL function QBAR(text) replaces "|" with "\\|" in `text` to prevent conflicts with the qfq special column notation.
Example::
10.sql = SELECT CONCAT('T:fileadmin/', QBAR(p.name), '.pdf') AS _thumbnail
FROM Person AS p
.. _qmore-truncate-long-text:
QMORE: Truncate Long Text
^^^^^^^^^^^^^^^^^^^^^^^^^^
The SQL function QMORE(text, n) truncates `text` if it is longer than `n` characters and adds a "more.." button. If the "more..."
button is clicked, the whole text is displayed.
Example::
10.sql = SELECT QMORE("This is a text which is longer than 10 characters", 10)
Output:
This is a `more..`
.. _download:
Download
Loading