jui_datagrid icon indicating copy to clipboard operation
jui_datagrid copied to clipboard

jQuery datagrid plugin using jQuery UI CSS Framework

Results 17 jui_datagrid issues
Sort by recently updated
recently updated
newest added

CTRL CLICK and SHIFT CLICK could be detected as follows http://stackoverflow.com/questions/9451726/multiple-item-selection-by-pressing-ctrl-button ``` javascript $("#" + table_id + " tbody tr").click(function(event) { event.preventDefault(); if(event.ctrlKey) { alert('ctrl click'); } else if(event.shiftKey) {...