Subversion Repositories cryptochat

Compare Revisions

Regard whitespace Rev 1 → Rev 2

/trunk/dependencies/sajax/coldfusion/example_options.cfm
0,0 → 1,100
<cfinclude template="sajax.cfm">
<cfscript>
function test_get() {
return test();
}
function test_post() {
return test();
}
function test() {
s = "URI: example_options.cfm";
s = "#s#
-- GET --
";
if(isdefined("URL.rsargs"))
s = "#s##URL.rsargs#";
s = "#s#
 
-- POST --
";
if(isdefined("FORM.rsargs"))
s = "#s##FORM.rsargs#";
return s;
}
function get_the_time() {
return "#DateFormat(now(),"yyyy-mm-dd ")##TimeFormat(now() ,"HH:mm:ss")#";
}
function pause(sec) {
thread = CreateObject("java", "java.lang.Thread");
thread.sleep(sec*1000);
}
 
// $sajax_debug_mode = true;
 
//GET functions
sajax_request_type = "GET";
sajax_export("test_get", "get_the_time", "test", "otherefucntion2");
//POST functions
sajax_request_type = "POST";
sajax_export("test_post");
 
//synchronous GET functions
sajax_request_type = "GET";
sajax_request_asynchronous = "false";
sajax_export("pause");
 
//GET functions from a different uri
sajax_request_type = "GET";
sajax_remote_uri = "example_otheruri.cfm";
sajax_export("otherefucntion");
sajax_handle_client_request();
</cfscript>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Example of Sajax Options</title>
<script type="text/javascript" src="json2.stringify.js"></script>
<script type="text/javascript" src="json_stringify.js"></script>
<script type="text/javascript" src="json_parse_state.js"></script>
<script type="text/javascript" src="sajax.js"></script>
<script type="text/javascript"><!--
<cfscript>sajax_show_javascript();</cfscript>
function print_result(v) {
alert(v);
}
//-->
</script>
</head>
<body>
<!-- Testing if the browser supports GET -->
<button onclick="x_test_get(1, 2, 3, print_result);">Test GET</button>
 
<!-- Testing if the browser supports POST -->
<button onclick="x_test_post(1, 2, 3, print_result);">Test POST</button>
 
<!-- Forcing the function to POST -->
<button onclick="sajax_request_type ='POST'; x_test(1, 2, 3, print_result); sajax_request_type ='';">Test force POST</button>
 
<!-- if sajax_target_id is set, the sesponce will be inserted as HTML in an element with sajax_target_id for id-->
<button onclick="sajax_target_id = 'time'; x_get_the_time(); sajax_target_id = '';">Test updating IDs</button>
 
<!-- Calling a synchronous will cause the script to wait for the responce -->
<button onclick="x_pause(3, function(){}); alert('Link was clicked!');">Test synchronous</button>
 
<!-- Different URI set at config -->
<button onclick="x_otherefucntion(print_result);">Call to other uri.</button>
 
<!-- Forece different URI at runtime -->
<button onclick="sajax_remote_uri = 'example_otheruri.cfm'; x_otherefucntion2(print_result); sajax_remote_uri = '';">Force call to other uri.</button>
<div id="time"><em>Time will appear here</em></div>
</body>
</html>