<?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>Users unable to click on task description to view task details..</title><link>https://community.appian.com/discussions/f/general/17978/users-unable-to-click-on-task-description-to-view-task-details</link><description>I have created an application using the Quick Apps designer. When a user is assigned a task, he should be able to click on the task description which will take him to the task details. Then from here, he can either update the task notes or mark the task</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Users unable to click on task description to view task details..</title><link>https://community.appian.com/thread/70754?ContentTypeID=1</link><pubDate>Sat, 30 Nov 2019 07:29:45 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ddd336ca-1c8a-463c-b392-ce2f39d39834</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;Let me give you an idea of how this works.&lt;br /&gt;You have a Task Report which is getting all the tasks of a user. You need to open that report and edit it. Add a new column Task ID (tp!id) and then save it. After that you&amp;#39;ll start seeing it in QueryProcessAnalytics. Once it is visible there, you need to add a link on the column where you will pass the respective Task ID of that particular row in&amp;nbsp;a!processTaskLink(). Once you do it all, you will be able to see&amp;nbsp;a functioning link.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Users unable to click on task description to view task details..</title><link>https://community.appian.com/thread/70753?ContentTypeID=1</link><pubDate>Fri, 29 Nov 2019 13:50:43 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8b535c94-7e87-41f3-abc5-7c446cd6a1e1</guid><dc:creator>Pauly</dc:creator><description>&lt;p&gt;According to the code in IZPL_TaskReport, the field name is possibly &amp;quot;barcode&amp;quot; or &amp;quot;id&amp;quot;?&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!pagingInfo: a!pagingInfo(startIndex: 1, batchSize: 25),
  local!sendingTask: false,
  local!sendTaskSuccess,
  local!toOrFrom: &amp;quot;my tasks&amp;quot;,
  /* Retrieve data from the process report to use here */
  local!report: a!refreshVariable(
    value: a!queryProcessAnalytics(
      report: cons!IZPFL_OPEN_TASKS_REPORT,
      contextProcessModels: cons!IZPFL_SEND_TASK_MODEL,
      /* Filter for tasks assigned to the current user or sent by the current user.      *
       * c8 is the field that holds the assignee, c1 is the field that holds the sender. */
      query: a!query(
        filter: a!queryFilter(
          field: if(local!toOrFrom = &amp;quot;my tasks&amp;quot;, &amp;quot;c8&amp;quot;, &amp;quot;c1&amp;quot;),
          operator: &amp;quot;=&amp;quot;,
          value: loggedInUser()
        ),
        pagingInfo: local!pagingInfo
      )
    ),
    /* Retrieve the data each minute to display the latest tasks */
    refreshInterval: 1,
    /* Retrieves the data each time a new task is sent to display the latest tasks */
    refreshOnVarChange: local!sendTaskSuccess
  ),
  /* Retrieve record names to use on record links, because the process report only has record IDs */
  local!recordNames: a!queryEntity(
    entity: cons!IZPFL_ANOMALY_DSE,
    query: a!query(
      selection: a!querySelection(
        columns: {
          a!queryColumn(field: &amp;quot;id&amp;quot;),
          a!queryColumn(field: &amp;quot;barcode&amp;quot;)
        }
      ),
      /* Filter to only retrieve records that have open tasks assigned to the current user.  *
       * c7 is the report field that holds record IDs, and the union() call removes          *
       * duplicates from the list.                                                           */
      filter: a!queryFilter(
        field: &amp;quot;id&amp;quot;,
        operator: &amp;quot;in&amp;quot;,
        value: union(tointeger(index(local!report.data, &amp;quot;c7&amp;quot;, {})), tointeger({}))
      ),
      pagingInfo: a!pagingInfo(startIndex: 1, batchSize: -1)
    ),
    fetchTotalCount: false
  ),
  {
    /* The first half of the interface shows the controls for sending tasks */
    rule!IZPFL_SendTaskFromReport(
      sendingTask: local!sendingTask,
      sendTaskSuccess: local!sendTaskSuccess
    ),
    a!buttonLayout(
      showWhen: not(local!sendingTask),
      secondaryButtons: a!buttonWidget(
        label: &amp;quot;Send New Task&amp;quot;,
        value: true,
        saveInto: {
          local!sendingTask,
          a!save(local!sendTaskSuccess, null)
        }
      )
    ),
    /* The second half of the interface shows the tasks assigned to the current user */
    a!radioButtonField(
      labelPosition: &amp;quot;COLLAPSED&amp;quot;,
      choiceLabels: {&amp;quot;My open tasks&amp;quot;, &amp;quot;Open tasks sent by me&amp;quot;},
      choiceValues: {&amp;quot;my tasks&amp;quot;, &amp;quot;sent by me&amp;quot;},
      choiceLayout: &amp;quot;COMPACT&amp;quot;,
      value: local!toOrFrom,
      saveInto: local!toOrFrom
    ),
    a!gridField(
      labelPosition: &amp;quot;COLLAPSED&amp;quot;,
      rowHeader: 1,
      instructions: local!report.description,
      emptyGridMessage: if(
        local!toOrFrom = &amp;quot;my tasks&amp;quot;,
        &amp;quot;You have no open tasks in the 3FS-V12 application&amp;quot;,
        &amp;quot;No tasks sent by you are currently open in the 3FS-V12 application&amp;quot;
      ),
      data: local!report,
      columns: {
        a!forEach(
          items: local!report.columnConfigs,
          expression: rule!IZPFL_TaskGridColumn(
            columnConfig: fv!item,
            recordNames: local!recordNames.data,
            filterByRecord: false,
            toOrFrom: local!toOrFrom
          )
        )
      },
      pagingSaveInto: local!pagingInfo
    )
  }
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Users unable to click on task description to view task details..</title><link>https://community.appian.com/thread/70751?ContentTypeID=1</link><pubDate>Fri, 29 Nov 2019 13:40:58 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f17eb914-720a-4307-a21b-309bdaeafc40</guid><dc:creator>Pauly</dc:creator><description>&lt;p&gt;Everytime I try opening&amp;nbsp;&lt;span&gt;IZPFL_TaskGridColumn in the&amp;nbsp;Appian designer to view the code, this error immediately pops up. This is surely related to my problem, but I&amp;#39;m not sure why this problem occurs even after I&amp;#39;ve created a brand new application.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/11/IZPFL_5F00_TaskGridColumn-_2D00_-Error.JPG" /&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Users unable to click on task description to view task details..</title><link>https://community.appian.com/thread/70750?ContentTypeID=1</link><pubDate>Fri, 29 Nov 2019 13:28:14 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9597bf90-7677-495f-af57-71de1f97b489</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;Also paste the code inside the rule&amp;nbsp;IZPFL_TaskGridColumn&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Users unable to click on task description to view task details..</title><link>https://community.appian.com/thread/70749?ContentTypeID=1</link><pubDate>Fri, 29 Nov 2019 13:27:56 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:01ad0892-57b1-4521-948d-8a26caed5d85</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;What is the field name in which you are retrieving the Task ID? Ex. c1,c2,c3 ?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Users unable to click on task description to view task details..</title><link>https://community.appian.com/thread/70748?ContentTypeID=1</link><pubDate>Fri, 29 Nov 2019 13:23:42 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:acc4f9ff-dcbc-4787-b407-c5bdda5fcce5</guid><dc:creator>Pauly</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!pagingInfo: a!pagingInfo(startIndex: 1, batchSize: 5),
  /* Retrieve data from the process report to use here */
  local!report: a!queryProcessAnalytics(
    report: cons!IZPFL_OPEN_TASKS_REPORT,
    contextProcessModels: cons!IZPFL_SEND_TASK_MODEL,
    query: a!query(
      filter: a!queryFilter(
        field: &amp;quot;c7&amp;quot;,
        operator: &amp;quot;=&amp;quot;,
        value: ri!recordId
      ),
      pagingInfo: local!pagingInfo
    )
  ),
  {
    a!gridField(
    /* If there is no data, display nothing.                                       *
     * Otherwise, iterate over the column rule to show a grid of task information. */
      label: local!report.name,
      showWhen: local!report.totalCount &amp;gt; 0,
      instructions: local!report.description,
      data: local!report,
      columns: {
        a!forEach(
          items: local!report.columnConfigs,
          expression: rule!IZPFL_TaskGridColumn(
            columnConfig: fv!item,

            filterByRecord: true
          )
        )
      },
      pagingSaveInto: local!pagingInfo
    )
  }
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Users unable to click on task description to view task details..</title><link>https://community.appian.com/thread/70747?ContentTypeID=1</link><pubDate>Fri, 29 Nov 2019 13:06:44 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f2384f15-e702-419a-b45c-ca21de65caf7</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;Can you please show the code you are using for displaying grid?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Users unable to click on task description to view task details..</title><link>https://community.appian.com/thread/70746?ContentTypeID=1</link><pubDate>Fri, 29 Nov 2019 13:05:13 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:36611b38-ff4a-4c94-872b-cf544bb79d74</guid><dc:creator>Pauly</dc:creator><description>&lt;p&gt;Can you please provide a summary of how I can manually add the links on the text? Sorry, I&amp;#39;m still learning Appian.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Users unable to click on task description to view task details..</title><link>https://community.appian.com/thread/70745?ContentTypeID=1</link><pubDate>Fri, 29 Nov 2019 13:01:23 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b7fb6863-612f-4535-a581-14b3eb60ccfe</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;In that case. You can manually add the links on the text. Its not a tough task.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Users unable to click on task description to view task details..</title><link>https://community.appian.com/thread/70744?ContentTypeID=1</link><pubDate>Fri, 29 Nov 2019 12:56:34 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:93fd0614-2ec0-467b-a5ae-1f1e98867c5f</guid><dc:creator>Pauly</dc:creator><description>&lt;p&gt;Yes, I am sure. Every new task, including the tasks I&amp;#39;ve assigned to myself, has this same problem.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Users unable to click on task description to view task details..</title><link>https://community.appian.com/thread/70742?ContentTypeID=1</link><pubDate>Fri, 29 Nov 2019 12:39:28 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:42494c61-8eaf-4bba-9722-162e36576264</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;Are you sure that the task assigned is still active and not expired or completed ?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>