I am currently looking for a solution to a real jQuery "grid."
Every table plugin I have found so far has the same kind of structure and usage ( https://stackoverflow.com/questions/159025/jquery-grid-recommendations ) They all have headers, different buttons, and many more different functions. Yet all of these can be related more to an excel worksheet- which I don't consider a grid- and is something I am not looking for.
The closest solution I have found for a grid with the layout and the ability to select and drag is found here: Select Cells On A Table By Dragging
As you can see in those two images attached in that post
The grid is more like a game board/tiled based.
What I am looking for is a jQuery plugin that makes a real tiled based grid and allows for selecting/drag-to-select functionality, along with (hopefully) a event response to the selection.
I have a custom built table currently made, and I am having trouble adding more functionality with it since the lack of support for different plugins pertaining to dragging and selecting. I have tried implementing this drag to select plugin (http://andreaslagerkvist.com/jquery/drag-to-select/) and have not been able to make it work with a table.
Does anyone have any suggestions?