set up a new property label in Profile module -problem (0.8. RC2)?

Hello guys,

does anyone has the same problem? ->
*****
when I'm trying in Profile module to set up for example this:

property label: SOMETHING
data type: STRING
display type: DROPDOWN LIST
list content: @@SOMETHING TO CHOOSE @@SOMETHING TO CHOOSE @@SOMETHING TO CHOOSE @@SOMETHING TO CHOOSE @@SOMETHING TO CHOOSE @@SOMETHING TO CHOOSE @@SOMETHING TO CHOOSE @@SOMETHING TO CHOOSE

and click on the update configuration (save), then its delete all the data I've inserted in icon_frown It created only the new property label SOMETHING, but without all the data in...
*****

Maybe I'm doing something wrong, so that's why I put this first on this forum...

thanks,
Martin
Precede each option by @@. For combo boxes: id1,label1;id2,label2;id3,label3;... Separate each individual property with a semicolon (';'). Separate the ID and label of each property with a comma (',').
so try in the field
List Content:

Code

@@id1,label1;
@@id2,label2;
@@id3,label3;
@@id4,label4;

it will be saved.
- Igor
Videokid, thanks, but thats, what I already know.

When I insert:

Code

@@id1,label1;
@@id2,label2;
@@id3,label3;
@@id4,label4;
@@id5,label5;
@@id6,label6;
@@id7,label7;

-then its ok and its saved.

but when I insert:

Code

@@id1,label1;
@@id2,label2;
@@id3,label3;
@@id4,label4;
@@id5,label5;
@@id6,label6;
@@id7,label7;
@@id8,label8;
...and more options

it delete all the options.. :o( I don't understand why icon_frown



edited by: mdee24, Jan 03, 2008 - 03:00 PM
indeed, tested it myself...
I thought you were confused how to use, apologies!

Will be checked out...

- Igor
its ok, thanks...I'm glad, its not only my fault :)
Please submit it to the Bug-Tracker


--
best regards from Kiel, sailing city

Steffen Voss

Member of the Zikula Steering Committee
Read The Zikulan's Blog "If you want people to RTFM, make a better FM!"
I already submitted a similar bug [#15211] no blanks i…er-data-fieldnames?

and a feature request [#12995] Dynamic User Data



edited by: Herr.Vorragend, Jan 03, 2008 - 08:59 PM
As I did... icon_redface
So I guess the bug is known... icon_smile

- Igor
@mdee24: Your bug has been fixed during this weekend.
@Carsten: I guess your bug is not related, but please check it too.



--
"He is not dangerous, he just wants to play...."
Landseer, great, many thanks to all postnuke staff!

Landseer

@Carsten: I guess your bug is not related, but please check it too.

Yes, you're right. My bug isn't related with this topic here. icon_rolleyes

------------------

But I have another question:

You're talking about the following content in your new field:

Code

@@id1,label1;
@@id2,label2;
@@id3,label3;
@@id4,label4;


And in the first post, mdee24 ist talking about a dropdown-field (SELECT).

But the is it really possible to use the "@@id1,label1;"- input for the select-type?
In "function.dudoptionalitemmodify.php" it seems to be possible just with combotext.

Because I am looking for a solution for the following problem:
FR #12995 Dynamic User Data

I want to use a radio-field which could use the following content:

Code

@@id1,label1;
@@id2,label2;
@@id3,label3;
@@id4,label4;


Displaying the labels and storing the id(value).

Is this possible?