<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/jive/rss" version="2.0">
  <channel>
    <title>Adobe Community : All Content - All Communities</title>
    <link>https://forums.adobe.com/</link>
    <description>All Content in Adobe Community</description>
    <language>en</language>
    <pubDate>Wed, 22 Oct 2014 13:53:42 GMT</pubDate>
    <generator>Jive Engage 7.0.0.1  (http://jivesoftware.com/products/)</generator>
    <dc:date>2014-10-22T13:53:42Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>AJAX-Powered Related Select Boxes -</title>
      <link>https://forums.adobe.com/thread/1614478</link>
      <description>&lt;!-- [DocumentBodyStart:fe49632b-8955-4033-bdfa-6b535cbc9801] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi folks...I'm being driven crazy by this seemingly simple task.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have 4 selectboxes, each AJAX-driven, grabbing items from a database, and then populating the next box in turn.&amp;nbsp; Once a submit button is clicked next to the set of dropdowns, the information in the boxes are sent to a processing script where session variables are set and returned.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;They all preload by default. They all properly load the next dropdown as you'd expect.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The problem is, I've found that if none of the boxes are touched and the default values are left, an error occurs when the submit button is clicked, and after dismissing the error popup, the 4th box becomes empty.&amp;nbsp; This only happens if the 4th (last) dropdown is left to its default value.&amp;nbsp; Once any other value other&amp;nbsp; than the default one is selected, everything works as expected.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The error:&lt;/p&gt;&lt;p&gt;Bind failed for select box Transact, value and/or display attributes must be specified on the cfselect tag when binding to a query.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The form:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;td align="left"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfif isDefined("form.submit")&amp;gt;&amp;lt;cfselect name="Location"&amp;nbsp; display="Location" bind="cfc:webapps.checklist.cfc.queries.getLocations()" bindonload="true" selected="#form.Location#" /&amp;gt;&amp;lt;cfelse&amp;gt;&amp;lt;cfselect name="Location"&amp;nbsp; display="Location" bind="cfc:webapps.checklist.cfc.queries.getLocations()" bindonload="true" /&amp;gt;&amp;lt;/cfif&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;td align="left"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfif isDefined("session.itemapplication") AND session.itemapplication NEQ ""&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfselect name="Application" selected="#session.itemapplication#"&amp;nbsp; display="Applicat" bind="cfc:webapps.checklist.cfc.queries.getApplications({Location})" bindonload="false" /&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfelse&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfselect name="Application" selected="#form.Application#"&amp;nbsp; display="Applicat" bind="cfc:webapps.checklist.cfc.queries.getApplications({Location})" bindonload="false" /&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/cfif&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;td align="left"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfif isDefined("session.itemcategory") AND session.itemcategory NEQ ""&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfselect name="Category" selected="#session.itemcategory#"&amp;nbsp; display="Category" bind="cfc:webapps.checklist.cfc.queries.getCategories({Application})" bindonload="false" /&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfelse&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfselect name="Category" selected="#form.Category#"&amp;nbsp; display="Category" bind="cfc:webapps.checklist.cfc.queries.getCategories({Application})" bindonload="false" /&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/cfif&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;td align="left"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfif isDefined("session.transaction") AND session.transaction NEQ ""&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfselect name="Transact"&amp;nbsp; required="yes" size="1" message="Please select a transaction before continuing." selected="#session.transaction#" value="Transact" display="Transact" bind="cfc:webapps.checklist.cfc.queries.getTransactions({Category})" bindonload="false" /&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfelse&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfselect name="Transact" required="yes" size="1" message="Please select a transaction before continuing." value="Transact" display="Transact"&amp;nbsp; selected="#form.Transact#" bind="cfc:webapps.checklist.cfc.queries.getTransactions({Category})" bindonload="false" /&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/cfif&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;td&amp;gt;&amp;lt;cfinput type="submit" name="submit" value="Show Items"&amp;gt;&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/tr&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-6855415-687160/Untitled-1.jpg"&gt;&lt;img alt="Untitled-1.jpg" class="jive-image image-1" height="156" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-6855415-687160/Untitled-1.jpg" style="height: 137px; width: 620px;" width="707"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-6855415-687161/2.jpg"&gt;&lt;img alt="2.jpg" class="jive-image image-2" height="317" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-6855415-687161/2.jpg" style="height: 280px; width: 620px;" width="701"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;It seems like for whatever reason, the script has a problem with the default value loaded for that last box.&amp;nbsp; I've checked the database, nothing strange about the values loaded by default at all.&amp;nbsp; Any ideas guys??&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks in advance!&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;T&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:fe49632b-8955-4033-bdfa-6b535cbc9801] --&gt;&lt;img src='/beacon?t=1415919235071' /&gt;</description>
      <pubDate>Wed, 22 Oct 2014 13:53:42 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1614478</guid>
      <dc:date>2014-10-22T13:53:42Z</dc:date>
      <clearspace:dateToText>1 week 5 days ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How Can I Get the current value of a binded field for use in a conditional statement?</title>
      <link>https://forums.adobe.com/thread/1269437</link>
      <description>&lt;!-- [DocumentBodyStart:959fae5e-b788-4d9e-a314-469946d98e3a] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hey guys, I have a CFGRID that's bound to some form fields:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;&amp;lt;tr&amp;gt;&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;&amp;lt;td align="right"&amp;gt;&amp;lt;span class="srch_title"&amp;gt;First Name 1&amp;lt;/span&amp;gt;:&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;&amp;lt;td align="left"&amp;gt;&amp;lt;cfinput name="Data_FName1" type="text" class="inputs_nomargin" bind="{SearchResultsGrid.fname1}"&amp;gt;&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;&amp;lt;td align="right"&amp;gt;&amp;lt;span class="srch_title"&amp;gt;Last/Bus Name 1&amp;lt;/span&amp;gt;:&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;&amp;lt;td align="left"&amp;gt;&amp;lt;cfinput name="Data_LNameBus1" type="text" class="inputs_nomargin" bind="{SearchResultsGrid.lname_busname1}"&amp;gt;&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;&amp;lt;td align="right"&amp;gt;&amp;lt;span class="srch_title"&amp;gt;DOB 1&amp;lt;/span&amp;gt;:&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;&amp;lt;td align="left"&amp;gt;&amp;lt;cfinput name="Data_DOB1" type="text" class="inputs_med_nomargin" bind="{SearchResultsGrid.dob1}"&amp;gt;&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;&amp;lt;td align="right"&amp;gt;&amp;lt;span class="srch_title"&amp;gt;DL Number 1&amp;lt;/span&amp;gt;:&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;&amp;lt;td&amp;gt;&amp;lt;cfinput name="Data_DLNum1" type="text" class="inputs_nomargin" bind="{SearchResultsGrid.dlnum1}"&amp;gt;&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;&amp;lt;/tr&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;When, clicking on the CFGRID rows, the data in the form fields changes, as expected.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;However, I'd like to make some other stuff happen conditionally based on current values of one or more of the form fields.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How can access, for example, the current contents of &lt;span style="background-color: #ffffff;"&gt;{SearchResultsGrid.fname1}&lt;/span&gt; in a CFIF statement?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks in advance for any help you can give me &lt;span aria-label="Happy" class="emoticon-inline emoticon_happy" style="height:16px;width:16px;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;T&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:959fae5e-b788-4d9e-a314-469946d98e3a] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">form</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">cfgrid</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">fields</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">cf8</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">cfif</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">bind</category>
      <pubDate>Mon, 05 Aug 2013 15:02:35 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1269437</guid>
      <dc:date>2013-08-05T15:02:35Z</dc:date>
      <clearspace:dateToText>1 year 3 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Updating CFGRID Bind to CFINPUT textbox</title>
      <link>https://forums.adobe.com/thread/1260062</link>
      <description>&lt;!-- [DocumentBodyStart:4de9b786-0e81-4bcb-b262-cfce71f0c1a8] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hey folks, I'm using a plain &lt;strong&gt;CFGRID &lt;/strong&gt;(CF 8) to &lt;strong&gt;output a query resultset on the same page&lt;/strong&gt; (in other words, not using a CFC or anything), for example:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &lt;em&gt; &amp;lt;cfgrid name = "SearchResultsGrid"&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; height="250" &lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query = "checklist_search"&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; font="arial" fontsize="12" appendkey="yes" griddataalign="left" gridlines="yes" rowheaderalign="left" colheaderalign="center" selectmode="row" enabled="yes" visible="yes" format="html" autowidth="true" selectcolor="##578DCA"&amp;gt;&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfgridcolumn name = "lname_busname1" header = "Last Name" headerbold="yes" headeralign="center" width="100"&amp;gt;&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfgridcolumn name = "fname1" header = "First Name" headeralign="center" headerbold="yes" width="100"&amp;gt;&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfgridcolumn name = "address" header = "Address" headerbold="yes" headeralign="center"&amp;gt;&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfgridcolumn name = "trans_cat" header = "Category" headerbold="yes" headeralign="center" width="125"&amp;gt;&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfgridcolumn name = "trans_subcat" header = "Transaction" headerbold="yes" headeralign="center" width="125"&amp;gt;&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfgridcolumn name = "date" header = "Date" headerbold="yes" headeralign="center"&amp;gt;&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfgridcolumn name = "id" header = "Checklist Number" headerbold="yes" headeralign="center" width="125"&amp;gt;&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfgridcolumn name = "dob1" display="no"&amp;gt;&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfgridcolumn name = "fname2" display="no"&amp;gt;&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfgridcolumn name = "lname_busname2" display="no"&amp;gt;&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;lt;/cfgrid&amp;gt;&lt;/em&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;I'm then getting results (after the initial load) reflected in several textboxes:&lt;/strong&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;lt;tr&amp;gt;&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;lt;td align="right"&amp;gt;&amp;lt;span class="srch_title"&amp;gt;First Name 1&amp;lt;/span&amp;gt;:&amp;lt;/td&amp;gt;&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;lt;td&amp;gt;&amp;lt;cfinput name="Data_FName1" type="text" class="inputs_nomargin" bind="{SearchResultsGrid.fname1}"&amp;gt;&amp;lt;/td&amp;gt;&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;lt;td align="right"&amp;gt;&amp;lt;span class="srch_title"&amp;gt;Last/Business Name 1&amp;lt;/span&amp;gt;:&amp;lt;/td&amp;gt;&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;lt;td&amp;gt;&amp;lt;cfinput name="Data_LNameBus1" type="text" class="inputs_sm_nomargin" bind="{SearchResultsGrid.lname_busname1}"&amp;gt;&amp;lt;/td&amp;gt;&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;lt;/tr&amp;gt;&lt;br/&gt;&lt;/em&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;My problem, of course, is that selecting different rows on the CFGRID doesn't update my group of textboxes, it only loads data from the first row of results.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I see many examples doing this using CFC's, but.............how can I just have the textboxes update accordingly as I click down the rows of results when I have created my query on the same page the CFGRID and textboxes are?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!!&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;T&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:4de9b786-0e81-4bcb-b262-cfce71f0c1a8] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">automatically</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">update</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">dataset</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">cfgrid</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">cfquery</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">coldfusion</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">grid</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">results</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">cfc</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">textbox</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">populate</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">cfinput</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">cf8</category>
      <pubDate>Mon, 22 Jul 2013 18:21:33 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1260062</guid>
      <dc:date>2013-07-22T18:21:33Z</dc:date>
      <clearspace:dateToText>1 year 4 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Please help me understand Categories within Verity search (CF8)</title>
      <link>https://forums.adobe.com/thread/1102045</link>
      <description>&lt;!-- [DocumentBodyStart:84a924ea-a6a6-494d-bc9e-99e24f6bc5b3] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I'm not sure why I can't understand how categories work within Verity, but the documentation isn't helping much, and web searches are yielding anything either.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Here's what I'm doing; I have a folder that contains a few subfolders...in these are PDF files.&amp;nbsp; I have a collection setup that recursively indexed all documents, and allows me to search for them, no problem.&amp;nbsp; This works.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;What I'd like to do is create categories in this collection that correspond to the folders the files are in.&amp;nbsp; For example, the structure could be:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Main Folder&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; -Folder 1&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; -Folder 2&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; -Folder 3&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -Folder A&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -Folder B&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;So the category names would be Folder 1, Folder 2, Folder 3, etc.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;So when I search, I can allow the users to select checkboxes to search only certain categories.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;My question is, how do I do this when I re-index the collection?&amp;nbsp; Am I going to be forced to create a separate collection for EVERY category and subcategory? And then search multiple collections when using CFSEARCH?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Very confused, thanks in advance for any help &lt;span aria-label="Happy" class="emoticon-inline emoticon_happy" style="height:16px;width:16px;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;T&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:84a924ea-a6a6-494d-bc9e-99e24f6bc5b3] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">pdf</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">collection</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">cf9</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">cfsearch</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">cfindex</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">categories</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">category</category>
      <pubDate>Tue, 20 Nov 2012 14:56:56 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1102045</guid>
      <dc:date>2012-11-20T14:56:56Z</dc:date>
      <clearspace:dateToText>1 year 12 months ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How could this query be coded?</title>
      <link>https://forums.adobe.com/thread/1053685</link>
      <description>&lt;!-- [DocumentBodyStart:caa9c79c-d943-423a-a4bc-21a927c26ed4] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I'm racking my brain trying to figure this one out...this is an old query of mine being retooled...&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;DB has a field for MONTH and a field for YEAR...as well as HOURS for each record.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This query is pulling a sum of hours for a date range, that will be a year from Oct to Sep.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;So I want a query that says:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Select * from October to December of Last Year, AND all months from January of the current year up to a "selected" month.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have setup for current year, prior year, and selected month (from a dropdown list).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I've already tried something like:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;SELECT SUM(hours) AS Total FROM TABLENAME&lt;/p&gt;&lt;p&gt;WHERE service_year = #session.prior_year# AND service_month &amp;gt;= 10 AND service_month &amp;lt;=12 AND service_year = #session.selected_year# AND service_month &amp;gt;= 1 AND service_month &amp;lt;= #session.selected_month#&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;No dice of course, logically that doesn't work anyway after looking at it.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Any ideas?&amp;nbsp; I've tried various forms of evaluation levels of operators, no dice.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks in advance! &lt;span aria-label="Happy" class="emoticon-inline emoticon_happy" style="height:16px;width:16px;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:caa9c79c-d943-423a-a4bc-21a927c26ed4] --&gt;</description>
      <pubDate>Wed, 22 Aug 2012 17:18:22 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1053685</guid>
      <dc:date>2012-08-22T17:18:22Z</dc:date>
      <clearspace:dateToText>2 years 3 months ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How can I put a timed pause between CFMAIL sendouts?</title>
      <link>https://forums.adobe.com/thread/1043525</link>
      <description>&lt;!-- [DocumentBodyStart:074ed07a-c658-4666-9ad5-f1b8623b4df8] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;&lt;em&gt;A preface, this is not marketing e-mailing I'm discussing, it's already opted-in government notifications requested by the customers.&lt;/em&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This is driving me absolutely crazy.&amp;nbsp; I've got a working SQL query that pulls a number or records (e-mail addresses), then sends out a series of mailings in batches (still working on that part).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;What I'm stuck on is how in the world can I pause the CFMAIL processings between batches?&amp;nbsp; For example, I want to send 500 e-mails, pause for 10 minutes, send the next 500, etc.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;CFTHREAD looks kinda like what I might need but I'm not sure.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;We're afraid of sending all at once (probably no more than 5,000 to 10,000 total) in fear of being blacklisted.&amp;nbsp; Usually this app will only send 100 to 500 at a time.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks in advance for any help you guys can give!&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This is for CF8, incidentally.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;T&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:074ed07a-c658-4666-9ad5-f1b8623b4df8] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">email</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">pause</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">batch</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">cfquery</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">cfmail</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">timer</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">cf8</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">cfthread</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">mailing</category>
      <pubDate>Thu, 02 Aug 2012 15:50:33 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1043525</guid>
      <dc:date>2012-08-02T15:50:33Z</dc:date>
      <clearspace:dateToText>2 years 3 months ago</clearspace:dateToText>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Strange DW 8 Issues - No Color Coding, Split View Greyed Out</title>
      <link>https://forums.adobe.com/thread/157008</link>
      <description>&lt;!-- [DocumentBodyStart:3915dbd3-a34e-429a-a03a-fd9dea54563d] --&gt;&lt;div class="jive-rendered-content"&gt;Hi folks- DW 8 (and even the 8.02 update I installed today)
