Skip to main content
Nintex Community Menu Bar

Hi,

 

I have a scenario where I allow users to select multiple query types from a Smartbox SMO, which is a list of predefined query types.

 

I have setup the picker control to Allow Multiple, Save as XML with ; delimeter. I also made the field a multivalue field in the SMO, yet the data does not save to the SMO. When the SMO is viewed in Management Site, the results are blank. 

 

Any tips on how to trouble shoot?

 

Thanks

MarkusB

Hi,


 


The multivalue property type stores data in the following format:


<collection>


  <object>


    <fields>


      <field>


        <value>1</value>


      </field>


      <field>


        <value>2</value>


      </field>


    </fields>


  </object>


</collection


 


In your picker control, try checking on "Save as XML". This will store your values in a XML formatted value.


 


Useful references:


Picker control


SMO Properties


 


Reply