India

Events happening in the community are now at Drupal community events on www.drupal.org.

Welcoming all Drupal Users & Developers from India.

If you are organizing a meetup, update @ http://bit.ly/drupal-india-db

Join the Drupal India mailing list at http://groups.yahoo.com/group/drupal-india

swatee_karpe's picture

Drupal 7 apache solr search module not supported CCK fields for filteration

Hi,
I am using drupal 7.0-alpha7 for testing apachesolr search integration module. I got success in installing this with connection of apache solr server. Even I have added some CCK fields(text field, image field, file field..) and now I want that fields will come in the filter list of apache solr settings page.

In the apache solr search integration information they are given that they also support for CCK fields for filtration.
but in drupal 7 we are not able to find such feature in it.

Please let me know what should do to resolve this issue.
thanks in advance.

Read more
stevebayerin's picture

Malayalam Translation Progress

Check out the Malayalam translation group on the localize Drupal page:
http://localize.drupal.org/translate/languages/ml

Read more
gauravkhambhala's picture

Drupal 7 Release Party by Gujarat Drupal User Group, Ahmedabad

Start: 
2011-01-07 06:30 - 08:30 Asia/Calcutta
Event type: 
User group meeting

GDUG - Gujarat Drupal User Group and CIGNEX invites you to Drupal 7 Release Party in Ahmedabad, Gujarat, India. Come with Drupal Enthusiasts, participate, meet, and celebrate Drupal 7 Release with fellow Drupallers.

DATE:
Jan 7, 2011/Friday

TIME:
6:30 PM to 8:30 PM IST

AGENDA:
[1] Introduction & Welcome
[2] Drupal 7 Tech Talk (round robin among 10 speakers)
[3] Drupal Quiz (Surprise gifts)
[4] Drupal 7 Cake & Snacks & Networking

VENUE:
CIGNEX Technologies

Read more
adityamooley's picture

Color picker widget for Term Fields

Hi group,

I want to add color picker to my taxonomy terms form so that each term can be assigned unique color code. I found the Terms Field module which allows me add extra fields to taxonomy term form but I couldn't find a color picker widget for it.

I would really appreciate if someone can provide me a useful pointer in order to achieve this.

CCK has a color picker available but again I didn't find anything which will allow me to use CCK fields with taxonomy.

Read more
adityamooley's picture

Drupal 7 release party - Nagpur

Start: 
2011-01-08 16:00 - 19:00 Asia/Calcutta
Organizers: 
Event type: 
User group meeting

Drupal users from Nagpur will be celebrating the release of Drupal 7 on 8th January 2011. Developers, users and anyone who is interested in Drupal (or PHP) are invited.

A brief presentation will be shown on the new features of Drupal 7 followed by open discussion on anything related to Drupal.

Venue:
F-40, Jog House,
Behind Tatya Tope Hall,
Tatya Tope Nagar,
Nagpur, Maharashtra 440015
India

More details and RSVP here -> http://www.facebook.com/event.php?eid=168582989849986

Read more

Drupal 7 Press Release - India

Know of any interesting site that's using Drupal 7 in India, please list in here.

Drupal 7 Contributors, drop in your names with a brief of your contributions. A link to your profile a must.

Sivaji: Contributed to Patches in Drupal 7 Core

Read more
shiv.godi's picture

Drupal 7 Release Party Chennai

Start: 
2011-01-07 18:30 - 23:00 Asia/Kolkata
Event type: 
User group meeting

Folks singup for the Party !


Drupal 7 - Time to party!

Venue:
UniMity Solutions Pvt Ltd
3, 5th Floor, "Kasi Arcade"
116, Thyagaraya Road
T.Nagar, Chennai 600017

Join us in the Fun yet again.... Please signup!

Read more
Liaz's picture

What about India ? (Translation of Drupal 7 announcement and press release)

Hi everyone,
here is the wiki page where is centralized all information about the translation of Drupal 7 announcement.
http://groups.drupal.org/node/113499

What do you think about translate it in Hindi or/and local languages such as Tamil, Malayalam etc... Would it be nice ? or is english enough ?
What do you think about it ? and would you like to be part of it ?

You can find further informations at the wiki page : http://groups.drupal.org/node/113499

Regards,
Liaz

Read more
sagarmitra's picture

Input values into drupal form programmatically

How can i populate the form fields programmatically
Let me illustrate, consider the following example

<?php

function form(){
return
drupal_get_form('myform');
}
function
myform($form_state){
   
$form['name'] = array(
  
'#type' => 'textfield',
'$title' => 'Name: ',
   );
$form['submit'] = array(
'#type' => 'submit',
   
'#value' => 'Save',
);
return
$form;
}
function
myform_submit($form,&$form_state){
   
$form_id = 'myform';
$form_state['values']['name'] = 'Hello World';
  
drupal_execute($form_id,$form_state);
}
?>
Read more
sagarmitra's picture

