Disabling autoincrement in AutoFill extra
Disabling autoincrement in AutoFill extra
1. In *.js file find this pattern - "return a.sStr.replace(e,b+a.sPostFix)"
2. Replace with this one - "return a.sStr.replace(e,a.iStart)"
It will disable autoincrmenet permanently.
In case you are need to disable it only for one/more collumn please refer to AutoFill documentation http://datatables.net/extras/autofill/options (fnStep callback).
Worked for me with AutoFill 1.1.2
2. Replace with this one - "return a.sStr.replace(e,a.iStart)"
It will disable autoincrmenet permanently.
In case you are need to disable it only for one/more collumn please refer to AutoFill documentation http://datatables.net/extras/autofill/options (fnStep callback).
Worked for me with AutoFill 1.1.2
This discussion has been closed.
Replies
1. In *.j file find this pattern - "a=parseInt(c,10)"
2. Replace with this one - "a=c"
Worked for me with AutoFill 1.1.2
Allan
Thank you for this great product!