Is there a maximum number of characters allowed for the style property >> Property Name?

Miko

Well-known member
Is there a maximum number of characters allowed for the style property >> Property Name?

I was working a few new style properties and noticed that a couple with really long names did not work, I didn't get any errors just didn't work.

Shortening the names fixed the issue.

I'm wondering what is the maximum number of characters allowed for the style property >> Property Name?


Thank you,
Miko
 
i think 50 chars (tabledefinition:
property_name
varchar(50) )​
datawriter
PHP:
'property_name' => array('type' => self::TYPE_STRING,
					'required' => true,
					'maxLength' => 50,
 
Looks like the property name is restricted to 50 characters, at the DataWriter level.

- property name: 50
- property title: 50 .. 100
- property description: 250 .. 255

Edit: Doh!
Edit2: See post #8.
 
Looks like the property name is restricted to 50 characters, at the DataWriter level.

- property name: 50
- property title: 50
- property description: 250

Edit: Doh!
hm, i'm having other values (beta6)^^

prop_name: 50 (table: 50)
title: 100 (table 100)
desc: 250 (table 255)

Fixed in the DataWriter. Limited to 100 chars now.
You'll need to change it in the db schema to:P *scnr*
 
Top Bottom