-
Notifications
You must be signed in to change notification settings - Fork 11
New RowIds feature and select column storage across data refresh #12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Currently there is a "Select None" link that is functional, but there is not a "Select All" as that feature requires more discussion about implementation. Added support for foreign keys in the Select Column, similar to M3 grid's secondaryDataFields. Also added ID's to each row of sample data.
New RowIds feature and select column storage across data refresh
inputs += "<input name=\"ids\" value=\"" + this + "\" />"; | ||
$.each(selection, function () { | ||
$.each(this, function () { | ||
inputs += "<input name=\"ids\" value=\"" + this + "\" />"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this use the id name?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I think you're right. I'll fix.
On Wed, Nov 12, 2014 at 4:20 PM, Chris Hynes [email protected]
wrote:
In Griddly/Scripts/griddly.js:
@@ -937,9 +1009,10 @@
if (token.length)
inputs += '<input type="hidden" name="' + token.attr("name") + '" value="' + token.val() + '" />';
$.each(ids, function ()
{
inputs += "<input name=\"ids\" value=\"" + this + "\" />";
$.each(selection, function () {
$.each(this, function () {
inputs += "<input name=\"ids\" value=\"" + this + "\" />";
Should this use the id name?
—
Reply to this email directly or view it on GitHub
https://github.com/programcsharp/griddly/pull/12/files#r20252404.
Tighten up selection display
No description provided.