mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) Implementing row conditional formatting
Summary: Conditional formatting can now be used for whole rows. Related fix: - Font styles weren't applicable for summary columns. - Checkbox and slider weren't using colors properly Test Plan: Existing and new tests Reviewers: paulfitz, georgegevoian Reviewed By: georgegevoian Differential Revision: https://phab.getgrist.com/D3547
This commit is contained in:
@@ -15,7 +15,7 @@ import six
|
||||
|
||||
import actions
|
||||
|
||||
SCHEMA_VERSION = 31
|
||||
SCHEMA_VERSION = 32
|
||||
|
||||
def make_column(col_id, col_type, formula='', isFormula=False):
|
||||
return {
|
||||
@@ -194,6 +194,8 @@ def schema_create_actions():
|
||||
make_column("linkTargetColRef", "Ref:_grist_Tables_column"),
|
||||
# embedId is deprecated as of version 12. Do not remove or reuse.
|
||||
make_column("embedId", "Text"),
|
||||
# Points to formula columns that hold conditional formatting rules for this view section.
|
||||
make_column("rules", "RefList:_grist_Tables_column"),
|
||||
]),
|
||||
# The fields of a view section.
|
||||
actions.AddTable("_grist_Views_section_field", [
|
||||
|
||||
Reference in New Issue
Block a user