Hi,
Fork the controller for view2 the item controller, not the items), change the "applyRedirection" in the save/cancel function to redirect to your table1
Check the controllers and I think it will be obvious for you. If not, I can provide example code.
edit: code added
Like I said: create a fork/controllers/table1.php, copy the function cancel() from the original controllers/table1.php and paste it into you fork.
Then change in fork like this (or similar, default might be another view in your case)
public function cancel()
{
$this->_result = $result = parent::cancel();
$model = $this->getModel();
//Define the redirections
switch($this->getLayout() .'.'. $this->getTask())
{
case 'table1.cancel':
$this->applyRedirection($result, array(
'stay',
'com_mycomponent.table1.default'
), array(
'cid[]' => null
));
break;
default:
$this->applyRedirection($result, array(
'stay',
'com_mycomponent.table1.default'
));
break;
}
}
Something like that should work (tried in my own component and works)