Guest User

Untitled

a guest
Feb 18th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <apex:form >
  2. <apex:actionFunction name="refreshTable" action="{!pageLoad}" reRender="calendarOPanel" oncomplete="reRender()">
  3. </apex:actionFunction>
  4. <apex:outputPanel id="calendarOPanel"><apex:inputCheckbox value="{!showAAPP}" onclick="refreshTable()" id="checkAAPP">AAPP</apex:inputCheckbox><div id="calendar" class="printable"></div></apex:outputPanel></apex:form>
  5.  
  6. function reRender() {
  7. console.log('reRender');
  8. $('#calendar').fullCalendar('refetchEvents');
  9. }
Add Comment
Please, Sign In to add comment