26ff8d9b4f
Set up repository with legacy .NET Framework 4.8 source (OLD/), new .NET 10 Blazor solution (NEW/), OpenSpec specifications, documentation, and project configuration.
28 lines
1.5 KiB
HTML
Executable File
28 lines
1.5 KiB
HTML
Executable File
<script type="text/x-kendo-template">
|
|
<div class="panel panel-default" data-bind="visible: widgetVisible">
|
|
<div class="panel-heading">
|
|
<div class="container" style="padding-left: 0;">
|
|
<div class="col-md-3 checkbox">
|
|
<span data-bind="text: title"></span>
|
|
</div>
|
|
<div class="col-md-9">
|
|
<div class="btn-group" style="float: right;">
|
|
<button class="btn btn-default templateDownload" data-bind="events: { click: onTemplateDownloadClick }">Download Template</button>
|
|
<label class="btn btn-default templateUpload" data-bind="events: { click: onTemplateUploadClick }">Upload Data</label>
|
|
<input type="file" style="display: none" />
|
|
<button class="btn btn-default clearButton" data-bind="events: { click: onClearClick }">Clear Data</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="panel-body container">
|
|
<div data-role="grid"
|
|
data-editable="false"
|
|
data-bind="source: dataSource"
|
|
style="min-height: 50px;"></div>
|
|
<div class="col-md-12" style="font-weight: bold; margin-top: 10px;">
|
|
<span data-bind="text: countText"></span><span data-bind="text: dataSource.data().length"></span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</script> |