Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <html>
  2. <body>
  3. <input name="Week" type="button" value="Week" onclick="Test()" />
  4.  
  5. <input name="Day" type="button" value="Day" onclick="TestDay()" />
  6.  
  7. <input name="Month" type="button" value="Month" onclick="TestMonth()" />
  8. <script type="text/javascript">
  9.  
  10. function Test()
  11. {
  12. CoreInvoke('MoveView','week');
  13. }
  14.  
  15. function TestDay()
  16. {
  17. CoreInvoke('MoveView','day');
  18. }
  19.  
  20. function TestMonth()
  21. {
  22. CoreInvoke('MoveView','month');
  23. }
  24. </script>
  25. </body>
  26.  
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement