Hi all,
I need to generate the following HTML Tags with the text which can be dynamically changed according to the requirement changes (FYI : The dynamic information changes as per the requirement, which is given out through a query). Have a look at the following HTML page.
---------------------------------------Detail List of Items---------------------------------------
<li>
<div class="box">
<div class="box-header">
<span class="title">{List Title}</span>
<ul class="box-toolbar">
<li><span class="label label-green">{List item count}</span></li>
</ul>
</div>
<div class="box-content">
<table class="table table-normal" id="tblQuickMenuLatestRecords" style="display: table;">
<thead>
<tr>
<td>{Code}</td>
<td>{Description}</td>
<td style="width: 40px"></td>
</tr>
</thead>
<tbody>
<tr>
<td>{Row Code}</td>
<td>{RowDescription}</td>
<td>
<div class="btn-group">
<button class="btn btn-xs btn-default" onclick="EntityMoreInformationNavigate('{MenuName}','{DocumentId}','{EntityCode}')"><i class="icon-signin"></i></button>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</li>
----------------------------------------------------------------------------------------------
If there are any concerns regarding my question, please leave a comment.
Thanks.