Issue
I got this div-table
populated dynamically, but I can't find a way to add a header to it, given the way this is being built.
HTML
piece:
<div class="block div-table" id="sidebar-record-block"></div>
This is the script populating the table dynamically:
function showRecord(record) {
if (record.length) {
for (var i = 0; i < record.length; i++) {
// build field name on the fly, formatted field-1234
var str = '' + i;
var fieldId = 'field-' + ('0000' + str).substring(str.length)
// If this field # doesn't already exist on the page, create it
if (!$('#'+fieldId).length) {
var newField = $($.parseHTML('<div id="'+fieldId+'"></div>'));
$('#sidebar-record-block').append(newField);
}
// Replace content of the field div with new record
$('#'+fieldId).replaceWith('<div id="'+fieldId+'" class="div-table-row"></div>');
$('#'+fieldId).append('<input id=checkBox type="checkbox"</input>')
.append($('<div class="div-table-th">' + record[i].heading + '</div>'))
.append('<div class="div-table-td">' + record[i].cellval + '</div>')
}
}
Here's how css is:
.div-table {
display: table;
width: auto;
border-spacing: 3px;
}
.div-table-row {
display: table-row;
width: auto;
clear: both;
}
.div-table-td,
.div-table-th {
display: table-cell;
width: 190px;
background-color: rgb(245, 241, 239);
}
Here's the expected result:
Appreciate your help!
Solution
Actually you have almost anything you need yet. The trick is just adding the headings for your rows as a different styled row element to your custom table.
For example:
.div-table {
display: table;
width: auto;
border-spacing: 3px;
}
.div-table-row {
display: table-row;
width: auto;
clear: both;
}
.div-table-td,
.div-table-th {
display: table-cell;
width: 190px;
background-color: rgb(245, 241, 239);
}
.div-table-header {
display: table-cell;
width: 190px;
text-align: center;
}
<div class="block div-table" id="sidebar-record-block">
<div class="div-table-row">
<div>Sel</div>
<div class="div-table-header">Color</div>
<div class="div-table-header">Hex</div>
</div>
<div class="div-table-row">
<input type="checkbox">
<div class="div-table-th">amarelo suave</div>
<div class="div-table-td">EEEA97</div>
</div>
<div class="div-table-row">
<input type="checkbox">
<div class="div-table-th">verde</div>
<div class="div-table-td">00FF00</div>
</div>
</div>
Creating this dynamically at runtime isn't much different from the code you already have.
Just add the following at the beginning of your for-loop:
if(i==0) {
$('#sidebar-record-block').append($($.parseHTML('<div class="div-table-row"><div>Sel</div><div class="div-table-header">Color</div><div class="div-table-header">Hex</div></div>')));
}
Answered By - obscure Answer Checked By - Marie Seifert (PHPFixing Admin)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.