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?
Discussion posts and replies are publicly visible
yea its working perfectly thanks Harshit Bumb bro
here its good delete by using time function,but I want to remove it from DB then use deletefromdatastoreentity as well along with remove function? I am using but not delete in DB Level ? how we do? If possible please send a code?
to delete from DB you have to use it's identifier which is a primary key.
a!richTextIcon( icon: "times", color: "NEGATIVE", link: a!dynamicLink( saveInto: { a!deleteFromDataStoreEntities( dataToDelete: { a!entityDataIdentifiers( entity: cons!CDU_CAR_ITEM_DETAILS, identifiers: fv!item.id /*Your primary key value by using fv!identifier in case of gridfield and fv!item.{primarykeyname} in case of gridLayout*/ ) } ), a!save( ri!itemDetails, /*actual array from where we have to remove*/ remove( ri!itemDetails, fv!index ) ) } ) )