has been acting completely strange the last few weeks....here are
the issues I'm having, all at the same time:
&lt;br/&gt;
&lt;br/&gt;
&lt;ul class="noindent"&gt;
&lt;li&gt;Code coloring is suddenly gone, even though Code Coloring is
still turned on....all text is black with a white background
&lt;br/&gt;&lt;/li&gt;
&lt;li&gt;Usually when opening a file (usually .asp or .cfm), the code
will show strangely, you can see this at 
&lt;a class="jive-link-external-small" href="http://www.timgilbreath.com/screen_dw8.gif" rel="nofollow"&gt;http://www.timgilbreath.com/screen_dw8.gif&lt;/a&gt;
&lt;br/&gt;&lt;/li&gt;
&lt;li&gt;With some Sites, when attempting to view Remote Files (that
worked fine before), the app will crash and produce the error
"Unable to find files in Configurations/Behaviors/Events. No
behaviors will be available. Please reinstall the application."
&lt;br/&gt;&lt;/li&gt;
&lt;li&gt;Split and Design Views are greyed out (as you can see in the
above screenshot)
&lt;br/&gt;
&lt;br/&gt;Any ideas? I've completely uninstalled and reinstalled DW8
twice....no success....
&lt;br/&gt;
&lt;br/&gt;Thanks in advance for any help you can give me!
&lt;br/&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:3915dbd3-a34e-429a-a03a-fd9dea54563d] --&gt;</description>
      <pubDate>Tue, 10 Apr 2007 20:34:36 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/157008</guid>
      <dc:date>2007-04-10T20:34:36Z</dc:date>
      <clearspace:dateToText>7 years 2 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Strange Error when connecting to a Remote Site</title>
      <link>https://forums.adobe.com/thread/175955</link>
      <description>&lt;!-- [DocumentBodyStart:dfaeed9e-35e7-45d2-89e9-da4f46faee2d] --&gt;&lt;div class="jive-rendered-content"&gt;Hi folks.......I have a few connections/FTP sites setup in
