<?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>Have a progress bar within a grid</title><link>https://community.appian.com/discussions/f/user-interface/13672/have-a-progress-bar-within-a-grid</link><description>Hi, I wonder if it is possible to add a progress bar like this in a grid? If so, I wonder what will determine the progress... 
 
 Also, for the graph, it is a priority graph. The dot is able to be moved by drag and drop. I wonder if there is anything</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Have a progress bar within a grid</title><link>https://community.appian.com/thread/62425?ContentTypeID=1</link><pubDate>Thu, 08 Nov 2018 17:56:52 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:87f1f161-f711-4113-a3de-1235e53abdeb</guid><dc:creator>Vincent Mark</dc:creator><description>&lt;p&gt;&lt;a href="/members/erics171"&gt;erics171&lt;/a&gt;&amp;nbsp;To answer the first question, YES it is possible to add a progress bar in an Editable Grid. The progress bar value is set in your data (a value between 0 and 100). As for the drag and drop grid, I do not believe there is an Appian out of the box (OOTB) feature available for that function.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;load(
  local!goals: {
    {
      goal: &amp;quot;Finish Graduate Project&amp;quot;,
      dueDate: date(
        2018,
        11,
        9
      ),
      progress: 50,
      status: &amp;quot;Open&amp;quot;,
      startDate: today()
    },
    {
      goal: &amp;quot;Write a blog&amp;quot;,
      dueDate: date(
        2018,
        11,
        9
      ),
      progress: 24,
      status: &amp;quot;Open&amp;quot;,
      startDate: today()
    }
  },
  a!gridLayout(
    headerCells: {
      a!gridLayoutHeaderCell(
        label: &amp;quot;Goals&amp;quot;
      ),
      a!gridLayoutHeaderCell(
        label: &amp;quot;Due Date&amp;quot;
      ),
      a!gridLayoutHeaderCell(
        label: &amp;quot;Progress&amp;quot;
      ),
      a!gridLayoutHeaderCell(
        label: &amp;quot;Status&amp;quot;
      ),
      a!gridLayoutHeaderCell(
        label: &amp;quot;Since Start&amp;quot;
      )
    },
    rows: a!forEach(
      items: local!goals,
      expression: a!gridRowLayout(
        contents: {
          a!textField(
            readOnly: true,
            value: property(
              fv!item,
              &amp;quot;goal&amp;quot;
            )
          ),
          a!textField(
            readOnly: true,
            value: datetext(
              todate(
                property(
                  fv!item,
                  &amp;quot;dueDate&amp;quot;
                )
              ),
              &amp;quot;E, dd-MM-Y&amp;quot;
            )
          ),
          a!progressBarField(
            percentage: property(
              fv!item,
              &amp;quot;progress&amp;quot;
            )
          ),
          a!textField(
            readOnly: true,
            value: property(
              fv!item,
              &amp;quot;status&amp;quot;
            )
          ),
          a!textField(
            readOnly: true,
            value: with(
              local!sinceStart: tointeger(
                today() - todate(
                  property(
                    fv!item,
                    &amp;quot;startDate&amp;quot;
                  )
                )
              ),
              if(
                local!sinceStart = 0,
                &amp;quot;Today&amp;quot;,
                local!sinceStart
              )
            )
          )
        }
      )
    )
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Have a progress bar within a grid</title><link>https://community.appian.com/thread/62424?ContentTypeID=1</link><pubDate>Thu, 08 Nov 2018 17:55:22 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:a88b95a8-ecba-436a-ab19-ff711f121f87</guid><dc:creator>hiennguyen</dc:creator><description>&lt;p&gt;Hi erics171 ,&lt;/p&gt;
&lt;p&gt;For the first question you can use the progress Bar component inside an editable grid.&lt;/p&gt;
&lt;p&gt;For the second question you can probably use the a!webContentField (Appian &amp;gt;= 18.2) and embedded a third party tool and if you need to pass dynamic data to the tool you can dynamically do it in the source URL&lt;/p&gt;
&lt;p&gt;Hope this help&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-discussions-components-files/13/pastedimage1541703322768v1.png"&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/13/pastedimage1541703322768v1.png" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Have a progress bar within a grid</title><link>https://community.appian.com/thread/62233?ContentTypeID=1</link><pubDate>Fri, 02 Nov 2018 16:28:09 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:35eff08b-f42a-4db3-b5a0-736f1ace33a8</guid><dc:creator>aaronp0001</dc:creator><description>Looks like you probably want to be using the progress bar component (&lt;a href="https://docs.appian.com/suite/help/18.3/Progress_Bar_Component.html)"&gt;docs.appian.com/.../Progress_Bar_Component.html)&lt;/a&gt;. Note that this can only be used in an EDITABLE grid and not a paging grid.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Have a progress bar within a grid</title><link>https://community.appian.com/thread/62073?ContentTypeID=1</link><pubDate>Tue, 30 Oct 2018 14:23:36 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:3d8d2547-c3dd-46fd-97df-b1fe81f5269d</guid><dc:creator>Jerry Sylveus</dc:creator><description>Hey Eric please take a look at the following links.  They should be able to help you.&lt;br /&gt;
&lt;a href="https://docs.appian.com/suite/help/18.3/Grid_Row_Component.html"&gt;docs.appian.com/.../Grid_Row_Component.html&lt;/a&gt;&lt;br /&gt;
&lt;a href="https://docs.appian.com/suite/help/18.3/Editable_Grid_Component.html"&gt;docs.appian.com/.../Editable_Grid_Component.html&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
Jerry&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>