1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<html>
<head>
<link rel="stylesheet" type="text/css" href="../Codeviewer/showcode.css">
<script language="javascript" " src="../Codeviewer/showcode.js"></script>
</head>
<?php
include("../Codeviewer/showcode.php");
menulayout("AjaxDemoApp10_getClicks.php","AjaxDemoApp8_getResourceAvailability.php","","AJAX Example 9: Make Click","AjaxDemoApp9_makeClick.html","AjaxDemoApp9_makeClick_description.html");
$interestingrows=array(array(15,25,"Make Booking"));
$keywords = array("resultSize","drawResult","resultBooking","processinputbox","OutputDiv","bookPosition","resource","bookingdate");
$highlight = array(array("{","highlightnormal"),array("}","highlightnormal"),array("function","highlightspecial"));
showfile($interestingrows,$keywords,$highlight,"AjaxDemoApp9_makeClick.html");
menulayoutend();
?>
</html>
|