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 delete a entire row in readOnly grid?

Certified Associate Developer

how to delete a entire row in readonly grid?

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer

    For this, you can create an extra column in gridfield and in that create a icon and use dynamic link to remove the row from the variable and if you want to remove it from DB then use deletefromdatastoreentity as well along with remove function.

  • 0
    Certified Associate Developer
    in reply to deepakg681722

    please check code once,please verify index position

    a!gridColumn(

                      label: "",

                      value: a!richTextDisplayField(

                        value: a!richTextIcon(

                          icon:"trash-o",

                          link:a!dynamicLink(

                            value: 'type!{urn:com:appian:types:HR}hrcandidatedetails'(),

                            saveInto:a!save(ri!hrcandidatedetails,remove(ri!hrcandidatedetails,fv!row)),

                          )

                      )

                    ),

                    ),

Reply
  • 0
    Certified Associate Developer
    in reply to deepakg681722

    please check code once,please verify index position

    a!gridColumn(

                      label: "",

                      value: a!richTextDisplayField(

                        value: a!richTextIcon(

                          icon:"trash-o",

                          link:a!dynamicLink(

                            value: 'type!{urn:com:appian:types:HR}hrcandidatedetails'(),

                            saveInto:a!save(ri!hrcandidatedetails,remove(ri!hrcandidatedetails,fv!row)),

                          )

                      )

                    ),

                    ),

Children