I see that I can create an item within a modal form. But is it possible to add multiple nodes in the grid itself?

Comments

tr33m4n’s picture

I'd like to know this as well, would be a great feature

ben_scott’s picture

Sorry, it's not currently possible. The slickgrid jquery plugin does have a neat feature to add rows which I'd really like to implement, but I don't have the time at the moment.

Cheers,

Ben

oryx’s picture

Oh my. I would be so pleased as well to see such a feature added to slickgrid !

razkovnik’s picture

Actually multiple node creation can be implemented by custom module where to implement your_module_form_slickgrid_editor_form_alter. Create your own node form and implement custom submit function.
Inside your_function_form_submit must programatically create the node of the respective type. A comprehensive article on how to create nodes programatically here: http://ivansotof.com/2009/11/create-your-own-node-submission-form.
In two words - you have to subsitute the modal form with your own nodes form and create submit function to actually create the node.