Here's on for ya...I have been at this for 6 hours now and I have tried Jumi, JCE trick, TinyMCE trick, No Editor trick and have failed all attempts - Can you help?
I created an HTML spry dataset in Dreamweaver. It has a "data file" that is an HTML file that contains a table with data (text and images).
Then there is the page that pulls the data - it contains the following code which I have put into Sourcer with no luck:
<script src="SpryData.js" type="text/javascript"></script>
<script src="SpryHTMLDataSet.js" type="text/javascript"></script>
<link href="SprySpotlightColumn.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
<!--
var dsCd = new Spry.Data.HTMLDataSet("cddata.html", "cdData");
//-->
<div id="wrapper">
<div spry:region="dsCd" class="SpotlightAndStacked">
<div spry:repeat="dsCd" class="SpotlightAndStackedRow">
<div class="SpotlightContainer">
<div class="SpotlightColumn"> {photo}</div>
</div>
<div class="StackedContainer">
<div class="StackedColumn"> {title}</div>
<div class="StackedColumn"> {description}</div>
<div class="StackedColumn"> {tracks}</div>
<div class="StackedColumn"> {time}</div>
</div>
</div>
</div>
</div>