<?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>Save to DB</title><link>https://community.appian.com/discussions/f/general/33873/save-to-db</link><description>Hi Everyone, 
 I need to store the values of lablels in col1, corresponding to col2 and col3 which are checkboxes into database and retrive it when the interface is loaded. Can anyone please help me out how to achieve this?</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Save to DB</title><link>https://community.appian.com/thread/128811?ContentTypeID=1</link><pubDate>Fri, 02 Feb 2024 17:00:45 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:cc0fcb63-cfe7-4cd0-aea8-7071d8d69367</guid><dc:creator>Abhay Dalsaniya</dc:creator><description>&lt;p&gt;You need to have a CDT (with 3 fields -col1,col2,col3) which represents this tabular structure. Then you can use it in grid or any other layout.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Save to DB</title><link>https://community.appian.com/thread/128455?ContentTypeID=1</link><pubDate>Tue, 30 Jan 2024 06:34:06 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:726d2212-69e9-454e-8483-a5d1a920087b</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;Works in either way. You can run a look on unique labels to create columnsLayout() and run another loop in the outer loop, on the properties of the label to create columns in the columnsLayout()&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Save to DB</title><link>https://community.appian.com/thread/128454?ContentTypeID=1</link><pubDate>Tue, 30 Jan 2024 06:32:02 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ab241414-6c22-4613-a5b6-ce506773eed0</guid><dc:creator>Rahul009</dc:creator><description>&lt;p&gt;&lt;a href="/members/harshitb6843"&gt;Harshit Bumb (Appyzie)&lt;/a&gt;&amp;nbsp;, these are not in grid but instead in column layout.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Save to DB</title><link>https://community.appian.com/thread/128452?ContentTypeID=1</link><pubDate>Tue, 30 Jan 2024 06:10:45 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:a1574d3e-a793-4c05-9752-71e7c8e5d239</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;If the columns are fixed and will never increase or decrease, then the easiest way will be to create a dedicated column&amp;nbsp;for every property in table an and use it in your editable grid.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;If the column count isn&amp;#39;t fixed, then you can use the below structure.&amp;nbsp;&lt;/p&gt;
&lt;table dir="ltr" border="1" cellpadding="0" cellspacing="0" data-sheets-root="1"&gt;&lt;colgroup&gt;&lt;col width="100" /&gt;&lt;col width="100" /&gt;&lt;col width="100" /&gt;&lt;/colgroup&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Label&lt;/td&gt;
&lt;td&gt;Property&lt;/td&gt;
&lt;td&gt;IsActive&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Col1&lt;/td&gt;
&lt;td&gt;Property1&lt;/td&gt;
&lt;td&gt;TRUE&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Col1&lt;/td&gt;
&lt;td&gt;Property2&lt;/td&gt;
&lt;td&gt;FALSE&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Col2&lt;/td&gt;
&lt;td&gt;Property1&lt;/td&gt;
&lt;td&gt;TRUE&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Col2&lt;/td&gt;
&lt;td&gt;Property2&lt;/td&gt;
&lt;td&gt;TRUE&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Save to DB</title><link>https://community.appian.com/thread/128451?ContentTypeID=1</link><pubDate>Tue, 30 Jan 2024 05:57:26 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d3aecd9a-35d3-40c4-9a98-6e5a64dd0b06</guid><dc:creator>Rahul009</dc:creator><description>&lt;p&gt;right, labels and their selection values whether checked or not.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Save to DB</title><link>https://community.appian.com/thread/128448?ContentTypeID=1</link><pubDate>Tue, 30 Jan 2024 05:43:04 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:09640250-41ce-4fe1-9a41-48f2c644da72</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;Do you just want to store if the lable1, col1&amp;nbsp;combination was checked or not? and similarly for all the combinations?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>