Whenever I add a field with multiple values enabled, that particular column will not appear in table wizard.
The multiple values I was referring to is that whenever you create a CCK field, you have the option to choose 1 value or more(found in the global settings) whether it be text field or image field. If I enable them, say I put two values or more, then the column related to that field would not be displayed any more.
check the CCK multiple values screenshot in the file attachment to know what I mean.
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | screenshot.JPG | 19.61 KB | ultrajet |
Comments
Comment #1
ultrajet commentedComment #2
mikeryanThe Table Wizard deals with database tables, not Drupal objects, and thus doesn't know anything about CCK multiple values. The database table that CCK creates to hold multiple values for a field named example will have columns vid, nid, delta, and field_example_value, and each value will have a different row in the table. And, the primary key for that table is based on two fields, vid and delta, thus cannot be the base table of a view.
Could you share what you're trying to accomplish by adding CCK tables to the Table Wizard? I'm having trouble imagining what this would achieve that isn't available through the builtin CCK views integration, if you can explain it maybe I can offer a solution.
Comment #3
kb_0 commentedComment #4
bdalrymple commentedI think I may be having a similar problem. I have a option choice available in a content type called "Project", with choices such as "wood, concrete, other, etc" but on import, none of the values in the csv file are being transferred into the project. Any ideas on how to fix this?