Changeset 1770
- Timestamp:
- 10/16/08 21:23:56 (5 years ago)
- Location:
- coldbox/trunk/testharness
- Files:
-
- 1 added
- 3 modified
-
handlers/ehGeneral.cfc (modified) (1 diff)
-
includes/jquery-1.2.6.min.js (added)
-
layouts/Layout.Main.cfm (modified) (1 diff)
-
views/vwHello.cfm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
coldbox/trunk/testharness/handlers/ehGeneral.cfc
r1755 r1770 127 127 128 128 <!--- Set the view to render ---> 129 <cfset Event.setView(name="vwHello" ,cache=true,cacheTimeout=5)>129 <cfset Event.setView(name="vwHello")> 130 130 </cffunction> 131 131 -
coldbox/trunk/testharness/layouts/Layout.Main.cfm
r1755 r1770 5 5 <title><cfoutput>#controller.getSetting("Codename",1)# #controller.getSetting("Version",1)#</cfoutput></title> 6 6 <link href="includes/style.css" rel="stylesheet" type="text/css" /> 7 <script language="javascript" src="includes/jquery-1.2.6.min.js"></script> 7 8 <style type="text/css"> 8 9 <!-- -
coldbox/trunk/testharness/views/vwHello.cfm
r1755 r1770 17 17 18 18 <hr> 19 <p>Execution Interceptor started at : <cfif settingExists("ExecutionTracerStartTime")> #getSetting('ExecutionTracerStartTime')# </cfif></p>20 21 19 <p><strong>Hello:</strong> #Event.getValue("firstname","No name Found")# 22 20 </p> 21 <script language="javascript"> 22 function getJSON(){ 23 $("##jsondata").load("index.cfm/ehProxy/jsonData"); 24 } 25 </script> 26 <p>RenderData: <input type="button" value="Get JSON" onClick="getJSON()"> 27 <div id="jsondata" style="font-style: bold;"> 28 </div> 29 </p> 30 23 31 <p>IntroMessage = #getResource("intromessage")#</p> 24 32 <hr>
