Hi, I have a pair of little strange questions...!! It's about possible interaction between Semantic View and this module.

I'm creating a views of nodes containing all cck field associated with each node.
Both "views" and "cck fields" are controlled by semantic modules (Semantic View and this one).

Now... in the normal node display... semantic cck work perfeclty and my fields have all the correct markup...

But in my view... this happens..

One of cck fields that views recall from node, is a cck File Field with multiple value and, in this case, Semantic Views doesn't give me possibilities to style the inner elements of a multiple value field (I can only set a container and a label).

When the views render this field, all inner items has this markup:

<div class="field-item field-item-0">Item</div>

First Question:
Is possible that this markup is result of Semantic CCK activity ??
I'm supposing this because I cannot find anywhere the source of this markup under Views, Semantic Views or File Field (to modify it). I also notice that is very similar to the default values for multiple values fields of Semantic CCK (where you can set # for numbering each elements).

Second Question:
If true, it's possible to set the markup of Semantic CCK field for node display under Views using the same settings? To have final result of:

<ul class="list">
<li>Item</li>
<li>Item</li>
<li>Item</li>
</ul>

Insted of:

<div class="field-item field-item-0">Item</div>
<div class="field-item field-item-0">Item</div>
<div class="field-item field-item-0">Item</div>

I know is a strange question..!!
Thanks a lot...!
Bye.

Comments

Dret’s picture

Title: Default value for semantic cck field in semantic views result?? » [Updated see second post] Semantic CCK row style for Views!
Category: bug » feature

Update,

Problem is all related with Semantic Views: Semantic CCK works perfeclty.

Unfortunatly manteiner of Semantic Views is not responding for this bug correction.

So my question: is possible to realize a Views Style row plugin that "inherit" Semntic CCK value for each field???

Thanks!
Bye