<?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>Text field</title><link>https://community.appian.com/discussions/f/general/21004/text-field</link><description>I have a requirement with one text field ,adjacent to the label of text field i need to have a check box of boolean type how can i acheive this? 
 Thanks..</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Text field</title><link>https://community.appian.com/thread/105714?ContentTypeID=1</link><pubDate>Mon, 19 Dec 2022 05:41:24 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b4fd273f-700e-4d28-91ed-9cde9eb17530</guid><dc:creator>ujjwalr0002</dc:creator><description>&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/11/pastedimage1671428559044v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Text field</title><link>https://community.appian.com/thread/105713?ContentTypeID=1</link><pubDate>Mon, 19 Dec 2022 04:45:02 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d1fee7e6-1505-4dff-a5ad-f8ca13222933</guid><dc:creator>andrewj4990</dc:creator><description>[deleted]&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Text field</title><link>https://community.appian.com/thread/81824?ContentTypeID=1</link><pubDate>Thu, 20 May 2021 06:25:45 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:19eef4d5-a7da-4d92-abd8-8451a5b708fc</guid><dc:creator>ranjith.shanmugam</dc:creator><description>&lt;p&gt;Hi Srimathi,&lt;/p&gt;
&lt;p&gt;try below code&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/11/pastedimage1621491994072v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!text,
  local!check,
  {
    a!sideBySideLayout(
      items: {
        a!sideBySideItem(
          item: a!textField(
            label: &amp;quot;TEXT :&amp;quot;,
            labelPosition: &amp;quot;ADJACENT&amp;quot;,
            readOnly: true,
            
          ),
          width: &amp;quot;MINIMIZE&amp;quot;
        ),
        a!sideBySideItem(
          item: a!checkboxField(
            choiceLabels: { &amp;quot;&amp;quot; },
            choiceValues: { true },
            value: local!check,
            saveInto: local!text,
            
          ),
          width: &amp;quot;MINIMIZE&amp;quot;
        ),
        a!sideBySideItem(
          item: a!textField(
            label: &amp;quot;&amp;quot;,
            value: local!text,
            saveInto: local!text
          ),
          width: &amp;quot;MINIMIZE&amp;quot;
        ),
        
      },
      alignVertical: &amp;quot;BOTTOM&amp;quot;
    )
  }
)

&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Text field</title><link>https://community.appian.com/thread/81819?ContentTypeID=1</link><pubDate>Thu, 20 May 2021 05:21:04 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:367dd5e3-26a4-457d-a68c-5a1717c18896</guid><dc:creator>kunals0003</dc:creator><description>&lt;p&gt;Hi &lt;a href="/members/srimathig0001"&gt;sri21&lt;/a&gt;,&lt;/p&gt;
&lt;p&gt;Try using a!sideBySideLayout() and add a checkbox field without a label next to your text field. They will look very close together exactly as you want them.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Text field</title><link>https://community.appian.com/thread/81818?ContentTypeID=1</link><pubDate>Thu, 20 May 2021 04:57:51 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e8b6603f-467d-4249-b8ec-24a2f576ef90</guid><dc:creator>Harsha Sharma</dc:creator><description>&lt;p&gt;Its not possible to have the checkbox before the textfield itself, as described in your usecase. As a workaround you can add a label-less checkbox component below the textfield in the UI. For user&amp;#39;s it can make do as related to the text field but from the backend code textField and checkboxField can be tied together.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>