<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Custom Selector - Everything Else				            </title>
            <link>https://www.augforums.com/forums/everything-else/custom-selector/</link>
            <description>Acumatica User Group Forums</description>
            <language>en-US</language>
            <lastBuildDate>Wed, 17 Jun 2026 01:37:06 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Custom Selector</title>
                        <link>https://www.augforums.com/forums/everything-else/custom-selector/#post-5285</link>
                        <pubDate>Thu, 03 Oct 2019 20:21:16 +0000</pubDate>
                        <description><![CDATA[Without going into how to add a custom field, here&#039;s a sample selector attribute for turning a regular old int field into a selector for CRCase:[PXSelector(typeof(
 //What table to look at ...]]></description>
                        <content:encoded><![CDATA[<p>Without going into how to add a custom field, here's a sample selector attribute for turning a regular old int field into a selector for CRCase:</p><pre style="font-family: Cascadia Code;font-size: 12px;color: gainsboro;background: #1e1e1e">[<span style="color: #4ec9b0">PXSelector</span>(<span style="color: #569cd6">typeof</span>(
 <span style="color: #57a64a">//What table to look at (CRCase), and what related field you want to save into the DB (caseID).  Also a Where to filter for only status = open</span>
        <span style="color: #4ec9b0">Search</span>&lt;<span style="color: #4ec9b0">CRCase</span><span style="color: #b4b4b4">.</span><span style="color: #4ec9b0">caseID</span>
        , <span style="color: #4ec9b0">Where</span>&lt;<span style="color: #4ec9b0">CRCase</span><span style="color: #b4b4b4">.</span><span style="color: #4ec9b0">status</span>, <span style="color: #4ec9b0">Equal</span>&lt;<span style="color: #4ec9b0">CRCaseStatusesAttribute</span><span style="color: #b4b4b4">.</span><span style="color: #4ec9b0">Open</span>&gt;&gt;&gt;
    )
 <span style="color: #57a64a">//The fields shown in the Grid.  You can add more or less, just keep within the { }s.  </span>
 <span style="color: #57a64a">//To show fields from other tables, you need to add a join into your Search.</span>
    , <span style="color: #569cd6">new</span> <span style="color: #4ec9b0">Type</span>[] { <span style="color: #569cd6">typeof</span>(<span style="color: #4ec9b0">CRCase</span><span style="color: #b4b4b4">.</span><span style="color: #4ec9b0">caseCD</span>), <span style="color: #569cd6">typeof</span>(<span style="color: #4ec9b0">CRCase</span><span style="color: #b4b4b4">.</span><span style="color: #4ec9b0">status</span>), <span style="color: #569cd6">typeof</span>(<span style="color: #4ec9b0">CRCase</span><span style="color: #b4b4b4">.</span><span style="color: #4ec9b0">subject</span>) }
 <span style="color: #57a64a">//The surrogate key.  What you'll see as the "Value" in the field</span>
    , SubstituteKey <span style="color: #b4b4b4">=</span> <span style="color: #569cd6">typeof</span>(<span style="color: #4ec9b0">CRCase</span><span style="color: #b4b4b4">.</span><span style="color: #4ec9b0">caseCD</span>)
 <span style="color: #57a64a">//Comes after the "-" (EX: customers will have "BAcctCD - AcctName" -&gt; in this case BAccount.acctName is the DescriptionField)</span>
    , DescriptionField <span style="color: #b4b4b4">=</span> <span style="color: #569cd6">typeof</span>(<span style="color: #4ec9b0">CRCase</span><span style="color: #b4b4b4">.</span><span style="color: #4ec9b0">subject</span>)
 <span style="color: #57a64a">//Caches the results</span>
    , CacheGlobal <span style="color: #b4b4b4">=</span> <span style="color: #569cd6">true</span>)]</pre><p>Add this attribute to your field and you should be good to go.</p>]]></content:encoded>
						                            <category domain="https://www.augforums.com/forums/everything-else/">Everything Else</category>                        <dc:creator>Wyatt.ERP</dc:creator>
                        <guid isPermaLink="true">https://www.augforums.com/forums/everything-else/custom-selector/#post-5285</guid>
                    </item>
				                    <item>
                        <title>RE: Custom Selector</title>
                        <link>https://www.augforums.com/forums/everything-else/custom-selector/#post-5252</link>
                        <pubDate>Mon, 30 Sep 2019 14:57:28 +0000</pubDate>
                        <description><![CDATA[Thanks.  I&#039;ll check that out.]]></description>
                        <content:encoded><![CDATA[<p>Thanks.  I'll check that out.</p>]]></content:encoded>
						                            <category domain="https://www.augforums.com/forums/everything-else/">Everything Else</category>                        <dc:creator>Justin Rolfs</dc:creator>
                        <guid isPermaLink="true">https://www.augforums.com/forums/everything-else/custom-selector/#post-5252</guid>
                    </item>
				                    <item>
                        <title>RE: Custom Selector</title>
                        <link>https://www.augforums.com/forums/everything-else/custom-selector/#post-5237</link>
                        <pubDate>Sun, 29 Sep 2019 00:39:47 +0000</pubDate>
                        <description><![CDATA[Justin,I&#039;d recommend asking this on StackOverflow. You&#039;ll get better help there on customizations]]></description>
                        <content:encoded><![CDATA[<p style="text-align: justify">Justin,</p><p>I'd recommend asking this on StackOverflow. You'll get better help there on customizations:</p><p><strong><a href="https://stackoverflow.com/questions/tagged/acumatica" target="true">https://stackoverflow.com/questions/tagged/acumatica</a></strong></p>]]></content:encoded>
						                            <category domain="https://www.augforums.com/forums/everything-else/">Everything Else</category>                        <dc:creator>Tim Rodman</dc:creator>
                        <guid isPermaLink="true">https://www.augforums.com/forums/everything-else/custom-selector/#post-5237</guid>
                    </item>
				                    <item>
                        <title>Custom Selector</title>
                        <link>https://www.augforums.com/forums/everything-else/custom-selector/#post-5112</link>
                        <pubDate>Thu, 12 Sep 2019 21:39:14 +0000</pubDate>
                        <description><![CDATA[I&#039;m wanting to create several drop-down or selector fields in a customization for Cases.  Is there a set of good documentation on how to create either classic drop-down fields or selectors? ...]]></description>
                        <content:encoded><![CDATA[<p>I'm wanting to create several drop-down or selector fields in a customization for Cases.  Is there a set of good documentation on how to create either classic drop-down fields or selectors?  I'd like to do most things with a selector because the user can add additional options as necessary.  The best site that I can find for these instructions is <a href="https://blog.zaletskyy.com/custom-selector-in-acumatica" target="true">https://blog.zaletskyy.com/custom-selector-in-acumatica</a>.  Thanks for your help.</p>]]></content:encoded>
						                            <category domain="https://www.augforums.com/forums/everything-else/">Everything Else</category>                        <dc:creator>Justin Rolfs</dc:creator>
                        <guid isPermaLink="true">https://www.augforums.com/forums/everything-else/custom-selector/#post-5112</guid>
                    </item>
							        </channel>
        </rss>
		