@manhng

Welcome to my blog!

Amazing Bootstrap and HTML5 Templates

December 28, 2018 16:46

Amazing Bootstrap and HTML5 Templates (edit)

https://themefisher.com/

Brandi

http://demo.themefisher.com/demos/?theme=brandi

Inline Editing

  • Edit Jquery DataTable ASP.NET C# CRUD operation
  • Jquery DataTables in asp.net with CRUD

Examples

http://datatables.extrared.net/Sample/

http://dotnetfriendly.blogspot.com/2011/01/jquery-datatables-in-aspnet-with-crud.html

https://www.c-sharpcorner.com/UploadFile/fd765b/jquery-data-tables/

https://demo.aspnetawesome.com/GridInlineEditDemo

1) Grid Inline Edit demo

https://demo.aspnetawesome.com/GridInlineEditDemo

2) Which is the best jQuery/JavaScript plugin for tables, especially for inline editing, inserting or deleting rows?

  • jQuery Datatables
  • Handsontable
  • Dynatable.js
  • jqGrid
  • jEditable

3) jQuery DataTable Inline Editing

https://editor.datatables.net/examples/inline-editing/simple

https://editor.datatables.net/examples/inline-editing/index.html

https://www.c-sharpcorner.com/UploadFile/fd765b/jquery-data-tables/

WebShim

https://github.com/aFarkas/webshim/

WebShim Example: Cách sử dụng WebShim với dữ liệu kiểu number

http://jsfiddle.net/trixta/UC6tG/

http://afarkas.github.io/webshim/demos/demos/cfgs/input-number.html

Form Builder

https://bootsnipp.com/forms

https://mdbootstrap.com/docs/jquery/forms/basic/

https://www.jotform.com/ (nvmanhifi@gmail.com/pwd)

Free Bootstrap Wizards

https://colorlib.com/wp/free-bootstrap-wizards/

jQuery Number

June 7, 2018 14:00

jQuery Number (edit)

HTML

<input type="text" class="form-control positive-integer" id="soGoldNhanCuoc" readonly value="15000000" name="soGoldNhanCuoc" required>

Numeric (jquery.numeric.min.js)

https://github.com/SamWM/jQuery-Plugins/tree/master/numeric

$(".positive-integer").numeric({ decimal: false, negative: false }, function () { alert("Positive integers only"); this.value = ""; this.focus(); });

AutoNumeric (autoNumeric.min.js)

https://github.com/autoNumeric/autoNumeric

autoNumeric 1.8.3

https://cdnjs.cloudflare.com/ajax/libs/autonumeric/1.8.3/autoNumeric.js

https://cdnjs.cloudflare.com/ajax/libs/autonumeric/1.8.3/autoNumeric.min.js

autoNumeric 1.9.41

https://cdnjs.cloudflare.com/ajax/libs/autonumeric/1.9.41/autoNumeric.js

https://cdnjs.cloudflare.com/ajax/libs/autonumeric/1.9.41/autoNumeric.min.js

autoNumeric-2.0.13

https://github.com/autoNumeric/autoNumeric/releases/tag/v2.0.13

autoNumeric 4.x

https://cdnjs.cloudflare.com/ajax/libs/autonumeric/4.1.0/autoNumeric.js

https://cdnjs.cloudflare.com/ajax/libs/autonumeric/4.1.0/autoNumeric.min.js

Lấy số từ người dùng nhập vào .autoNumeric('getSettings').rawValue

https://github.com/autoNumeric/autoNumeric/issues/251

https://github.com/autoNumeric/autoNumeric/issues/399

var soGoldCuoc = $('#soGoldDatCuoc').autoNumeric('get');

Không hiển thị dấu thập phân

https://github.com/autoNumeric/autoNumeric/issues/35

$('.positive-integer').autoNumeric('init', { mDec: '0' }, { formatOnPageLoad: true });

JavaScript format number

function formatGold(gold) {
    return gold.toString().replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1,");
}

Categories

Recent posts