Sha256: bc9957b14ea522b67f53bf6ae10f6c68f8ea6086e3829fa4efda8aeb75e0a839

Contents?: true

Size: 1.13 KB

Versions: 7

Compression:

Stored size: 1.13 KB

Contents

<style>
table.simple-table {
	border: solid #777;
	border-width: 0px 0px 1px 1px;
	margin-top: 8px;
}
table.simple-table thead {
	background: #777;
	border-bottom: 1px solid #333;
	color: #fff;
}
table.simple-table tfoot {
	background: #ccc;
	border-top: 1px solid #333;
	color: #777;
}
table.simple-table td, table.simple-table th {
	padding: 4px;
	border-right: 1px solid #777;
	border-top: 1px solid #777;
}
</style>
<p>
	You should see a table below with two columns and the words "I work" in it.
</p>
<!-- no html -->
<script src="/depender/build?require=More/HtmlTable"></script>
<script>
// create blank table with no options
var table = new HtmlTable({
	properties: {
		'class':'simple-table'
	}
});
// set some headers
table.setHeaders(['column1','column2']);
// inject table into myElement
table.inject(document.body);
// push data to the table
table.push(['hello','world']);
// this is the trouble spot, it removes the tbody tag from the table
table.empty();
// at this stage if you call table.build(), the below push will work
// if you try to push rows into the table now it wont work as the tbody tag is missing
table.push(['I','work']);
</script>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
lsd_rails-0.1.6 Packages/mootools-more/Tests/Interactive/Interface/HtmlTable_(empty_and_refill).html
lsd_rails-0.1.5 Packages/mootools-more/Tests/Interactive/Interface/HtmlTable_(empty_and_refill).html
lsd_rails-0.1.4 Packages/mootools-more/Tests/Interactive/Interface/HtmlTable_(empty_and_refill).html
lsd_rails-0.1.3 Packages/mootools-more/Tests/Interactive/Interface/HtmlTable_(empty_and_refill).html
lsd_rails-0.1.2 Packages/mootools-more/Tests/Interactive/Interface/HtmlTable_(empty_and_refill).html
lsd_rails-0.1.1 Packages/mootools-more/Tests/Interactive/Interface/HtmlTable_(empty_and_refill).html
lsd_rails-0.1 Packages/mootools-more/Tests/Interactive/Interface/HtmlTable_(empty_and_refill).html