This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
I just found the GUI composer wiki (i.e. )
It says the following about the checked Listbox:
The CheckedMultiSelect widget is an exact replacement for the HTML SELECT element and was created to provide a thin widget wrapper that provides the ability to select multiple items. You provide a list of acceptable value pairs consisting of text to be displayed and the hidden text value to be submitted with a FORM.
Why would the Values need to be a string array?
Stephen
When I preview the GUI application, a red "x" appears at the top left hand side of the checked listbox.
"values: the index value is null" appears when I hover the mouse pointer over the red "x".
The Values test box is not empty. It have a variable named test.
Stephen
To run outside of CCS you need a GC Runtime, your can downloaded from page below.
It also has some information on exporting an app.
Red X on the widget usually means that symbol that you entered for the binding is not valid OR you have not specified the .out file where symbols need to be obtained. Also, these variables need to be global.
Add "test" to "Selected Value" binding. See picture
When I stop the target the red "x" goes away if the variable is not a structure type variable.
e.g.
typedef struct { unsigned int a1:1; unsigned int a2:1; unsigned int a3:1; unsigned int a4:1; unsigned int a5:1; unsigned int a6:1; } TEST; TEST test;
Could you please send me a simple CCS project and a GUI Composer project (having a checked list box) that works.
Thanks,
Stephen
Hello Martin,
How do I change the value of each checkbox item in the Checked List Box.
None of the items show below worked.
Stephen
1. Added 1,16,64 to Values in Binding
2. Added {1,16,64} to Values in Binding
3. Added GUI_ValueArray to Values in Binding. GUI_ValueArray is an array in the target application code that is defined as
unsigned char GUI_Value[] = {1,16,64}