Selecting the whole row at a time

Hi everyone,

I have a query in a grid layout, where in if a user selects the check box the corresponding whole row should be selected and can then can be deleted. Can anyone please guide me how to achieve this?

Thanks,

Shubham Yadav

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer

    I'm unsure what you mean by "whole row" - when you use selection in an Editable Grid the result of selection is to save the value of the provided identifier into whatever target variable you want, and then you can do anything you want with that (such as pressing a button / clicking a link to remove the row from your form by removing that row of data from your CDT array, or if it's already in the database, slate its primary key ID for row-deletion using a subsequent Delete from DSE node).  The official Appian Documentation has quite a bit of guidance on this.

Reply
  • 0
    Certified Lead Developer

    I'm unsure what you mean by "whole row" - when you use selection in an Editable Grid the result of selection is to save the value of the provided identifier into whatever target variable you want, and then you can do anything you want with that (such as pressing a button / clicking a link to remove the row from your form by removing that row of data from your CDT array, or if it's already in the database, slate its primary key ID for row-deletion using a subsequent Delete from DSE node).  The official Appian Documentation has quite a bit of guidance on this.

Children