How to populate form field after submit event of a drupal form ?

Can anyone give a working example of how to populate a form field after a submit event in drupal?
How can it be done using drupal_execute($form_id,$form_state)?

Read more
anil614sagar's picture

Drupal 7 Release party in Bangalore by Drupal Bangalore User Group

Start: 
2011-01-09 10:00 - 16:00 Asia/Dili
Organizers: 
Event type: 
User group meeting

Hi Guys,

We would like to announce Drupal 7 Release Party Meetup in Bangalore. So many times we successfully organised meet ups in Bangalore. This meet up will be special and on Drupal 7 new features.

We would like to invite all Drupal Enthusiasts from Bangalore to join this event. We would like to conduct some sessions on Drupal 7 to introduce its killer features and hands on workshop.

I would like to take one session on introducing Drupal 7 Killer features.

I would recommend some one to take hands on workshop using Drupal 7.

Read more
Sree's picture

drupal7 release party!

sagarmitra's picture

Create workflow programmatically

Can anyone give me an example of how to create a workflow programmatically? I have a workflow already set up using the GUI. I just need to invoke the state change on a submit event. Any ideas?

Read more
sudarshan.taparia's picture

Views

I wished to connect two views. ie . supply the output of one view to the input to the other view.
For eg.

Suppose I have created a vocabulary project members.And I add two terms to the vocabulary male and female.Now i create 5 nodes of story type and tag them as male and female.
Suppose I have entered(Sudeep,Sudarshan as Male and Pallavi,Menka as female)
Now first page of view should show

male
female

then when I click on male it should show
Sudeep (Node Title to be connected to its node)
Sudarshan(Node Title to be connected to its node)

Read more
sudarshan.taparia's picture

Views

I wished to connect two views. ie . supply the output of one view to the input to the other view.
For eg.

Suppose I have created a vocabulary project members.And I add two terms to the vocabulary male and female.Now i create 5 nodes of story type and tag them as male and female.
Suppose I have entered(Sudeep,Sudarshan as Male and Pallavi,Menka as female)
Now first page of view should show

male
female

then when I click on male it should show
Sudeep (Node Title to be connected to its node)
Sudarshan(Node Title to be connected to its node)

Read more
dipen chaudhary's picture

Drupal monthly meetup

Start: 
2010-12-18 16:30 - 18:00 Asia/Calcutta
Organizers: 
Event type: 
User group meeting

Hi,

This is call for the monthly drupal meetup which we started last month and had much fun discussing the latest and greatest in drupal + other interesting open source projects which can be used with drupal to help the cause of scalability, interoperability and mobile development. We had lot of discussions on deployment strategies as well. Therefore I think it would be apt to have a session on one of deployment strategies we discussed which is drush + features.

Agenda:

1> Session on Drush + Features - 30 mins - Dipen Chaudhary

Read more
gauravkhambhala's picture

Drupal meetup Ahmedabad

Start: 
2010-12-25 15:00 - 17:00 Asia/Calcutta
Event type: 
User group meeting

Agenda for the meetup,
1. Discussion on Drupal 7
2. Day to day life with Drupal
3. Discuss some challenging Drupal work done in recent past
4. Networking

Venue:
CIGNEX Technologies Pvt Ltd.
1st Floor, President Plaza
Opp. Muktidham Derasar
Thaltej Cross Roads, S G Highway
Ahmedabad - 380 054 Gujarat, INDIA

Edit*
Agenda:
Drupal 7 release party discussion as per the thread http://groups.drupal.org/drupal-seven-release-party-1-7-11

*See Meetup Summary Over here: http://groups.google.com/group/gujarat-drupal-user-group/browse_thread/t...

Read more
siva_epari's picture

Drupal Tutorial Workshop at National Convention for Academics & Research, 2010

Start: 
2010-12-16 10:00 - 20:00 Asia/Kolkata
Event type: 
Training (free or commercial)

Hi Drupalers,

Read more
Mandakini_Kumari's picture

Best drupal chat module for Live chat

Hi

Is any chat module where customer can interact with site administrator without login.
Example you can see on http://www.hostgator.com/ here many customer can talk with one or many sales support team.

I implemented few module but not satisfy with result e.g. DrupalChat work after login only

Read more
gauravkhambhala's picture

Drupal meetup ahmedabad, gujarat area

Hi everyone,

We never had Drupal meetup in Ahmedabad. I have been meeting few Drupal Developers, around 5 of us felt that we should have Drupal meetup.
We are planning one around December end wherein Drupal Developers in Ahmedabad or Gujarat can come and share anything about Drupal. We are debating on the agenda for the meetup.

Agenda for the meetup can be
1. Discussion on Drupal 7 and
2. Discuss some challenging Drupal work done in recent past
3. Networking

Read more
Subscribe with RSS Syndicate content

India

Group notifications

This group offers an RSS feed. Or subscribe to these personalized, sitewide feeds: