Using Joomla! v2.5 and modal to open a new popup
<a href="index.php?option=com_mycomponent&view=my_view" class="modal" rel="{handler: 'iframe', size: {x: 800, y: 600}}">
User will have some options (links) such as info/delete/lock.
After selecting(clicking) an option and clicking the "close" button, I need to either just close the modal or close the modal and refresh the page.
I can ALWAYS refresh the page using something like this
<a href="index.php?option=com_mycomponent&view=my_view" class="modal" rel="{handler:'iframe', size: {x: 800, y: 600},onClose:function(){var js =window.location.reload();}}">
but I need to refresh the page under conditions (eg. user clicked "delete" => refresh, user clicked "info" => do nothing)
Ideas?
Thanks