Hi Vineet:
First, visit this link: http://labs.blouweb.com/PowerGrid/ and click in
->Docs Icons
Is that the effect what you are lookin for?
So, you can try doing this:
on the view write an anchor A(...) with href="#"
the with jQuery, select this anchor, and override the click event, something
like this:
#Asuming the anchor having id=target
$('#target').click(function(e){
alert('you click me!');
});
If you can se an alert, and no redirecting, you are doing right :)
Next step is using jQuery.load function (search jquery documentation), to
request an url and putting it inside a jquery dialog, then showing the
dialog (here you can use nyroModal or jqueryui dialog)
HTH!
PS: I not tested the code
Bye