Appian Community and Appian Academy are being upgraded. From July 24–August 3, the Appian Community will be in read-only mode. During this time, the site will be read-only and user registration will be disabled. We apologize for any inconvenience this may cause, but a more secure, stable, and performant Community experience is coming soon!

The new Appian Community launches August 3, followed by Appian Academy on August 7. During the migration, Appian Community Edition, Appian Academy, Documentation, Certifications, Instructor-led Customer Training, Partner Sales Training & Accreditation, and Forum (for Appian Partners and Customers only) will remain available.

How to remove pagination in editable grid


load(
  local!carriers: rule!CAS_getPayeesAndCarriers(
    getOnlyCarriers: true
  ),
  a!gridField_19r1(
  totalCount: ri!processData.totalCount,
  columns: {
    a!gridTextColumn(
      label: "Last Updated",
      field: "c12",
      data: a!forEach(
        items: index(ri!processData.data, "c12", {}),
        expression: todate(fv!item)
      )
    ),
    a!gridTextColumn(
      label: "Assignee",
      field: "c13",
      data: a!forEach(
        items: index(ri!processData.data, "c13", {}),
        expression: if(
          isusernametaken(tostring(index(fv!item, 2, null))),
          rule!CAS_formatUserName(userName: index(fv!item, 2, null)),
          null
          
        )
      )
    ),
    a!gridTextColumn(
      label: "Carrier Policy ID",
      field: "c6",
      data: index(ri!processData.data, "c6", {}),
      links: a!forEach(
        items: index(ri!processData.data, "c5", {}),
        expression: a!processTaskLink(
          task: fv!item
        )
      )
    )
    ,
    a!gridTextColumn(
      label: "Policy Status",
      field: "c11",
      data: a!forEach(
        items: ri!processData.data,
        expression: concat(
          rule!CAS_getReferenceValueByRefId(
            refData: ri!refData,
            referenceId: index(fv!item, "c11", null)
          )
        )
      )
    ),
    a!gridTextColumn(
      label: "Workflow Status",
      field: "c7",
      data: a!forEach(
        items: ri!processData.data,
        expression: rule!CAS_getReferenceValueByRefId(
            refData: ri!refData,
            referenceId: index(fv!item, "c7", null)
          )
      )
    ),
    a!gridTextColumn(
      label: "Customer",
      field: "c10",
      data: index(ri!processData.data, "c10", {})
    ),
    a!gridTextColumn(
      label: "Carrier",
      field: "c8",
      data: a!forEach(
        items: index(ri!processData.data, "c8", {}),
        expression: index(rule!GBL_filterCdtByFieldSingleValue(
          cdt: local!carriers,
          field: "id",
          value: fv!item
        ), "name", null)
      )
    ),
    a!gridTextColumn(
      label: "Coverage Code",
      field: "c9",
      data: a!forEach(
        items: index(ri!processData.data, "c9", {}),
        expression: rule!CAS_getReferenceValueByRefId(
          refData: ri!refData,
          referenceId: fv!item
        )
      )
    )
  },
  value: ri!pagingInfo
)
)

Just want to check if there's any way to remove or hide the pagination in a!gridField_19r1 function. See code. Thanks!

  Discussion posts and replies are publicly visible

Parents Reply Children