Advertisement
Guest User

Untitled

a guest
Sep 16th, 2014
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. afterClose: function () {
  2. window.location.href = 'Default.aspx';
  3. }
  4.  
  5. afterClose: function () {
  6. parent.location.reload(true);
  7. }
  8.  
  9. afterClose: function () {
  10. __doPostBack('BodyContent', '');
  11. }
  12.  
  13. afterClose: function () {
  14. window.opener.location.reload(); return;
  15. }
  16.  
  17. $('#fancy_link').fancybox({
  18. 'title': 'Test',
  19. 'parent': 'form:first',
  20. 'type': 'iframe',
  21. 'width': '100%',
  22. 'height': '100%',
  23. 'hideOnOverlayClick': false,
  24. 'hideOnContentClick': false,
  25. 'overlayOpacity': 0.7,
  26. 'enableEscapeButton': false,
  27. 'afterClose': function () {
  28. <<< problem getting postback on parent page - what goes here??? >>>
  29. }
  30. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement