Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. <div class="buttons" >
  2. <apex:outputPanel id="buttons">
  3. <apex:commandButton value="Save" action="{!save}" rerender="GAtable,CumulativeDifference,NoResultfnd,detailcomnt,buttons,footer" onclick="if(!confirm('Are you sure you want to Save?')){return false};" disabled="{!isFinalized}"/>
  4. <apex:commandButton value="Reset" action="{!reset}" rerender="GAtable,CumulativeDifference,buttons,footer" disabled="{!isFinalized}"/>
  5. <apex:commandButton value="Finalize" action="{!finalize}" rerender="GAtable,CumulativeDifference,buttons,footer" onclick="if(!confirm('Are you sure you want to finalize?')){return false};" disabled="{!IF(isFinalized==true,true,false)}"/>
  6. <!-- <apex:commandButton value="Cancel" action="{!cancel}" rerender="GAtable,CumulativeDifference,buttons,footer" disabled="{!isFinalized}" immediate="true" html-formnovalidate="formnovalidate" /> -->
  7. </apex:outputPanel>
  8. </div>
  9. <div align="center" class="pagination_section">
  10. <apex:outputPanel id="footer">
  11. <apex:outputText >Showing Page # {!pageNumber} of {!totalPages}</apex:outputText>&nbsp;&nbsp;&nbsp;&nbsp;
  12. <apex:commandButton value="<<" action="{!Beginning}" disabled="{!DisablePrevious}" rerender="GAtable,buttons,footer"/>
  13. <apex:commandButton value="<" action="{!Previous}" disabled="{!DisablePrevious}" rerender="GAtable,buttons,footer"/>
  14. <apex:commandButton value=">" action="{!Next}" disabled="{!DisableNext}" rerender="GAtable,buttons,footer,form1"/>
  15. <apex:commandButton value=">>" action="{!End}" disabled="{!DisableNext}" rerender="GAtable,buttons,footer,form1"/>
  16. </apex:outputPanel>
  17. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement