Reservation system

Hi,

I am searching for a reservation system with the possibility to schedule different activities.

Node Title Link

Hi everyone, I've been a Drupal user for 6 years and I am just setting up a new site using Drupal 7. I want to create something similar to longform.org wherein each node appears on the front page with a small blurb and the title linking out to the original article. I've done this in Drupal 6 quite easily using different modules but I can't figure out how to do it in 7. Can anyone help me out?

Thanks in advance for your comments.

Creative use of taxonomy fields?

Now that CCK is basically in D7 core, taxonomy fields can be customised like any other content type. But how far can/should you take this? Replace content types with taxonomy? Add taxonomy terms to taxonomy?

I hadn't thought about this until today, but I only started work on my own website two weeks ago. Last I used Drupal was one year ago, and that was D6. D7 looks so good, but like I remember there are multiple ways to do things, and not always consensus on best practice.

Ajax'ify node add/edit form

Hey,

I try to get an ajax-request performed by a textfield when creating a node.

I defined a field (node_timeline_archive_url) which is instanced for that node type and therefore the form element is already present when hook_form_alter is invoked.

The following code attaches the div (so I know the code actually is performed on the right element) but my ajax-callback is never run.

function timeline_form_alter(&$form, $form_state, $form_id) {
  switch ($form_id) {
    case 'node_timeline_archive_node_form':

      $form['node_timeline_archive_url']['#ajax'] = array(
        'callback' => 'ajax_check_url_callback',
        'wrapper' => 'url-check-div',
        'method' => 'replace',
        'effect' => 'fade',
      );

      $form['node_timeline_archive_url']['#suffix'] = '<div id="url-check-div"></div>';
      break;
  }
}

function ajax_check_url_callback ($form, $form_state) {
  return 'Well done - That was Ajax.';
}

However, if I define a new form element with the same ajax properties, the request is performed:

<?php
$form['test'] = array(
'#type' => 'textfield',
'#title' => t('What URL do you want to check?'),
'#ajax' => array(
'callback' => 'ajax_check_url_callback',
'wrapper' => 'url-check-div',
'method' => 'replace',
'effect' => 'fade',

New Portal and subsequent client websites using Drupal 7

We are interested in working with a Drupal 7 Developer in the development of a community/business portal for a tourism destination in Australia. After the portal is published, it is anticipated that there will be ongoing site management and subsequent new Drupal based website engagements from businesses operating within or supplying services to the destination.

Possible to Comment on Views display in Table row Style?

Hi Guys
Hope you are all well!

Iam still new a newbie in drupal and iam playing around with views to a certain extent that iam actualy comfortable with it, iam not an expert yet but iam getting there!

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x