https://github.com/badchoice/dymoeditor
A JQuery Plugin to design and print Dymo labels developed initialy for Revo web backend.
https://github.com/badchoice/dymoeditor
Last synced: about 1 year ago
JSON representation
A JQuery Plugin to design and print Dymo labels developed initialy for Revo web backend.
- Host: GitHub
- URL: https://github.com/badchoice/dymoeditor
- Owner: BadChoice
- Created: 2015-12-29T17:00:01.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-03-03T15:18:00.000Z (over 9 years ago)
- Last Synced: 2025-02-16T16:58:07.646Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 60.5 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Dymo Label Editor
A JQuery Plugin to design and print Dymo labels developed initialy for [Revo](http://revo.works) web backend.
Feel free to submit `pull requests` to improve it.
Elements required:
- JQuery
- JQuery UI
- Font Awesome (optional for icons)
Right now, the `div` element to handle the editor must have as ID `dymoEditor`.
### Usage
For a complete sample check out the index.html
1. Import required libreries (for optimization, mix them into just one css and one js files
2. Initialize plugin (send an array of values keys available for the value object)
var editor;
$(document).ready(function() {
editor = $('dymoEditor').dymoEditor({'values':['ID','Price','Barcode']});
});
3. Add buttons for each action
Toggle Orientation
Change size Address
Export XML
Text
Value
Barcode
4. Print (Send an array of values keys and its value to be printed
```Print```