{"id":12856,"date":"2020-03-08T11:52:34","date_gmt":"2020-03-08T18:52:34","guid":{"rendered":"https:\/\/www.seedcode.com\/?p=12856"},"modified":"2020-03-08T11:52:34","modified_gmt":"2020-03-08T18:52:34","slug":"color-coding-filemaker-calendar","status":"publish","type":"post","link":"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/","title":{"rendered":"Color Coding Your FileMaker Calendar by Resource"},"content":{"rendered":"<p>By default, DayBack color-codes your events by their status: more precisely, by whatever you\u2019ve mapped to the status field. Coloring by status makes sense since many of DayBack\u2019s scheduling views already put events into their own columns or rows by resources.<\/p>\n<p>But if you\u2019d like to add a second color for the event\u2019s <a href=\"https:\/\/docs.dayback.com\/category\/6-resource-scheduling\" target=\"_blank\" rel=\"noopener noreferrer\">resource<\/a>, you can do that by changing the event styling in DayBack to add a second color.<\/p>\n<p>In this example, we\u2019ll add a frame around each event where the frame\u2019s color corresponds to the event\u2019s resource. (Note that the technique used here will let you base the frame on the contents of any field, not just resource.)<\/p>\n<p><a href=\"https:\/\/www.seedcode.com\/wp-content\/uploads\/2020\/03\/ColorFramesfmLG.jpg\" target=\"_blank\" rel=\"noopener\"><img fetchpriority=\"high\" decoding=\"async\" class=\"aligncenter wp-image-12859 size-full\" src=\"https:\/\/www.seedcode.com\/wp-content\/uploads\/2020\/03\/ColorFramesfmSM.jpg\" alt=\"FileMaker Calendar Color Coding\" width=\"1300\" height=\"649\" srcset=\"https:\/\/seedcode.com\/wp-content\/uploads\/2020\/03\/ColorFramesfmSM.jpg 1300w, https:\/\/seedcode.com\/wp-content\/uploads\/2020\/03\/ColorFramesfmSM-300x150.jpg 300w, https:\/\/seedcode.com\/wp-content\/uploads\/2020\/03\/ColorFramesfmSM-1024x511.jpg 1024w, https:\/\/seedcode.com\/wp-content\/uploads\/2020\/03\/ColorFramesfmSM-768x383.jpg 768w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" \/><\/a><\/p>\n<p>If you don\u2019t like the frames\u2019 width or colors, you can change that in the CSS the follows below. And if you\u2019d like to see a completely different way to display a second color, check out this post where you\u2019ll learn how to <a href=\"https:\/\/dayback.com\/color-schedule-by-resource\/\" target=\"_blank\" rel=\"noopener noreferrer\">add a header-color to each event<\/a>.<\/p>\n<h2>Add A Second Color to Your Calendar<\/h2>\n<p>Begin by changing the way your event title is mapped in DayBack. Edit the definition of the field &#8220;DBk_EventSummaryCalc&#8221; in your events table, adding this string at the very beginning of that field:<\/p>\n<blockquote><p>&lt;dbk-css class=&#8221;ResourceName&#8221;&gt;&lt;\/dbk-css&gt;<\/p><\/blockquote>\n<p>Where &#8220;ResourceName&#8221; is the contents of the field you mapped to your resource in DayBack&#8217;s source layout. The string above shows what your calculation should evaluate as; in FileMaker&#8217;s calc dialog, you&#8217;ll actually add a calculation like this in front of your existing\u00a0DBk_EventSummaryCalc&#8230;<\/p>\n<blockquote><p>&#8220;&lt;dbk-css class=&#8221; &amp; Quote ( YourResourceField ) &amp; &#8220;&gt;&lt;\/dbk-css&gt;&#8221; &amp;<\/p><\/blockquote>\n<p>That dbk-css string creates a class using the resource name of your event. Once you have a class with the resource name, add the following CSS to DayBack and you\u2019ll see a colored frame for each resource. If you haven&#8217;t changed DayBack&#8217;s CSS before, here&#8217;s an <a href=\"https:\/\/www.seedcode.com\/pmwiki\/index.php?n=DayBackForFileMaker.CSS\" target=\"_blank\" rel=\"noopener\">overview<\/a> (be sure to click through to the section on <a href=\"https:\/\/www.seedcode.com\/pmwiki\/index.php?n=DayBackForFileMaker.EditingThemes\" target=\"_blank\" rel=\"noopener\">editing themes<\/a>).<\/p>\n<p>A few things to keep in mind:<\/p>\n<ul>\n<li>You\u2019ll want to create specific CSS for each resource: you\u2019ll see three resources in the CSS below, following \/* Resource Name 1 *\/ and then\u00a0\/* Resource Name 2 *\/, etc.<\/li>\n<li>If your resource name has more than one word, like \u201cBeth Reynolds\u201d, you\u2019ll replace that space with a period in the CSS, so Beth Reynolds becomes Beth.Reynolds<\/li>\n<\/ul>\n<p>Here are some example CSS styles to create colored frames for three resources: Beth Reynolds, James Woolsey, and Peter Samuels\u2026<\/p>\n<pre class=\"prettyprint \">\/* Resource Color Frame Customizations *\/\n\n.fc-event-draggable {\n    padding-left: 0;\n}\n.fc-event-draggable .fc-event-time, .fc-event-draggable .fc-event-title {\n    padding-left: 3px;\n}\n.fc-event-draggable .fc-event-time {\n    width: 98%;\n    overflow: hidden;\n}\n.fc-event-vert.fc-event-end {\n    border-bottom-left-radius: 6px;\n    border-bottom-right-radius: 6px;\n}\n.fc-event-vert.fc-event-start {\n    border-top-left-radius: 6px;\n    border-top-right-radius: 6px;\n}\n\n\/* Resource Name 1 *\/\n.Beth.Reynolds::before {\n    position: absolute;\n    left: 0;\n    top: 0;\n    content: ' ';\n    width: 100%;\n    height: 100%;\n    z-index: -1;\n    background-color: transparent;\n\n\/* Modify Border Color and Size here *\/\n    border: 4px solid rgba(255, 70, 10, 0.8);\n\n    border-radius: 4px;\n    box-sizing: border-box;\n    -moz-box-sizing: border-box;\n    -webkit-box-sizing: border-box;\n}\n\n\n\/* Resource Name 2 *\/\n.James.Woolsey::before {\n    position: absolute;\n    left: 0;\n    top: 0;\n    content: ' ';\n    width: 100%;\n    height: 100%;\n    z-index: -1;\n    background-color: transparent;\n\n\/* Modify Border Color and Size here *\/\n    border: 4px solid rgba(33, 132, 234, 0.8);\n\n    border-radius: 4px;\n    box-sizing: border-box;\n    -moz-box-sizing: border-box;\n    -webkit-box-sizing: border-box;\n}\n\n\/* Resource Name 2 *\/\n.Peter.Samuels::before {\n    position: absolute;\n    left: 0;\n    top: 0;\n    content: ' ';\n    width: 100%;\n    height: 100%;\n    z-index: -1;\n    background-color: transparent;\n\n\/* Modify Border Color and Size here *\/\n    border: 4px solid rgba(0, 150, 100, 0.8);\n\n    border-radius: 4px;\n    box-sizing: border-box;\n    -moz-box-sizing: border-box;\n    -webkit-box-sizing: border-box;\n}\n\n\/* End Resource Color Frame Customizations *\/<\/pre>\n<p>That\u2019s it! Big thanks to KC Embrey who worked out the CSS for this mod.<\/p>\n<p>Please <a href=\"\/contact\/\" target=\"_blank\" rel=\"noopener noreferrer\">get in touch<\/a> if y have questions about adding colors or styling your calendar. You should be able to understand your calendar at a glance, and we\u2019re here to help.<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>By default, DayBack color-codes your events by their status: more precisely, by whatever you\u2019ve mapped to the status field. Coloring by status makes sense since many of DayBack\u2019s scheduling views already put events into their own columns or rows by resources. But if you\u2019d like to add a second color for the event\u2019s resource, you can do that by changing the event styling in DayBack to add a second color. In this example, we\u2019ll add a frame around each event where the frame\u2019s color corresponds to the event\u2019s resource. (Note that the technique used here will let you base the frame on the contents of any field, not just resource.) If you don\u2019t like the frames\u2019 width or colors, you can change that in the CSS the follows below. And if you\u2019d like to see a completely different way to display a second color, check out this post where you\u2019ll learn how to add a header-color to each event. Add A Second Color to Your Calendar Begin by changing the way your event title is mapped in DayBack. Edit the definition of the field &#8220;DBk_EventSummaryCalc&#8221; in your events table, adding this string at the very beginning of that field: &lt;dbk-css class=&#8221;ResourceName&#8221;&gt;&lt;\/dbk-css&gt; Where &#8220;ResourceName&#8221; is the contents of the field you mapped to your resource in DayBack&#8217;s source layout. The string above shows what your calculation should evaluate as; in FileMaker&#8217;s calc dialog, you&#8217;ll actually add a calculation like this in front of your existing\u00a0DBk_EventSummaryCalc&#8230; &#8220;&lt;dbk-css class=&#8221; &amp; Quote ( YourResourceField ) &amp; &#8220;&gt;&lt;\/dbk-css&gt;&#8221; &amp; That dbk-css string creates a class using the resource name of your event. Once you have a class with the resource name, add the following CSS to DayBack and you\u2019ll see a colored frame for each resource. If you haven&#8217;t changed DayBack&#8217;s CSS before, here&#8217;s an overview (be sure to click through to the section on editing themes). A few things to keep in mind: You\u2019ll want to create specific CSS for each resource: you\u2019ll see three resources in the CSS below, following \/* Resource Name 1 *\/ and then\u00a0\/* Resource Name 2 *\/, etc. If your resource name has more than one word, like \u201cBeth Reynolds\u201d, you\u2019ll replace that space with a period in the CSS, so Beth Reynolds becomes Beth.Reynolds Here are some example CSS styles to create colored frames for three resources: Beth Reynolds, James Woolsey, and Peter Samuels\u2026 \/* Resource Color Frame Customizations *\/ .fc-event-draggable { padding-left: 0; } .fc-event-draggable .fc-event-time, .fc-event-draggable .fc-event-title { padding-left: 3px; } .fc-event-draggable .fc-event-time { width: 98%; overflow: hidden; } .fc-event-vert.fc-event-end { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; } .fc-event-vert.fc-event-start { border-top-left-radius: 6px; border-top-right-radius: 6px; } \/* Resource Name 1 *\/ .Beth.Reynolds::before { position: absolute; left: 0; top: 0; content: &#8216; &#8216;; width: 100%; height: 100%; z-index: -1; background-color: transparent; \/* Modify Border Color and Size here *\/ border: 4px solid rgba(255, 70, 10, 0.8); border-radius: 4px; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; } \/* Resource Name 2 *\/ .James.Woolsey::before { position: absolute; left: 0; top: 0; content: &#8216; &#8216;; width: 100%; height: 100%; z-index: -1; background-color: transparent; \/* Modify Border Color and Size here *\/ border: 4px solid rgba(33, 132, 234, 0.8); border-radius: 4px; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; } \/* Resource Name 2 *\/ .Peter.Samuels::before { position: absolute; left: 0; top: 0; content: &#8216; &#8216;; width: 100%; height: 100%; z-index: -1; background-color: transparent; \/* Modify Border Color and Size here *\/ border: 4px solid rgba(0, 150, 100, 0.8); border-radius: 4px; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; } \/* End Resource Color Frame Customizations *\/ That\u2019s it! Big thanks to KC Embrey who worked out the CSS for this mod. Please get in touch if y have questions about adding colors or styling your calendar. You should be able to understand your calendar at a glance, and we\u2019re here to help. &nbsp;<\/p>\n","protected":false},"author":1,"featured_media":12857,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[8,35],"class_list":["post-12856","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-calendar","tag-resource-scheduling"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Color Coding Your FileMaker Calendar by Resource - SeedCode<\/title>\n<meta name=\"description\" content=\"Color-coding your calendar lets you understand you schedule at a glance. Customize DayBack to color events any two fields in your event.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Color Coding Your FileMaker Calendar by Resource - SeedCode\" \/>\n<meta property=\"og:description\" content=\"Color-coding your calendar lets you understand you schedule at a glance. Customize DayBack to color events any two fields in your event.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/\" \/>\n<meta property=\"og:site_name\" content=\"SeedCode\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/seedcoder\" \/>\n<meta property=\"article:published_time\" content=\"2020-03-08T18:52:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/seedcode.com\/wp-content\/uploads\/2020\/03\/ColorFramesDetailLG.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1341\" \/>\n\t<meta property=\"og:image:height\" content=\"750\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"seedcode\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/seedcode.com\/wp-content\/uploads\/2020\/03\/ColorFramesDetailLG.jpg\" \/>\n<meta name=\"twitter:creator\" content=\"@dayback\" \/>\n<meta name=\"twitter:site\" content=\"@dayback\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"seedcode\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/\"},\"author\":{\"name\":\"seedcode\",\"@id\":\"https:\/\/seedcode.com\/#\/schema\/person\/af42f3f8cbfc8652fb0ffbb3f46f260f\"},\"headline\":\"Color Coding Your FileMaker Calendar by Resource\",\"datePublished\":\"2020-03-08T18:52:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/\"},\"wordCount\":479,\"commentCount\":4,\"publisher\":{\"@id\":\"https:\/\/seedcode.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/seedcode.com\/wp-content\/uploads\/2020\/03\/ColorFrame-Feat-FM.png\",\"keywords\":[\"Calendar\",\"Resource Scheduling\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/\",\"url\":\"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/\",\"name\":\"Color Coding Your FileMaker Calendar by Resource - SeedCode\",\"isPartOf\":{\"@id\":\"https:\/\/seedcode.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/seedcode.com\/wp-content\/uploads\/2020\/03\/ColorFrame-Feat-FM.png\",\"datePublished\":\"2020-03-08T18:52:34+00:00\",\"description\":\"Color-coding your calendar lets you understand you schedule at a glance. Customize DayBack to color events any two fields in your event.\",\"breadcrumb\":{\"@id\":\"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/#primaryimage\",\"url\":\"https:\/\/seedcode.com\/wp-content\/uploads\/2020\/03\/ColorFrame-Feat-FM.png\",\"contentUrl\":\"https:\/\/seedcode.com\/wp-content\/uploads\/2020\/03\/ColorFrame-Feat-FM.png\",\"width\":319,\"height\":325},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/seedcode.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Color Coding Your FileMaker Calendar by Resource\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/seedcode.com\/#website\",\"url\":\"https:\/\/seedcode.com\/\",\"name\":\"SeedCode\",\"description\":\"Build the Software You&#039;ve Always Wanted\",\"publisher\":{\"@id\":\"https:\/\/seedcode.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/seedcode.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/seedcode.com\/#organization\",\"name\":\"SeedCode\",\"url\":\"https:\/\/seedcode.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/seedcode.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/seedcode.com\/wp-content\/uploads\/2022\/12\/SeedCodeLogo.png\",\"contentUrl\":\"https:\/\/seedcode.com\/wp-content\/uploads\/2022\/12\/SeedCodeLogo.png\",\"width\":595,\"height\":189,\"caption\":\"SeedCode\"},\"image\":{\"@id\":\"https:\/\/seedcode.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/seedcoder\",\"https:\/\/x.com\/dayback\",\"https:\/\/www.linkedin.com\/company\/seedcode\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/seedcode.com\/#\/schema\/person\/af42f3f8cbfc8652fb0ffbb3f46f260f\",\"name\":\"seedcode\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/seedcode.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f0c386c5b845ee7fe111b36b2d87e983811f1f549682de9597a934b9dfd45469?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f0c386c5b845ee7fe111b36b2d87e983811f1f549682de9597a934b9dfd45469?s=96&d=mm&r=g\",\"caption\":\"seedcode\"},\"sameAs\":[\"https:\/\/seedcode.com\"],\"url\":\"https:\/\/seedcode.com\/author\/seedcode\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Color Coding Your FileMaker Calendar by Resource - SeedCode","description":"Color-coding your calendar lets you understand you schedule at a glance. Customize DayBack to color events any two fields in your event.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/","og_locale":"en_US","og_type":"article","og_title":"Color Coding Your FileMaker Calendar by Resource - SeedCode","og_description":"Color-coding your calendar lets you understand you schedule at a glance. Customize DayBack to color events any two fields in your event.","og_url":"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/","og_site_name":"SeedCode","article_publisher":"https:\/\/www.facebook.com\/seedcoder","article_published_time":"2020-03-08T18:52:34+00:00","og_image":[{"width":1341,"height":750,"url":"https:\/\/seedcode.com\/wp-content\/uploads\/2020\/03\/ColorFramesDetailLG.jpg","type":"image\/jpeg"}],"author":"seedcode","twitter_card":"summary_large_image","twitter_image":"https:\/\/seedcode.com\/wp-content\/uploads\/2020\/03\/ColorFramesDetailLG.jpg","twitter_creator":"@dayback","twitter_site":"@dayback","twitter_misc":{"Written by":"seedcode","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/#article","isPartOf":{"@id":"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/"},"author":{"name":"seedcode","@id":"https:\/\/seedcode.com\/#\/schema\/person\/af42f3f8cbfc8652fb0ffbb3f46f260f"},"headline":"Color Coding Your FileMaker Calendar by Resource","datePublished":"2020-03-08T18:52:34+00:00","mainEntityOfPage":{"@id":"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/"},"wordCount":479,"commentCount":4,"publisher":{"@id":"https:\/\/seedcode.com\/#organization"},"image":{"@id":"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/#primaryimage"},"thumbnailUrl":"https:\/\/seedcode.com\/wp-content\/uploads\/2020\/03\/ColorFrame-Feat-FM.png","keywords":["Calendar","Resource Scheduling"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/seedcode.com\/color-coding-filemaker-calendar\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/","url":"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/","name":"Color Coding Your FileMaker Calendar by Resource - SeedCode","isPartOf":{"@id":"https:\/\/seedcode.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/#primaryimage"},"image":{"@id":"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/#primaryimage"},"thumbnailUrl":"https:\/\/seedcode.com\/wp-content\/uploads\/2020\/03\/ColorFrame-Feat-FM.png","datePublished":"2020-03-08T18:52:34+00:00","description":"Color-coding your calendar lets you understand you schedule at a glance. Customize DayBack to color events any two fields in your event.","breadcrumb":{"@id":"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/seedcode.com\/color-coding-filemaker-calendar\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/#primaryimage","url":"https:\/\/seedcode.com\/wp-content\/uploads\/2020\/03\/ColorFrame-Feat-FM.png","contentUrl":"https:\/\/seedcode.com\/wp-content\/uploads\/2020\/03\/ColorFrame-Feat-FM.png","width":319,"height":325},{"@type":"BreadcrumbList","@id":"https:\/\/seedcode.com\/color-coding-filemaker-calendar\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/seedcode.com\/"},{"@type":"ListItem","position":2,"name":"Color Coding Your FileMaker Calendar by Resource"}]},{"@type":"WebSite","@id":"https:\/\/seedcode.com\/#website","url":"https:\/\/seedcode.com\/","name":"SeedCode","description":"Build the Software You&#039;ve Always Wanted","publisher":{"@id":"https:\/\/seedcode.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/seedcode.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/seedcode.com\/#organization","name":"SeedCode","url":"https:\/\/seedcode.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/seedcode.com\/#\/schema\/logo\/image\/","url":"https:\/\/seedcode.com\/wp-content\/uploads\/2022\/12\/SeedCodeLogo.png","contentUrl":"https:\/\/seedcode.com\/wp-content\/uploads\/2022\/12\/SeedCodeLogo.png","width":595,"height":189,"caption":"SeedCode"},"image":{"@id":"https:\/\/seedcode.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/seedcoder","https:\/\/x.com\/dayback","https:\/\/www.linkedin.com\/company\/seedcode\/"]},{"@type":"Person","@id":"https:\/\/seedcode.com\/#\/schema\/person\/af42f3f8cbfc8652fb0ffbb3f46f260f","name":"seedcode","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/seedcode.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f0c386c5b845ee7fe111b36b2d87e983811f1f549682de9597a934b9dfd45469?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f0c386c5b845ee7fe111b36b2d87e983811f1f549682de9597a934b9dfd45469?s=96&d=mm&r=g","caption":"seedcode"},"sameAs":["https:\/\/seedcode.com"],"url":"https:\/\/seedcode.com\/author\/seedcode\/"}]}},"_links":{"self":[{"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/posts\/12856","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/comments?post=12856"}],"version-history":[{"count":0,"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/posts\/12856\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/media\/12857"}],"wp:attachment":[{"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/media?parent=12856"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/categories?post=12856"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/tags?post=12856"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}