Announcement

Collapse
No announcement yet.

color field?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • color field?

    Is it possible the highlighting of the field?

  • #2
    No, needs some customization.

    Comment


    • #3
      You may add some jquery: eg coloring the status fields in the Knowledge Base

      Code:
       $('.cell-status:contains("Published")').css('background', 'yellow');
      $('.cell-status:contains("Draft")').css('color', 'red');
      Will get you

      Click image for larger version

Name:	2016_387.jpg
Views:	329
Size:	6.3 KB
ID:	22162

      Comment


      • #4
        It's possible to do it writing metadata.
        Example:
        application/Espo/Modules/Crm/Resources/metadata/entityDefs/Lead.json
        'status' field, 'style' parameter

        Comment

        Working...
        X