Trouble adding ajax form elements in hook_view

Hi

I am trying to create some content that displays a graph generated by a remote service. I want to put a couple of of buttons or a check box that allow the user to choice what kind of graph should be generated. I also need a way for an admin to configure some of the settings for this content. The admin should be able to configure the image size, base url, ...

My approach was to define my own content type. I defined

_install(), __uninstall() , _node_info(), and _form() hooks.

So far so good, My admin can create content of this type, and correctly config the content (set the base URL, image size, ...)

My problem is in my _view()

1) I get the form data set by the admin
2) use unset() so that the form fields set by the admin are not display
3) get the image from the remote service
4) generate my display as follows

<?php
$output = "some html tags";
$node->content['bdc_button_bar']['bdc_graph'] = array(
'#markup' => $output,
'#weight' => 3,
);

$node->content['bdc_button_bar']['timeUnit'] = array(
'#title' => t("Choice a graph type"),
'#type' => 'select',
'#options' => array(
'DAY' => 'DAY',
'WEEK' => 'WEEK',
'MONTH' => 'MONTH',
'YEAR' => 'YEAR',
),
'#ajax' => array(

Got my first error

Things have been going really nicely till now. I just switched to the zen theme and I got this error when editing my blocks. I added a menu item for a page that I name "Blog" as the alias. I put the word "Blog" in the path field and I got these messages when I saved.
----------------------------------------------------------------------------------------------------------------------------------------------
**saved message**

Need help with co-related Taxonomies and the Views Module

I'm freaking out.

Having a problem with taxonomies and views. Posted some forum topics, search all around google, documentation and forums, and also asked for help on the irc chat.
I'm considering paying for support with this. I tried to find a paid support service for D7, but found nothing.

So, if any drupal master is offering this kind of service, please let me know and send me the bill.

Sorry if I'm posting this on the wrong place, but I couldn't find a better place.

Thanks

Questions regarding Group Divisions/Sub Groups joining/approval

Hello, I want users in my website to be able to join/request group divisions or sub-groups.

The setup is something like this:

Car Type(Group Division):
- SUV
- Sedan
- Pickup Truck

Car Brand(Group):
- Ford
- Chevy

Varying level of access to content

I need to have each authenticated user setup and edit their own page. Each user must then be able to setup a visitor account (using a different username & password for the visitor account). The visitors to the page will log in using this visitor account information and only be able to view the page (not edit it). Thanks for your help!

What I get with menus / what I want with menus instead!

So, after some searching/reading/posting/googling here is the newbie situation I am not able to resolve.

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x