cancel
Showing results for 
Search instead for 
Did you mean: 

deleting the rows from the grid

Former Member
0 Kudos

Hi

I need to detele all the rows from the grid in the list tile when it is bound with an anchor. How do i do that. Please help me out.

Thanks & Regards

Namita

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

depending from the scenario there are lots of possibilities to do that.

Please tell me what is the reason for that requirement?

For example as follows

################################

dim myBO as BusinessObject

for each myBO in <myanchor>.bcol

myBO.delete

next

################################

You also could first mark those BOs for deletion and save it afterwards to avoid performance problems.

Also you could use an indicator to avoid refreshing of the grid after each single deletion.

Regards,

Wolfhard