<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>How to change colour of Grid Layout Label to match with the UI Header Button Layout colour?</title><link>https://community.appian.com/discussions/f/user-interface/12538/how-to-change-colour-of-grid-layout-label-to-match-with-the-ui-header-button-layout-colour</link><description>How to change colour of Grid Layout Label to match with the UI Header Button Layout colour?</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: How to change colour of Grid Layout Label to match with the UI Header Button Layout colour?</title><link>https://community.appian.com/thread/68583?ContentTypeID=1</link><pubDate>Tue, 06 Aug 2019 17:11:06 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c39ec4f8-f8ee-4dff-8745-51920a0888af</guid><dc:creator>vimalkumars</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;a class="internal-link view-user-profile" href="/members/naidubabut0001"&gt;naidubabut0001&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/a&gt;,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Grid Instruction color cannot be changed but you can use the Rich Textfield to achieve a similar UI.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;Here is the sample code&amp;nbsp;which might be helpful.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!items: {
    {
      item: &amp;quot;Item 1&amp;quot;,
      qty: 1,
      unitPrice: 10
    },
    {
      item: &amp;quot;Item 2&amp;quot;,
      qty: 2,
      unitPrice: 20
    }
  },
  {
    a!richTextDisplayField(
      label: &amp;quot;Products&amp;quot;,
      value: a!richTextItem(
        text: {
          &amp;quot;Update the item name, quantity, or unit price.&amp;quot;
        },
        color: &amp;quot;#6aa84f&amp;quot;
      )
    ),
    a!gridLayout(
      labelPosition: &amp;quot;COLLAPSED&amp;quot;,
      headerCells: {
        a!gridLayoutHeaderCell(
          label: &amp;quot;Item&amp;quot;
        ),
        a!gridLayoutHeaderCell(
          label: &amp;quot;Qty&amp;quot;,
          align: &amp;quot;RIGHT&amp;quot;
        ),
        a!gridLayoutHeaderCell(
          label: &amp;quot;Unit Price&amp;quot;,
          align: &amp;quot;RIGHT&amp;quot;
        ),
        a!gridLayoutHeaderCell(
          label: &amp;quot;Total&amp;quot;,
          align: &amp;quot;RIGHT&amp;quot;
        )
      },
      rows: {
        a!gridRowLayout(
          contents: {
            a!textField(
              value: local!items[1].item,
              saveInto: local!items[1].item
            ),
            a!integerField(
              value: local!items[1].qty,
              saveInto: local!items[1].qty,
              align: &amp;quot;RIGHT&amp;quot;
            ),
            a!floatingPointField(
              value: local!items[1].unitPrice,
              saveInto: local!items[1].unitPrice,
              align: &amp;quot;RIGHT&amp;quot;
            ),
            a!textField(
              value: dollar(
                tointeger(
                  local!items[1].qty
                ) * todecimal(
                  local!items[1].unitPrice
                )
              ),
              readOnly: true,
              align: &amp;quot;RIGHT&amp;quot;
            )
          }
        ),
        a!gridRowLayout(
          contents: {
            a!textField(
              value: local!items[2].item,
              saveInto: local!items[2].item
            ),
            a!integerField(
              value: local!items[2].qty,
              saveInto: local!items[2].qty,
              align: &amp;quot;RIGHT&amp;quot;
            ),
            a!floatingPointField(
              value: local!items[2].unitPrice,
              saveInto: local!items[2].unitPrice,
              align: &amp;quot;RIGHT&amp;quot;
            ),
            a!textField(
              value: dollar(
                tointeger(
                  local!items[2].qty
                ) * todecimal(
                  local!items[2].unitPrice
                )
              ),
              readOnly: true,
              align: &amp;quot;RIGHT&amp;quot;
            )
          }
        )
      },
      rowHeader: 1
    )
  }
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to change colour of Grid Layout Label to match with the UI Header Button Layout colour?</title><link>https://community.appian.com/thread/68548?ContentTypeID=1</link><pubDate>Mon, 05 Aug 2019 11:46:46 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:400154d6-dc14-44ef-ada0-d894207ac3f4</guid><dc:creator>naidubabut0001</dc:creator><description>&lt;p&gt;Actually , I need to change the font colour of instruction value in grid layout &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to change colour of Grid Layout Label to match with the UI Header Button Layout colour?</title><link>https://community.appian.com/thread/68547?ContentTypeID=1</link><pubDate>Mon, 05 Aug 2019 11:46:04 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:258dadad-9f16-4228-9913-ec03553fb0e5</guid><dc:creator>naidubabut0001</dc:creator><description>&lt;p&gt;Can you please suggest me on how to add a rich text component &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to change colour of Grid Layout Label to match with the UI Header Button Layout colour?</title><link>https://community.appian.com/thread/56091?ContentTypeID=1</link><pubDate>Fri, 01 Jun 2018 12:48:56 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:739d61bc-273b-446f-a692-6a70ff5f4b8f</guid><dc:creator>davel001150</dc:creator><description>Would UI Header Button Layout Color be &amp;quot;Accent&amp;quot; color?&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to change colour of Grid Layout Label to match with the UI Header Button Layout colour?</title><link>https://community.appian.com/thread/56077?ContentTypeID=1</link><pubDate>Fri, 01 Jun 2018 08:51:40 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:74593a67-75ea-4ff8-9ed7-5c3948ac2d3b</guid><dc:creator>anushas0002</dc:creator><description>Thanks All&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to change colour of Grid Layout Label to match with the UI Header Button Layout colour?</title><link>https://community.appian.com/thread/56063?ContentTypeID=1</link><pubDate>Fri, 01 Jun 2018 06:49:41 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:35e72010-74d2-45be-bfec-a051e7da83a1</guid><dc:creator>TJ</dc:creator><description>I agree with other practitioners and currently there seems only one way i.e. by adding a rich text component.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to change colour of Grid Layout Label to match with the UI Header Button Layout colour?</title><link>https://community.appian.com/thread/56060?ContentTypeID=1</link><pubDate>Fri, 01 Jun 2018 06:07:10 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:102c1df1-8808-48e6-98b4-2f6b74177a66</guid><dc:creator>deviratnamv</dc:creator><description>Hi Anusha,&lt;br /&gt;
&lt;br /&gt;
I agree with vimal kumar, might be below code will help for you.&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
a!richTextDisplayField(&lt;br /&gt;
  label: &amp;quot;&amp;quot;,&lt;br /&gt;
  value: a!richTextItem(&lt;br /&gt;
    text: &amp;quot;Grid Label&amp;quot;,&lt;br /&gt;
    style: &amp;quot;POSITIVE&amp;quot;&lt;br /&gt;
  )&lt;br /&gt;
  &lt;br /&gt;
),&lt;br /&gt;
a!gridLayout(&lt;br /&gt;
  label: &amp;quot;&amp;quot;,&lt;br /&gt;
  labelPosition: &amp;quot;ABOVE&amp;quot;,&lt;br /&gt;
  headerCells: {&lt;br /&gt;
    a!gridLayoutHeaderCell(label: &amp;quot;Header Cell&amp;quot;)&lt;br /&gt;
  },&lt;br /&gt;
  columnConfigs: {},&lt;br /&gt;
  rows: {},&lt;br /&gt;
  selectionSaveInto: {},&lt;br /&gt;
  validations: {},&lt;br /&gt;
  shadeAlternateRows: true&lt;br /&gt;
)&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;br /&gt;
Devi&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to change colour of Grid Layout Label to match with the UI Header Button Layout colour?</title><link>https://community.appian.com/thread/55764?ContentTypeID=1</link><pubDate>Mon, 28 May 2018 00:15:19 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:de67cab8-727e-4e01-ae6f-6db0f549d4c5</guid><dc:creator>vimalkumars</dc:creator><description>Hi anushas0002,&lt;br /&gt;
&lt;br /&gt;
Grid Layout Label color cannot be changed. &lt;br /&gt;
May be you can use the rich text component to show the text based with the available styles above the grid and pass empty value for the grid label - &lt;a href="https://docs.appian.com/suite/help/18.1/Rich_Text_Component.html"&gt;docs.appian.com/.../Rich_Text_Component.html&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Also, I am not able get the &amp;quot;UI Header Button Layout colour&amp;quot;.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>