Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-webui
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
caosdb
Software
caosdb-webui
Commits
5c77282f
Commit
5c77282f
authored
2 years ago
by
florian
Browse files
Options
Downloads
Patches
Plain Diff
ENH: Add build property for ext_prop_display
parent
e3c5fc6e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!89
Release v0.10.0
,
!86
F hide properties
Pipeline
#31200
passed
2 years ago
Stage: linting
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
build.properties.d/00_default.properties
+1
-0
1 addition, 0 deletions
build.properties.d/00_default.properties
src/core/js/ext_prop_display.js
+12
-3
12 additions, 3 deletions
src/core/js/ext_prop_display.js
with
13 additions
and
3 deletions
build.properties.d/00_default.properties
+
1
−
0
View file @
5c77282f
...
...
@@ -62,6 +62,7 @@ BUILD_MODULE_EXT_RESOLVE_REFERENCES=ENABLED
BUILD_EXT_REFERENCES_CUSTOM_RESOLVER
=
caosdb_default_person_reference
BUILD_MODULE_EXT_EDITMODE_WYSIWYG_TEXT
=
DISABLED
BUILD_MODULE_EXT_PROPERTY_DISPLAY
=
DISABLED
##############################################################################
# Navbar properties
...
...
This diff is collapsed.
Click to expand it.
src/core/js/ext_prop_display.js
+
12
−
3
View file @
5c77282f
...
...
@@ -135,12 +135,21 @@ var prop_display = new function ($, getEntityName, getPropertyElements, getPrope
};
}
this
.
_unhide_all_properties
=
function
()
{
// Just show all initially hidden properties
$
(
"
.caosdb-v-hidden-property
"
).
removeClass
(
"
caosdb-v-hidden-property
"
);
}
this
.
init
=
async
function
()
{
console
.
log
(
"
initializing ext_prop_display.js
"
);
const
conf
=
await
this
.
load_config
();
const
allTypes
=
await
this
.
_getRecordTypes
(
conf
);
var
entities
=
this
.
_get_entities_in_view
();
this
.
_unhide_properties
(
entities
,
conf
,
allTypes
)
if
((
"
${BUILD_MODULE_EXT_PROPERTY_DISPLAY}
"
==
"
ENABLED
"
)
&&
conf
)
{
const
allTypes
=
await
this
.
_getRecordTypes
(
conf
);
var
entities
=
this
.
_get_entities_in_view
();
this
.
_unhide_properties
(
entities
,
conf
,
allTypes
);
}
else
{
this
.
_unhide_all_properties
();
}
}
}(
$
,
getEntityName
,
getPropertyElements
,
getPropertyName
,
getUserName
,
getUserRoles
,
log
.
getLogger
(
"
ext_prop_display
"
),
load_config
,
query
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment