jquery - JTable Repaint Parent from a Pop-Up -


got popup used below javascript function when closed.

<script>     window.onunload = refreshparent;     function refreshparent() {        window.parent.location.reload(); </script> 

however, need on parent refresh/repaint jtable hooked on div tag named site.

$('#site').jtable({ 

i tried:

window.parent.$('#site').repaint();  // ,  window.parent.location.$('#site').repaint();  // ,  parent.$('#site').jtable('repaint'); 

however, nothing refresh data. need refresh jtable since there several back-end changes happened can not keep track of.

just wondering if there way reloaded data in jtable.


Comments

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -

How to provide Authorization & Authentication using Asp.net, C#? -