<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.kmacloud.net/index.php?action=history&amp;feed=atom&amp;title=Creating_Forms_with_Multiple_Select_Fields</id>
		<title>Creating Forms with Multiple Select Fields - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.kmacloud.net/index.php?action=history&amp;feed=atom&amp;title=Creating_Forms_with_Multiple_Select_Fields"/>
		<link rel="alternate" type="text/html" href="http://wiki.kmacloud.net/index.php?title=Creating_Forms_with_Multiple_Select_Fields&amp;action=history"/>
		<updated>2026-05-04T16:50:57Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.24.1</generator>

	<entry>
		<id>http://wiki.kmacloud.net/index.php?title=Creating_Forms_with_Multiple_Select_Fields&amp;diff=775&amp;oldid=prev</id>
		<title>Admin: Created page with &quot;A multiple select form field is a select list that the user can hold down control and pick multiple items. They can be an alternative to checkboxes when the real estate on the...&quot;</title>
		<link rel="alternate" type="text/html" href="http://wiki.kmacloud.net/index.php?title=Creating_Forms_with_Multiple_Select_Fields&amp;diff=775&amp;oldid=prev"/>
				<updated>2015-07-06T15:35:45Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;A multiple select form field is a select list that the user can hold down control and pick multiple items. They can be an alternative to checkboxes when the real estate on the...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;A multiple select form field is a select list that the user can hold down control and pick multiple items. They can be an alternative to checkboxes when the real estate on the select form is limited. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
There is a issue with developing multiple select fields because different scripting platforms, on which Contensive runs, handle multiple select responses differently. As a result, Contensive has adopted a standard that works on either. The compromise is important so add-ons developed for php sites will still run on asp and aspx sites. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Creating the Form Field''' &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The name of the field field should end with square brackets. For instance, if your multiple select field is a list of states: &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;input multiple name=&amp;quot;stateIdList[]&amp;quot;&amp;gt; &amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;option value=&amp;quot;1&amp;quot;&amp;gt;New York&amp;lt;/option&amp;gt; &amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;option value=&amp;quot;2&amp;quot;&amp;gt;California&amp;lt;/option&amp;gt; &amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;/select&amp;gt; &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Processing the Response''' &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To get the values from the field, be sure to include the square brakets in the field name &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
string stateIdList = cp.doc.getproperty( &amp;quot;stateidList[]&amp;quot; ) &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This returns a comma delimited list of values. The limitatiion here that you have to work around is that your option values should not contain a comma. &amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>