您好,登錄后才能下訂單哦!
這篇文章主要介紹了bootstrap中bootstrap-editable和bootstrap-fileinput怎么用,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
數據庫中為datetime類型,.net讀取數據已Json格式發回給前臺頁面:例如:使用bootstrap表格插件Ⅹ
formatter: function (value, row, index) { var date = new Date(parseInt(value.slice(6))); return date.getFullYear() + '-' + parseInt(date.getMonth() + 1) + '-' + date.getDate() + " " + date.getHours() + ":" + date.getMinutes()+":"+date.getSeconds(); }
使用bootstrap-editable時需要引用
<script src="~/Scripts/bootstrap3-editable/js/bootstrap-editable.min.js"></script> <script src="~/Scripts/bootstraptable/dist/extensions/editable/bootstrap-table-editable.min.js"></script>
初始化時:
{ field: 'SkuPurchasePrice', title: '采購價', align: 'center', editable: { type: 'text', title: '采購價', validate: function (v) { if (v < 0) return '采購價不能小于0'; } } }, { field: 'QtyAvailable', title: '庫存可用量', align: 'center', editable: { type: 'text', title: '庫存可用量', validate: function (v) { if (v < 0) return '庫存可用量不能小于0'; }, }, }
事件:
onEditableSave: function (field, row, oldValue, $el) { $.ajax({ type: 'post', url: "@Url.Action("EditNumber")", dataType: 'JSON', data: { "row": JSON.stringify(row) }, success: function (data) { if (data.ResultType == 0) { toastr.success(data.Message); } else { toastr.warning(data.Message); } }, error: function () { toastr.error("出錯了,請聯系管理員"); } }); }
bootstrap-fileinput使用:
引用
<script src="~/Scripts/AdminLTE2.3.0/bootstrap/js/fileinput.min.js"></script>
初始化:
<label class="control-label col-sm-1">商品上傳</label> <div class="col-sm-2"><input type="file" id="ProductsUpload" name="ProductsUpload" /></div> <div class="col-sm-1"><a href="~/ProductsExcel/DownloadTemplate?type=5" rel="external nofollow" target="_blank">下載模板</a></div>
function initFileInput(ctrlName) { var control = $('#' + ctrlName); control.fileinput({ language: 'zh', //語言 uploadUrl: "@Url.Action("ExcelLeadingIn")", //action autoReplace: true, maxFileCount: 1, //最大上傳數量 allowedFileExtensions: ["xlsx", "xls"], browseClass: "btn btn-primary", //按鈕樣式 dropZoneEnabled: false, enctype: 'multipart/form-data', showRemove: true, //是否顯示刪除按鈕 showBrowse: true, //顯示瀏覽圖片按鈕 msgFilesTooMany: "選擇上傳的文件數量({n}) 超過允許的最大數值{m}!", msgInvalidFileExtension:"只支持.xlsx和.xls文件的格式上傳", fileActionSettings: { showUpload: false, //預覽圖片上傳按鈕 showRemove: false, //預覽圖片remove按鈕 showZoom: false //關閉預覽圖片按鈕 } }).on('fileuploaded', function (event, data, previewId, index) {//上傳圖觸發事件 if (data.response.state == 1) { $('#excelLendingDiv h6').html($('#excelLendingDiv h6').html() + data.response.result+"<br/>"); } else { toastr.error(data.response.result); } }).on('filecleared', function (event) {//remove觸發事件 control.show(); }); }
后臺上傳:
[HttpPost] public ActionResult ExcelLeadingIn() { var files = Request.Files; string name=files.Keys[0].ToString(); if (files != null && files.Count > 0) { var file = files[0]; string path = Server.MapPath("~/Content/excel/") + file.FileName;//文件保存在當前域名下的Content/excel/中 file.SaveAs(path); string mess = OfferServer.ProductsDetail.InsertExcel(path,file.InputStream,name); return Json(new { state = 1, result = mess }); } return Json(new { state = 0, result = "上傳發生錯誤,請檢查后重試" }); }
感謝你能夠認真閱讀完這篇文章,希望小編分享的“bootstrap中bootstrap-editable和bootstrap-fileinput怎么用”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。