<html><head></head><body><div>Dear all,</div><div><br></div><div>For some PV filter (named "WriteValue") I am writing a custom widget (class pqPropertyGroupWidget). This includes 4 properties: a string, two "double" values and a list of int values. The list of int values I am "attaching" to the widget with this property definition:</div><div><br></div><div>Q_PROPERTY(QList Ids READ getIds WRITE setIds NOTIFY idsChanged)</div><div><br></div><div>and then in the code I have getIds, setIds and idsChanged defined and declared properly. Everything works fine and nice so far.</div><div><br></div><div>Only what I do not see is anything in the "state" file: there my filter is specified as follows:</div><div><br></div><div>    <Proxy group="filters" type="WriteValue" id="4604" servers="1"></div><div>      <Property name="Ids" id="4604.Ids"/></div><div>      <Property name="Input" id="4604.Input" number_of_elements="1"></div><div>        <Proxy value="4344" output_port="0"/></div><div>        <Domain name="groups" id="4604.Input.groups"/></div><div>        <Domain name="input_type" id="4604.Input.input_type"/></div><div>      </Property></div><div>      <Property name="ReplacementValue" id="4604.ReplacementValue" number_of_elements="1"></div><div>        <Element index="0" value="2"/></div><div>        <Domain name="range" id="4604.ReplacementValue.range"/></div><div>      </Property></div><div>      <Property name="TargetArrayName" id="4604.TargetArrayName" number_of_elements="1"></div><div>        <Element index="0" value="NewAtt"/></div><div>      </Property></div><div>      <Property name="Value" id="4604.Value" number_of_elements="1"></div><div>        <Element index="0" value="12"/></div><div>        <Domain name="range" id="4604.Value.range"/></div><div>      </Property></div><div>    </Proxy></div><div><br></div><div>So the "TargetArrayName", the "Value" and the "ReplacementValue" are all fine with their proper values. Only the "Ids" looks like it contains nothing - which is not the case!</div><div><br></div><div>The specification in the server manager XML looks as follows:</div><div><br></div><div>      <IntVectorProperty command="AddId"</div><div>                         clean_command="ClearIds"</div><div>                         label="Ids"</div><div>                         name="Ids"</div><div>                         number_of_elements_per_command="1"</div><div>                         repeat_command="1"></div><div>        <Documentation></div><div>          IDs for which the value should be set</div><div>        </Documentation></div><div>      </IntVectorProperty></div><div><br></div><div>Is there anything still obviously missing for proper handling of that "Ids" property also in the state file - including the list of values? Or is this simply not a built-in feature, so I need to "dig" even deeper - somehow?</div><div><br></div><div>Many thanks for any helpful hint!</div><div><br></div><div>Regards,</div><div>Cornelis</div></body></html>