DW, suddenly, when I try to connect to the remote server on some, I
get the following message:
&lt;br/&gt;
&lt;br/&gt;Unable to find files in Configurations/Behaviors/Events. No
behaviors will be available. Please reinstall the application.
&lt;br/&gt;
&lt;br/&gt;Then it shuts down. I've reinstalled (not sure completely
though, since all my sites and old history in DW was available, I
did it through add/remove and made sure the dreamweaver folder was
gone).......and still the same problem....anyone else know what
this could be and how to fix it?
&lt;br/&gt;
&lt;br/&gt;Thanks!
&lt;br/&gt;
&lt;br/&gt;T
&lt;br/&gt;
&lt;a href="/webforums/forum/images/i/expressions/face-icon-small-confused.gif"&gt;&lt;img border="0" src="/webforums/forum/images/i/expressions/face-icon-small-confused.gif"/&gt;&lt;/a&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:dfaeed9e-35e7-45d2-89e9-da4f46faee2d] --&gt;</description>
      <pubDate>Thu, 08 Feb 2007 16:53:35 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/175955</guid>
      <dc:date>2007-02-08T16:53:35Z</dc:date>
      <clearspace:dateToText>7 years 9 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Cold Fusion Version - What do I need?</title>
      <link>https://forums.adobe.com/thread/275131</link>
      <description>&lt;!-- [DocumentBodyStart:5c10cb97-f331-41c1-beec-e8d0f6dc4ac1] --&gt;&lt;div class="jive-rendered-content"&gt;Hi guys/gals-
