<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>How to display check box</title><link>https://community.appian.com/discussions/f/user-interface/25822/how-to-display-check-box</link><description>Hi, 
 How to show a checkbox like below 
 
 
 Thanks a lots</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: How to display check box</title><link>https://community.appian.com/thread/100938?ContentTypeID=1</link><pubDate>Sun, 11 Sep 2022 17:06:45 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f78164e0-cc74-4fe2-bde1-d9bb8d75b8b1</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;Now you can replace&amp;nbsp;updatedictionary() with a!update()&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to display check box</title><link>https://community.appian.com/thread/100937?ContentTypeID=1</link><pubDate>Sun, 11 Sep 2022 15:01:31 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:af63de10-ef38-4606-aaa7-0b6ade22218c</guid><dc:creator>deepakg681722</dc:creator><description>&lt;p&gt;Something like the below:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!value1,
  local!value2,
  {
    a!columnsLayout(
      columns: {
        a!columnLayout(
          contents: {
            a!checkboxField(
              label: &amp;quot;Checkboxes&amp;quot;,
              labelPosition: &amp;quot;COLLAPSED&amp;quot;,
              choiceLabels: {&amp;quot;Option 1&amp;quot;, &amp;quot;Option 2&amp;quot;},
              choiceValues: {1, 2},
              value: local!value1,
              saveInto: local!value1,
              validations: {}
            )
          }
        ),
        a!columnLayout(
          contents: {
            a!checkboxField(
              label: &amp;quot;&amp;quot;,
              labelPosition: &amp;quot;COLLAPSED&amp;quot;,
              choiceLabels: {&amp;quot;Option 3&amp;quot;, &amp;quot;Option 4&amp;quot;},
              choiceValues: {3, 4},
              value: local!value2,
              saveInto:local!value2,
              validations: {}
            )
          }
        ),
        a!columnLayout(
          contents: {
            a!buttonLayout(
              a!buttonWidget(
                label:&amp;quot;Submit&amp;quot;,
                saveInto: {
                  a!writeToDataStoreEntity(
                    dataStoreEntity: {your_entity_constant},
                    valueToStore: updatedictionary(
                      your_local_varible_which_you_have_to_Insert,
                      {
                        fieldName_in_Which_you_want_to_store:joinarray({local!value1,local!value2},&amp;quot;;&amp;quot;) 
                      }
                    )
                  )
                }
              )
            )
          }
        )
      }
    )
  }
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to display check box</title><link>https://community.appian.com/thread/100936?ContentTypeID=1</link><pubDate>Sun, 11 Sep 2022 14:53:57 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8ee63819-9569-4cd1-b458-a46cb720ba39</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Appian does not store any data to your database automatically. I recommend to check the Appian Academy and Tutorials to understand how Appian works.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to display check box</title><link>https://community.appian.com/thread/100935?ContentTypeID=1</link><pubDate>Sun, 11 Sep 2022 14:17:56 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:501de892-172a-4ba2-908e-e178fad10d78</guid><dc:creator>ojask2243</dc:creator><description>&lt;p&gt;&amp;nbsp;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!value1,
  local!value2,
  /*to save DB*/
  local!value,

{
  a!columnsLayout(
    columns: {
      a!columnLayout(
        contents: {
          a!checkboxField(
            label: &amp;quot;Checkboxes&amp;quot;,
            labelPosition: &amp;quot;COLLAPSED&amp;quot;,
            choiceLabels: {&amp;quot;Option 1&amp;quot;, &amp;quot;Option 2&amp;quot;},
            choiceValues: {1, 2},
            value: local!value1,
            saveInto: {local!value1, if(a!isNotNullOrEmpty(local!value2) ,a!save(local!value, joinarray(local!value1,local!value2)), a!save(local!value,local!value1))},
            validations: {}
          )
        }
      ),
      a!columnLayout(
        contents: {
          a!checkboxField(
            label: &amp;quot;&amp;quot;,
            labelPosition: &amp;quot;COLLAPSED&amp;quot;,
            choiceLabels: {&amp;quot;Option 3&amp;quot;, &amp;quot;Option 4&amp;quot;},
            choiceValues: {3, 4},
            value: local!value2,
            saveInto: {local!value2, if( a!isNotNullOrEmpty(local!value1) ,a!save(local!value, joinarray(local!value1,local!value2)), local!value2)},
            validations: {}
          )
        }
      ),
      a!columnLayout(
        contents: {}
      )
    }
  )
}
)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;I also think that, but when dose it save value into DB after chose checkbox field?&lt;/p&gt;
&lt;div class="eJOY__extension_root_class" id="eJOY__extension_root"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to display check box</title><link>https://community.appian.com/thread/100929?ContentTypeID=1</link><pubDate>Sun, 11 Sep 2022 05:34:48 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:32fa7fa5-5bac-4595-82ae-92caeadb3f4d</guid><dc:creator>deepakg681722</dc:creator><description>&lt;p&gt;You can save the checkboxes field value to separate local variables and use the joinarray function to save the data into DB.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to display check box</title><link>https://community.appian.com/thread/100928?ContentTypeID=1</link><pubDate>Sun, 11 Sep 2022 03:42:32 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:67acde03-7079-495c-abb8-3dab4820a783</guid><dc:creator>ojask2243</dc:creator><description>&lt;p&gt;if I use two checkbox, how to save values into database?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to display check box</title><link>https://community.appian.com/thread/100904?ContentTypeID=1</link><pubDate>Sat, 10 Sep 2022 07:57:21 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:60ac7a5a-68c9-4e10-b1e2-c328d9c34666</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;Using a checkbox field! If you want to make it in two-column, then you can add two checkbox fields and split the values to have the first half in the first one and the second half in the second one.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>