color field?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • rucrm
    Member
    • May 2016
    • 84

    color field?

    Is it possible the highlighting of the field?
  • yuri
    Member
    • Mar 2014
    • 8510

    #2
    No, needs some customization.
    If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

    Comment

    • rinorway
      Senior Member
      • Feb 2016
      • 179

      #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:	416
Size:	6.3 KB
ID:	22162

      Comment

      • yuri
        Member
        • Mar 2014
        • 8510

        #4
        It's possible to do it writing metadata.
        Example:
        application/Espo/Modules/Crm/Resources/metadata/entityDefs/Lead.json
        'status' field, 'style' parameter
        If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

        Comment

        Working...