-1
我想從GridLine插入數據。我有3列(代碼,expDate,狀態)。在代碼字段中,我想生成一個由隨機字符和數字組成的單詞。優惠券代碼可編輯關閉。並且在狀態將只有有效的條件。我想在Grid Kendo UI中製作它。幫助我不知道該怎麼做。如何在文本框中生成數據在網格線中創建數據網格Kendo UI
我用在我看來,這個代碼。幫我定製它。謝謝。
查看
<div class="tables">
<div class="table-responsive bs-example widget-shadow">
<h4>Data Propinsi:</h4>
@(Html.Kendo().Grid<admission.Models.VoucherPreviewModel>()
.Name("grids")
.Columns(columns =>
{
columns.Bound(p => p.id_voucher).Hidden();
columns.Bound(p => p.voucherCode).Title("Kode Voucher");
columns.Bound(p => p.expDate).Title("Tgl Exp").Format("{0: dd MMM yyyy - HH:mm WIB}");
columns.Bound(p => p.status).Title("Status");
columns.Command(command => { command.Edit(); command.Destroy(); }).Width(250);
})
.ToolBar(toolbar => toolbar.Create())
.Editable(editable => editable.Mode(GridEditMode.InLine))
.Pageable()
.Sortable()
.Filterable()
.HtmlAttributes(new { style = "height:570px;" })
.DataSource(dataSource => dataSource
.Ajax()
.PageSize(10)
.Events(events => events.Error("error_handler"))
.Model(model => model.Id(p => p.id_voucher))
.Create(update => update.Action("voucher_Create", "Voucher")).Read("voucher_read", "Voucher")
.Update(update => update.Action("voucher_Update", "Voucher")).Read("voucher_read", "Voucher")
.Read(read => read.Action("voucher_read", "Voucher"))
.Destroy(update => update.Action("voucher_Delete", "Voucher")).Read("voucher_read", "Voucher")
)
)
</div>
</div>
<script type="text/javascript">
function error_handler(e) {
if (e.errors) {
var message = "Errors:\n";
$.each(e.errors, function (key, value) {
if ('errors' in value) {
$.each(value.errors, function() {
message += this + "\n";
});
}
});
alert(message);
}
}
</script>
可以給我更詳細的解釋。我是新來的。如何獲取隨機代碼並在更新或創建時將其放入代碼文本框中,並使其變爲不可編輯。謝謝 –
我可以顯示數據從math.random後,我打創建新的數據? –
是的,我會說,試試吧。這並不難。你有你的模型在JavaScript中可用。 –