3

I have CCK Members (title, age, ...) and because of the huge number of members I have, it would be tiresome to update some of the fields (sample below is age-field) one-by-one.

I need a way to build something like picture below with Drupal 6/7. Is this possible using Views? if not, any suggestions?

Here's the link for my illustration

https://i.stack.imgur.com/F9SXM.png

thanks for any helps.

Bonn
  • 33
  • 1
  • 3

1 Answers1

0

You can use Views Bulk Operations (VBO) to perform tasks on multiple nodes, users, etc at a time. I don't think the form will look the same way, but it will allow you to more easily update CCK fields (along with many other helpful operations) at one time.

Laxman13
  • 5,226
  • 3
  • 23
  • 27
  • thanks, I found that VBO combined with editablefields module can achieve that. Thanks! – Bonn Jun 15 '11 at 16:20