My requirements is to create one table and “delete icon” is one of the column of the table. When I’m adding more then 1 row that delete icon is visible. If I add only one column it is not visible. Please tell me the visibility condition. Please below Image
Anoop Krishna I was already tried this logic before post my question. But if I add 2nd row delete icon visible in 1st row also. I need that was not visible if a N numbers added. please refer Images
@SrinidhiM I was already tried this logic before post my question. But if I add 2nd row delete icon visible in 1st row also. I need that was not visible if a N numbers added. please refer Images
@Anoop Krishna. how add condition for first row(that is first page in the pagelist) delete visible =“False”. Adding 2nd row first and seconds row having delete icon. my requirement is delete icon not visible for first row if you add N rows are added still first row delete not visble
@NagarjunaS16644648 if your requirement is- “Irrespective of number of rows, first row delete icon should not show” then can add below visible condition
on Delete button add condition as .pxListSubscript != 1
@NagarjunaS16644648 Ok this logic is different. Create a new property DeleteVisible(boolean). Now when you are adding the first row(that is first page in the pagelist), set DeleteVisible=false. Afterwards when further rows are getting added, set DeleteVisible=true. And make your visible condition of delete icon —>when---->DeleteVisible==‘true’---->
@NagarjunaS16644648 for the delete icon, condition should be isdeleteVisible = true. Let’s make a small change. When 1st item is been added, you need to set IsdeleteVisible=false to the current page. For other items IsdeleteVisible=true.
So in the data transform which runs on adding item,
@NagarjunaS16644648 main part is based on logic, we will have to set isdeleteVisible onto the page. So first page will have isdeleteVisible=false and other pages will be having true