&lt;br/&gt;
&lt;br/&gt;Quick easy question....I've worked with CF for around 3 years
now, but am about to face my first employment requiring me to
purchase/install it on a server...here's my question. If I've got a
single Windows server, that hosts 2 to 5 websites, can I get by
with the Standard edition of CFMX 7, or do I have to buy the
Enterprise version? What are the differences between the two in
respect to how many websites it can support?
&lt;br/&gt;
&lt;br/&gt;Thanks!
&lt;br/&gt;
&lt;br/&gt;T
&lt;br/&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:5c10cb97-f331-41c1-beec-e8d0f6dc4ac1] --&gt;</description>
      <pubDate>Thu, 29 Jun 2006 19:24:05 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/275131</guid>
      <dc:date>2006-06-29T19:24:05Z</dc:date>
      <clearspace:dateToText>8 years 4 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>New Install on Server - What Version Do I Need to Buy?</title>
      <link>https://forums.adobe.com/thread/274948</link>
      <description>&lt;!-- [DocumentBodyStart:6cd0adc7-838c-4752-a1e8-acd1d8e5c48e] --&gt;&lt;div class="jive-rendered-content"&gt;Hi guys/gals-
&lt;br/&gt;
&lt;br/&gt;Quick easy question....I've worked with CF for around 3 years
now, but am about to face my first employment requiring me to
purchase/install it on a server...here's my question. If I've got a
single Windows server, that hosts 2 to 5 websites, can I get by
with the Standard edition of CFMX 7, or do I have to buy the
Enterprise version? What are the differences between the two in
respect to how many websites it can support?
&lt;br/&gt;
&lt;br/&gt;Thanks!
&lt;br/&gt;
&lt;br/&gt;T&lt;/div&gt;&lt;!-- [DocumentBodyEnd:6cd0adc7-838c-4752-a1e8-acd1d8e5c48e] --&gt;</description>
      <pubDate>Thu, 29 Jun 2006 19:28:41 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/274948</guid>
      <dc:date>2006-06-29T19:28:41Z</dc:date>
      <clearspace:dateToText>8 years 5 months ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
  </channel>
</rss>

