checkeasy ========= Iterate through a table's rows and zoom in on each row. You can define actions which consist of a keyboard shortcut and a callback. Javascript implementation is modeled after PHP's Iterator interface. Requirements --- - JQuery Basic usage --- These need to be loaded first ```html ``` Then, assuming you defined a well-formed table in your page: ```html
Column name #1 Column name #2 Column name #3
data 1 data 2 data 3
data a data b data c
data I data II data III
``` You can now initialize the zoomer: ```javascript var checkEasy = null; $(document).ready(function () { checkEasy = new CheckEasy('myDataTable', { "Close": { key : "Esc", action: function () { checkEasy.unzoom(); } }, "Next" : { key : "n", action: function () { checkEasy.zoomNext(); } }, "Prev" : { key : "p", action: function () { checkEasy.zoomPrev(); } } }); }); ``` API --- todo