Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexander-schranz/jquery-tableforminsert
https://github.com/alexander-schranz/jquery-tableforminsert
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/alexander-schranz/jquery-tableforminsert
- Owner: alexander-schranz
- Created: 2013-07-15T21:36:09.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-07-26T07:19:30.000Z (over 11 years ago)
- Last Synced: 2024-10-27T05:02:15.901Z (about 2 months ago)
- Language: JavaScript
- Size: 270 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
jQuery-TableFormInsert 1.3.1
======================
Small jQuery Plugin which Convert a copied Table from 'Microsoft Excel' or 'Open Office Calc' into a Table with Input Fields.Changelog
======================
1.3.1
- fix deselect row1.3
- fix reconvert required fields check
- add multi form support1.2.1
- add infobox for required fields1.2
- add required fields1.1.2
- fix set inactive fields when preselect false1.1.1
- fix old remove table when table is reconverted
- fix ignore empty lines1.1
- add Changeable Attribute1.0
- first stable VersionExample
======================
`````javascript
$('#button').click(function() {
$('#textarea').tfi({
select: [
['firstname', 'Firstname'],
['lastname', 'LastName'],
['street', 'Street'],
['nr', 'StreetNumber']
]
});
});
`````