diff --git a/lib/WebGUI/i18n/English/WebGUIProfile.pm b/lib/WebGUI/i18n/English/WebGUIProfile.pm index 1ff53fc44..227dc6d34 100644 --- a/lib/WebGUI/i18n/English/WebGUIProfile.pm +++ b/lib/WebGUI/i18n/English/WebGUIProfile.pm @@ -69,20 +69,45 @@ to validate any input that the user may supply.|, }, '487 description' => { - message => q|
This field is used for the list types (like Checkbox List and Select List). Enter the value and key pairs, one per line, surrounded by curly braces. See the example below:
+ message => q|This area should only be used in with the following form fields:
+
+Checkbox List
+Combo Box
+Hidden List
+Radio List
+Select Box
+Select List
+
+None of the other profile fields should use the Possible Values field as it will be ignored.
+If you do enter a Possible Values list, it MUST be formatted as follows
- {
- "database value 1" => "form label 1",
- "database value 2" => "form label 2",
- "database value 3" => "form label 3",
- }
-
-|,
+{
+ "key1"=>"value1",
+ "key2"=>"value2",
+ "key3"=>"value3"
+ ...
+}
+
+ This area should only be used if you have used the Possible Values area above which is to say that it should only be used in conjunction with:
+
+Checkbox List
+Combo Box
+Hidden List
+Radio List
+Select Box
+Select List
+
+None of the other profile fields should use the Default Values field as it will be ignored. If you do enter Default Values, they MUST directly reference one or more of your Possible Values keys as follows:
+
["key1","key2",...]