Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
1k views

A good tutorial for Drupal 7 cTools

I've been looking all over the internet for a good tutorial to help me start using cTools AJAX in Drupal 7. Any help with that ?!
4
votes
2answers
703 views

“context” on a drupal page

This question is a general one, and I've already posted a version of it here. I'm hoping, though, that I'll have a better chance of getting a response, and of being useful to more people, by asking in ...
3
votes
1answer
824 views

Drupal: How to make a fieldset dependent using CTools

I am using Ctools Dependency to make a fieldset hideable. This is part of my code: $form['profile-status'] = array( '#type' => 'radios', '#title' => '', '#options' => array( ...
2
votes
1answer
397 views

Combining Page Manager and Mini Panels

I understand how I can use the Ctools Page Manager to override the system edit form for a specific content type. And I understand how I can use the Panels Dashboard to create a Mini Panel which can be ...
1
vote
0answers
52 views

Drupal 7 - “illegal choice” error for ajaxed select field (not using Drupal FAPI #ajax)

Trying to figure out how to solve an "illegal choice has been detected" error when using non FAPI ajax methods to replace a select list. Example on node create form, there's a link below a select ...
1
vote
0answers
164 views

Drupal 7 CTools Upgrade Gives Ajax Popup Error

We upgraded our core modules just fine. We then upgraded Ctools and Date module and our popups are now throwing errors. jQuery versions look the same. I've searched and cannot find why this is ...
1
vote
2answers
189 views

Drupal Page manager: Can I provide a variant in my module?

I have a module that provides a number of pages to the Page Manager module using hook_default_page_manager_pages(). This works out fine. But now I would also like to provide a variant for the system ...
1
vote
1answer
285 views

drupal ctools - how to show view in modal

I'm wodering how to show a view into a modal? Could someone give me an example? Further more I like to call the view out of an action ... i've no clue to do this.. Hop some could help me and have ...
1
vote
1answer
909 views

Ajax loading in Drupal using Ctools breaks

I'm working on a custom module using CTools ajax and form. I tried to combine this example with the one from here. It goes like this: a user chooses from one of the radio buttons, on submit the map of ...
1
vote
1answer
405 views

How to make multistep forms with drupal using various node types

I'm creating a very basic classifieds website. In this website i'll have various content-types; such as : Car (which has the cck fields : year, kilometers, color House (which has the cck fields : ...
1
vote
1answer
188 views

Drupal: what's the simliar way of views_embed_view() for embeding a Panel page?

i use to use views_embed_view API function to load views automatically. now i need to load a panel content problematically; but i could not find a function like views_embed_view. is there such a ...
1
vote
1answer
1k views

Drupal Ctools Form Wizard in a Block

Hi everyone I created a custom module that has a Ctools multi step form. It's basically a copy of http://www.nicklewis.org/using-chaos-tools-form-wizard-build-multistep-forms-drupal-6. The form ...
1
vote
2answers
597 views

Drupal 6.x CTools

We make use of views and panels quite often in Drupal and a lot of people are utilizing CTools in development. I can't find a lot of documentation on what it is and why you'd use it and the drupal.org ...
0
votes
0answers
76 views

drupal 6 ctools multistep, submit(save) on back button click

I am working on an issue with Drupal 6 and ctools. Creating a form with multistep: The form is working fine, but what i want is to save the partial data of a step, when someone clicks on the back ...
0
votes
1answer
52 views

HTML / Php forms - how to save an optional, unselected drop-down as null/empty instead of an option?

I'm building forms for Drupal 6 through the cTools wizard (which is primarily php), and I have a few select boxes that are optional. I have my options set up like so: 0|Select 1|option 1 ...
0
votes
1answer
449 views

How do you close a manually created and opened ctools modal in Drupal 6?

Given this code that creates and opens a ctools modal in a Drupal 6 site: var content = 'my content'; var title = 'my title'; Drupal.CTools.Modal.show(); $('#modal-title').html(title); ...
0
votes
0answers
384 views

How to load modal form on page load using ctools drupal module?

I have an issue to show modal form on page load. This form will have 3 steps to submit. I've found CTools will suit the best. I'm newbie in drupal, that's why I've looked all tutorials ctools. Every ...
0
votes
2answers
51 views

How do you change the format of the header of a ctools modal window in Drupal?

I have a a standard ctools modal window. I am able to style the header section title text, and customize that text, but I want to change the right side of the header which has "Close window" and an X ...
0
votes
0answers
528 views

drupal 7: page manager/panels and hook_node_view

I'm trying to run some custom code on a particular type of node when it is viewed. Just a little bit of code I used to implement with nodeapi. This works fine in Drupal 7, but since I am overriding ...
0
votes
0answers
100 views

Create custom contexts in panels

I would like to be able to check in which menu and on which level the menu item is, which links to the current path in Panels 3. Thanks Lukas
0
votes
2answers
592 views

What is a path from Ctools Modal to Modal Frame API

I wrote a module that uses the Ctools Modal Window to serve a form wizard. I would like to switch to using the Modal Frame API (which uses the JQuery UI Dialog as the modal). If someone has some ...
0
votes
1answer
747 views

How to theme the ctools modal window

Does anybody know how I can theme the ctools modal window. I've tried putting the css that it comes with in my own theme to over-ride it, but that is not working for me. Thanks!