Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Drupal: create content in popup/lightbox?

Tags:

drupal

In Drupal, is there a way to create new content (based on a content type that uses CCK) in a popup or lightbox or similar technique?

like image 608
thatsCheating Avatar asked Jan 27 '10 21:01

thatsCheating


2 Answers

There are at least two worlds that I know of:

http://drupal.org/project/popups_reference which uses http://drupal.org/project/popups

and

http://drupal.org/project/noderelationships which uses http://drupal.org/project/modalframe

Both of these are about creating the node in a modal in order to reference it via a node reference field. There might be ones for more general purposes, or you could probably adapt one of those. I've been enjoying noderelationships lately. Haven't tried the other recently.

like image 59
sprugman Avatar answered Nov 07 '22 07:11

sprugman


The projects sprugman refers to are useful when you need to create a referenced node while you're adding another node. If you simply want to make the /node/add/[contenttype] link to open in a lightbox, try the Lightbox2 module.

like image 26
marcvangend Avatar answered Nov 07 '22 09:11

marcvangend