strange tabpanel record delete behaviour

Servoy 4.1x
Mac OSX

Client just reported weird behaviour with a record delete within a related tabpanel

Base form is based on generic solution table and has a relationless tab embedded on it for table ‘job’

This relationless tab for the ‘job’ form has a related list view form on it based on table ‘item’

The item list view has a delete method on it:

var v_result = plugins.dialogs.showInfoDialog('delete', 'delete this record','no', 'yes');
	if ( v_result == 'yes' )
	{
		controller.deleteRecord();
	}

If this method is triggered from a record which has had to be scrolled down to in order to view then the list seems to scroll back up to the top away from the selected record

The delete action does delete the correct record but the view shows the top of the list and not the position where the record was deleted

Anybody seen this behaviour and is there a way to counter it ?

Cheers
Harry

can you test if you see this behavior also in the latest 5.2 ?
(or 6)

Hi Johan

I’ve tested it in 5.2.3 and the problem does not seem to exist there - only in 4.x

Cheers
Harry