This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="slideshow"> | |
<img id="home_main" style="margin-bottom: 0px;" src="{{skin url='images/media/slideshow/slide0.jpg'}}" /> | |
</div> | |
<div id="slideinfo"> | |
<div id="slide0"> | |
<p>Some text regarding the first slide.</p> | |
</div> | |
<div id="slide1" style="display:none;"> | |
<p>Some text regarding the second slide.</p> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="slideshow"> | |
<img id="home_main" style="margin-bottom: 0px;" src="{{skin url='images/media/slideshow/slide1.jpg'}}" /> | |
</div> | |
<h1><a href="{{store url="design-build"}}">We can help you design and build your next coffee bar!</a></h1> | |
<script type="text/javascript"> | |
var images = new Array(); | |
images[0] = '{{skin url='images/media/slideshow/slide1.jpg'}}'; | |
images[1] = '{{skin url='images/media/slideshow/slide2.jpg'}}'; | |
images[2] = '{{skin url='images/media/slideshow/slide3.jpg'}}'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
Ext.onReady(function(){ | |
var store = new Ext.data.SimpleStore({ | |
fields: ['name', 'id'], | |
data : [<c:forEach var="row" items="${mapData}">['${row.name}', '${row.id}'],</c:forEach>] | |
}); | |
siteSelection = new Ext.form.ComboBox({ | |
id : "selectedMap", | |
name : "selectedMap", | |
listeners : { 'select' : { fn : load }}, |
NewerOlder