|
<style>
.e-grid{
float: right; if you want to shows on right side then you can use it
}
</style> |
<div class="row justify-content-end">
<div class="col-9">
<h2>Management</h2>
</div>
</div>
<div class="row justify-content-end">
<div class="col-9">
<table width="@("80%")">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</table>
</div>
</div>
<div class="row justify-content-end">
<div class="col-9">
<ejs-grid id="Grid" width="@("80%")" height="272" allowPaging="true" toolbar="@(new List<string>() { "Search", "Add", "Delete","Update","Cancel" , "ExcelExport" , "CsvExport" ,"PdfExport"})" allowFiltering="true" allowExcelExport="true" allowPdfExport="true" toolbarClick="toolbarClick">
. . . . .
</ejs-grid>
</div>
</div> |