<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://www.aras.com/community/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>Changing property of a tick box</title><link>https://www.aras.com/community/f/development/3349/changing-property-of-a-tick-box</link><description>Hello,

Hope someone can help me, as I am not sure what is going wrong on what is a simple thing.

I have a form (PR) that has a Boolean tick box (trl_on_hold) that is set as disabled on the form (so it can be seen but not changed by the users)

I am</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Changing property of a tick box</title><link>https://www.aras.com/community/thread/700?ContentTypeID=1</link><pubDate>Wed, 02 Aug 2017 09:21:54 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:cff2b131-4cdd-4e14-88df-4c3546e85313</guid><dc:creator>Yoann Maingon</dc:creator><description>Try 1 : won&amp;#39;t work because what you actually want to do is just change the boolean value (&amp;quot;0&amp;quot; or &amp;quot;1&amp;quot;)

Try 2 : you need to provide the PR id to edit it.

Item pr = this.newItem(“PR”,”edit”);

pr.setID(&amp;quot;0830480384038403804&amp;quot;);
pr.setProperty(“trl_on_hold”,”1″);
pr = pr.apply();

&amp;nbsp;

Try 3: not sure what you try to do, but doesn&amp;#39;t seem like the way to go.

regarding the return, it depends the context you are running in.

&amp;nbsp;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>