Skip to content

Instantly share code, notes, and snippets.

@lukeclifton
Created November 13, 2014 11:46
Show Gist options
  • Save lukeclifton/bfaaa8cea70824f89c90 to your computer and use it in GitHub Desktop.
Save lukeclifton/bfaaa8cea70824f89c90 to your computer and use it in GitHub Desktop.
formsubmitter function
Template.customerCreate.rendered = function () {
$('.formsubmitter').click(function(e) {
e.preventDefault();
var form = '#' + $(this).data('form-id');
$(form).submit();
});
}
@lukeclifton
Copy link
Author

yeah i know what your saying...the reason i'm using this formsumitter code is because my submit button is outside of my form for UI reasons

@lukeclifton
Copy link
Author

cheers for you help dude

@olizilla
Copy link

wait, what even is going on here? You're passing form id's in as template data, to pull them out later to know which form to submit? Sounds hella complex. You wanna chat?

@olizilla
Copy link

@richsilv
Copy link

Incidentally, although it may not end up being relevant here, I do think there is call for global rendered/created/destroyed callbacks and have made the case on meteor-talk in the past. Not sure whether anything will happen, but I do think that there is a use case for this (even if it isn't this one), at least as a set of convenience methods.

@lukeclifton
Copy link
Author

ok, permission to hit me. i realise now that i can just get the form id from the event handler. i pasted the code from a previous non meteor project and didn't check it.

@lukeclifton
Copy link
Author

but yes agree with @richsilv, global rendered functions is still a need

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment