This is odd. I have a return that should first return some markup for 3 lists,
then it writes a table.
But it seems to alternate intermittently as to what writes first - sometimes it
writes the table first.
Any obvious reasons that would happen?
Here's a snippet to put it in context... (pretty basic)
return (
(
<div>
<div><label class="filterLabel">Audience: <select name=""
aria-controls="" class=""
style="width:135px;">{$audience_list}</select></label></div>
<div><label class="filterLabel">Practices: <select name=""
aria-controls="" class=""
style="width:135px;">{$practices_list}</select></label></div>
<div><label class="filterLabel">Distribution: <select name=""
aria-controls="" class=""
style="width:135px;">{$distribution_list}</select></label></div>
</div>
)
|<table id="CalendarTable" cellspacing="0" cellpadding="0" border="0">
<thead>
<tr>
<th class="issuedate">Issue Date</th>
<th class="ctitle">Content Title</th>
<th class="cpub">Publication</th>
<th class="cdesc">Description</th>
<th class="closedate">Space Close</th>
<th class="lastCell matduedate"> Materials Due</th>
<th class="spaceclose">Audience</th>
<th class="spaceclose">Practice Areas</th>
</tr>
</thead>
<tbody>
{$output}
</tbody>
</table>
)
_______________________________________________
General mailing list
[email protected]
Manage your subscription at:
http://developer.marklogic.com/mailman/listinfo/general