feat(columnDesc): add front description in single card widget

This commit is contained in:
Camille
2023-01-18 18:48:02 +01:00
parent 66cb283075
commit 0a90fc0c7b
3 changed files with 25 additions and 0 deletions

View File

@@ -228,6 +228,7 @@ DetailView.prototype.buildFieldDom = function(field, row) {
return dom('div.g_record_detail_el.flexitem',
kd.cssClass(function() { return 'detail_theme_field_' + self.viewSection.themeDef(); }),
dom('div.g_record_detail_label', field.label),
dom('div.g_record_detail_description', field.description),
dom('div.g_record_detail_value', field.value)
);
}
@@ -258,6 +259,8 @@ DetailView.prototype.buildFieldDom = function(field, row) {
dom.autoDispose(isCellActive),
kd.cssClass(function() { return 'detail_theme_field_' + self.viewSection.themeDef(); }),
dom('div.g_record_detail_label', kd.text(field.displayLabel)),
// TODO : show the real description
dom('div.g_record_detail_description', kd.text("Description testing")),
dom('div.g_record_detail_value',
kd.toggleClass('scissors', isCopyActive),
kd.toggleClass('record-add', row._isAddRow),