Open
Description
A user has requested that the RowClickUrl be enhanced to provide a Target option. I see the code that operates on the e.Which at line 302 of griddly.js.
if (e.which == 2 || e.ctrlKey)
window.open(url);
I would like to add a RowClickUrlTarget attribute that takes a string to allow us to pass in a value. I would put it in a data-griddly-url-target
value on the td
and pick it up in the javascript at the same place the url is discovered.
Or, is there a way to do this already (beside the ctrl-click option that already exists)?