User Adam Tuttle - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T07:43:14Z http://stackoverflow.com/feeds/user/751 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/7864/why-all-the-active-record-hate 30 Why all the Active Record hate? Adam Tuttle 2008-08-11T15:30:30Z 2009-11-27T09:28:43Z <p>As I learn more and more about OOP, and start to implement various design patterns, I keep coming back to cases where people are hating on <a href="http://en.wikipedia.org/wiki/Active_record_pattern" rel="nofollow">Active Record</a>.</p> <p>Often, people say that it doesn't scale well (citing Twitter as their prime example) -- but nobody actually explains <strong><em>why</em></strong> it doesn't scale well; and / or how to achieve the pros of AR without the cons (via a similar but different pattern?)</p> <p>Hopefully this won't turn into a holy war about design patterns -- all I want to know is <strong>**specifically**</strong> what's wrong with Active Record.</p> <p>If it doesn't scale well, why not?</p> <p>What other problems does it have?</p> http://stackoverflow.com/questions/195768/in-search-of-javascript-month-picker 4 In search of JavaScript Month Picker Adam Tuttle 2008-10-12T17:46:47Z 2009-11-25T00:00:41Z <p>I'm in search of a JavaScript month selection tool. I'm already using jQuery on the website, so if it were a jQuery plugin, that would fit nicely. I'm open to other options, as well.</p> <p>Basically, I'm after a simplified version of the <a href="http://docs.jquery.com/UI/Datepicker" rel="nofollow">jQuery UI Date Picker</a>. I don't care about the day of the month, just the month and year. Using the Date Picker control feels like overkill and a kludge. I know I could just use a pair of select boxes, but that feels cluttered, and then I also need a confirmation button.</p> <p>I'm envisioning a grid of either two rows of six columns, or three rows of four columns, for month selection, and current and future years across the top. (Maybe the ability to list a few years? I can't see anyone ever needing to go more than a year or two ahead, so if I could list the current and next two years, that would be swell)</p> <p>It's really just a dumbed down version of the DatePicker. Does something like this exist?</p> http://stackoverflow.com/questions/878999/flex-itemrenderer-prevents-use-of-tabbing-between-text-inputs 0 Flex ItemRenderer prevents use of tabbing between text inputs Adam Tuttle 2009-05-18T17:56:58Z 2009-11-14T01:57:55Z <p>I have a custom <strong>ItemRenderer</strong> that displays 5 text inputs in each of 3 panels:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" height="300" width="800" creationComplete="onCreationComplete()" &gt; &lt;!-- code-behind --&gt; &lt;mx:Script source="ChainListRenderer.mxml.as" /&gt; &lt;mx:Label text="{data.title}" fontSize="25" fontWeight="bold" width="100%" textAlign="center" /&gt; &lt;mx:HBox&gt; &lt;mx:Panel id="triggerPanel" title="Trigger" width="260"&gt; &lt;mx:VBox id="tpBoxes" width="100%" paddingBottom="5" paddingLeft="5" paddingRight="5" paddingTop="5"&gt; &lt;mx:TextInput id="trigger1" width="100%" textAlign="left" tabIndex="0" tabEnabled="true" /&gt; &lt;mx:TextInput id="trigger2" width="100%" textAlign="left" tabIndex="1" tabEnabled="true" /&gt; &lt;mx:TextInput id="trigger3" width="100%" textAlign="left" tabIndex="2" tabEnabled="true" /&gt; &lt;mx:TextInput id="trigger4" width="100%" textAlign="left" tabIndex="3" tabEnabled="true" /&gt; &lt;mx:TextInput id="trigger5" width="100%" textAlign="left" tabIndex="4" tabEnabled="true" /&gt; &lt;/mx:VBox&gt; &lt;/mx:Panel&gt; &lt;mx:Panel id="linkPanel" title="Link" width="260"&gt; &lt;mx:VBox id="lpBoxes" width="100%" paddingBottom="5" paddingLeft="5" paddingRight="5" paddingTop="5"&gt; &lt;mx:TextInput id="link1" width="100%" textAlign="left" tabIndex="5" tabEnabled="true" /&gt; &lt;mx:TextInput id="link2" width="100%" textAlign="left" tabIndex="6" tabEnabled="true" /&gt; &lt;mx:TextInput id="link3" width="100%" textAlign="left" tabIndex="7" tabEnabled="true" /&gt; &lt;mx:TextInput id="link4" width="100%" textAlign="left" tabIndex="8" tabEnabled="true" /&gt; &lt;mx:TextInput id="link5" width="100%" textAlign="left" tabIndex="9" tabEnabled="true" /&gt; &lt;/mx:VBox&gt; &lt;/mx:Panel&gt; &lt;mx:Panel id="answerPanel" title="Answer" width="260"&gt; &lt;mx:VBox id="apBoxes" width="100%" paddingBottom="5" paddingLeft="5" paddingRight="5" paddingTop="5"&gt; &lt;mx:TextInput id="answer1" width="100%" textAlign="left" tabIndex="10" tabEnabled="true" /&gt; &lt;mx:TextInput id="answer2" width="100%" textAlign="left" tabIndex="11" tabEnabled="true" /&gt; &lt;mx:TextInput id="answer3" width="100%" textAlign="left" tabIndex="12" tabEnabled="true" /&gt; &lt;mx:TextInput id="answer4" width="100%" textAlign="left" tabIndex="13" tabEnabled="true" /&gt; &lt;mx:TextInput id="answer5" width="100%" textAlign="left" tabIndex="14" tabEnabled="true" /&gt; &lt;/mx:VBox&gt; &lt;/mx:Panel&gt; &lt;/mx:HBox&gt; &lt;/mx:VBox&gt; </code></pre> <p>Unfortunately, when used as an ItemRenderer, tabbing between the text inputs doesn't work, even with the tabIndex values above. If I copy this code to an MXML application of its own, tabbing between text inputs works as expected.</p> <p>Does anyone know how to restore tabbing in this scenario? It will be a shame if I have to release this app without such a simple usability element.</p> <p>I suppose I may need to implement <code>mx.managers.IFocusManagerComponent</code>, but I can't find any examples on how to do that, and the <a href="http://livedocs.adobe.com/flex/3/langref/mx/managers/FocusManager.html" rel="nofollow">FocusManager docs</a> aren't helping either.</p> http://stackoverflow.com/questions/1684914/ways-to-remove-the-blue-background-of-a-visited-cftree-cftreeitem/1718323#1718323 0 Answer by Adam Tuttle for Ways to remove the blue background of a visited cftree cftreeitem? Adam Tuttle 2009-11-11T21:50:52Z 2009-11-11T21:50:52Z <p>I would recommend against editing the core JavaScript and CSS; and instead recommend overriding it. Are you familiar with CSS' "!important" directive? If not, <a href="http://webdesign.about.com/od/css/f/blcssfaqimportn.htm" rel="nofollow">this is a decent place to read up on it</a>.</p> <p>You didn't post any code, but let's assume your CFTreeItem's have <code>class="cftreeitem"</code> or you can otherwise determine the selector you should use to specify the elements you want to style (<a href="http://getfirebug.com/" rel="nofollow">FireBug</a> is great for this, by the way). To override the lightblue color, do this <strong>in your application's css</strong>, somewhere:</p> <pre><code>.cftreeitem a:link, .cftreeitem a:active, .cftreeitem a:visited, { background-color: none !important; } </code></pre> <p>Using "!important" should override all other rules, even those that would override this one, as long as they don't also include "!important"</p> http://stackoverflow.com/questions/1689900/coldfusion-xmlformat-not-converting-all-characters/1718255#1718255 0 Answer by Adam Tuttle for Coldfusion XMLFormat() not converting all characters Adam Tuttle 2009-11-11T21:35:30Z 2009-11-11T21:35:30Z <p>Unfortunately, <code>XMLFormat</code> is just not an all-inclusive solution. It has a very limited list of characters that it will replace [<a href="http://cfquickdocs.com/cf8/?getDoc=XmlFormat" rel="nofollow">documentation</a>].</p> <p>You'll need to do custom encoding of characters that are invalid for XML but not covered by <code>XMLFormat</code>.</p> <p>It's definitely not very efficient, but a potential solution would be to loop over the content of typically-suspect fields (anything user-generated, for starters) character-by-character, checking the ascii code, and if it's above 255, either omit the character or properly encode it.</p> http://stackoverflow.com/questions/1696937/how-to-precompile-a-coldfusion-application-under-websphere-solaris-10/1718212#1718212 0 Answer by Adam Tuttle for How to precompile a ColdFusion application under Websphere/Solaris 10 Adam Tuttle 2009-11-11T21:28:56Z 2009-11-11T21:28:56Z <p>Can you install in stand-alone mode on some other temporary location (preferably the same OS &amp; version), and copy jrun.jar to where you want it to be, on the permanent home of the application?</p> http://stackoverflow.com/questions/1715632/coldfusion-cfdirectory-and-the-french/1716832#1716832 1 Answer by Adam Tuttle for ColdFusion, CFDirectory and the French Adam Tuttle 2009-11-11T17:37:42Z 2009-11-11T17:37:42Z <p>I haven't found anything specific to your issue, but I did see this note in the <a href="http://www.adobe.com/support/coldfusion/releasenotes/mx/releasenotes%5Fmx.html" rel="nofollow">Release notes for version 6</a>:</p> <blockquote> <blockquote> <p>You cannot use <code>cfinclude</code> to include a file with a double-byte file name.</p> </blockquote> </blockquote> <p>No indication of whether or not that's been fixed. I'm not certain, but I assume that "double-byte" file names refers to using unicode, which I believe you need to use to get accented characters in file names... so it may be related in some way to your problem.</p> <p>If you can't simply rename the files to remove the accented characters, I would recommend filing a bug in the official <a href="http://www.adobe.com/go/CF%5Fbugs" rel="nofollow">ColdFusion bug database</a>.</p> http://stackoverflow.com/questions/1670074/how-do-i-pass-an-edited-flex-datagrid-to-a-cfc-to-insert-to-a-database/1681578#1681578 0 Answer by Adam Tuttle for How do I pass an edited Flex datagrid to a CFC to insert to a database Adam Tuttle 2009-11-05T16:06:25Z 2009-11-05T16:06:25Z <p>Would it be easier for you to work with a query object instead of an array of structs? I created a UDF to convert an ArrayCollection to a Query [<a href="http://fusiongrokker.com/post/udf-arraycollectiontoquery" rel="nofollow">ArrayCollectionToQuery</a>] in CF after it's returned from your Flex application.</p> http://stackoverflow.com/questions/1633097/slurp-an-ini-file-in-cfml/1638278#1638278 1 Answer by Adam Tuttle for Slurp an INI file in CFML Adam Tuttle 2009-10-28T16:09:56Z 2009-10-28T16:49:13Z <p>To expand on ryber's comment, you might consider using this approach instead. I'm assuming you're using CF8.01 or later, as I make use of nested implicit structure notation. This could easily be converted to CF7/6/etc syntax, but wouldn't be as clean or concise.</p> <p>Again, this only applies if your ini file isn't used by any other applications or people, and doesn't <em>need</em> to be in ini format.</p> <p><strong>settings.cfm:</strong></p> <pre><code>&lt;cfset variables.settings = { fooSection = { fooKey = 'fooVal', fooNumber = 2, }, fooSection2 = { //... }, fooSection3 = { //... } } /&gt; </code></pre> <p><strong>Application.cfc:</strong> (only the onApplicationStart method)</p> <pre><code>&lt;cffunction name="onApplicationStart"&gt; &lt;cfinclude template="settings.cfm" /&gt; &lt;cfset application.workflow = variables.settings /&gt; &lt;cfreturn true /&gt; &lt;/cffunction&gt; </code></pre> <p>In addition, I've use the <a href="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/reusec16.htm" rel="nofollow">CFEncode</a> application to encrypt the contents of <code>settings.cfm</code>. It won't protect you from someone who gets a copy of the file and wants to see what its encrypted contents are (the encryption isn't that strong, and there are ways to see the contents without decrypting it), but if you just want to keep some nosy people out, it adds a little extra barrier-to-entry that might deter some people.</p> <p><hr> <strong>Update:</strong> Since you just left a comment that says you are on CF7, here's native CF7 syntax:</p> <p><strong>settings.cfm:</strong></p> <pre><code>&lt;cfset variables.settings = StructNew() /&gt; &lt;cfset variables.settings.fooSection = StructNew() /&gt; &lt;cfset variables.settings.fooSection.fooKey = 'fooVal' /&gt; &lt;cfset variables.settings.fooSection.fooNumber = 2 /&gt; &lt;!--- ... ---&gt; </code></pre> <p>Alternatively, you could use <a href="http://jsonutil.riaforge.org" rel="nofollow">JSONUtil</a> and CFSaveContent to continue to use a JSON-looking approach (similar to my original syntax), but on CF7:</p> <pre><code>&lt;cfsavecontent variable="variables.jsonSettings"&gt; { fooSection = { fooKey = 'fooVal', fooNumber = 2, }, fooSection2 = { //... }, fooSection3 = { //... } }; &lt;/cfsavecontent&gt; &lt;cfset variables.settings = jsonUtil.deserializeFromJSON(variables.jsonSettings) /&gt; </code></pre> http://stackoverflow.com/questions/1615879/could-not-load-definitions-from-resource-flextasks-tasks-it-could-not-be-found 0 Could not load definitions from resource flexTasks.tasks. It could not be found. Adam Tuttle 2009-10-23T21:01:37Z 2009-10-24T01:11:23Z <p>I'm attempting to compile a Flex application from an ANT script, inside of Eclipse (<a href="http://labs.adobe.com/technologies/coldfusionbuilder/" rel="nofollow">CFBuilder</a>, based on Eclipse), and I've run into this error:</p> <blockquote> <blockquote> <p>Could not load definitions from resource flexTasks.tasks. It could not be found.</p> </blockquote> </blockquote> <p>I haven't been able to find anything that gives directions on where this file (flexTasks.tasks) should be copied to, <em>if it's needed at all</em>. Some places indicate that it should be part of the flexTasks.jar file. I've tried two different things:</p> <ul> <li>Copy the jar file into the ant/plugins/lib folder (and restart my CF Builder instance)</li> <li>Specify the path to the jar in the <code>classpath</code> attribute, as suggested by the comment on <a href="http://livedocs.adobe.com/flex/3/html/anttasks%5F2.html" rel="nofollow">this page</a></li> </ul> <p>Neither helps me get past this error.</p> <p>Here's my build script, for reference:</p> <pre><code>&lt;project name="Tagging" default="compile-tagging" basedir="."&gt; &lt;!-- setup flex compilation capability --&gt; &lt;taskdef resource="flexTasks.tasks" /&gt; &lt;property name="flex.src" value="./src" /&gt; &lt;property name="flex.bin" value="./bin"/&gt; &lt;target name="compile-tagging"&gt; &lt;mxmlc file="${flex.src}/main.mxml" output="${flex.bin}/main.swf" keep-generated-actionscript="true"&gt; &lt;source-path path-element="${FLEX_HOME}/frameworks" /&gt; &lt;/mxmlc&gt; &lt;/target&gt; &lt;/project&gt; </code></pre> http://stackoverflow.com/questions/1615879/could-not-load-definitions-from-resource-flextasks-tasks-it-could-not-be-found/1616664#1616664 0 Answer by Adam Tuttle for Could not load definitions from resource flexTasks.tasks. It could not be found. Adam Tuttle 2009-10-24T01:11:23Z 2009-10-24T01:11:23Z <p>While not ideal, this code is working for me at the moment:</p> <pre><code>&lt;project name="IOLTagging" default="go" basedir="."&gt; &lt;!-- setup flex compilation capability --&gt; &lt;property name="FLEX_HOME" value="C:/program files (x86)/Adobe/Adobe Flash Builder Beta 2/sdks/3.4.1/" /&gt; &lt;taskdef name="mxmlc" classname="flex.ant.MxmlcTask" classpath="${FLEX_HOME}/ant/lib/flexTasks.jar" /&gt; &lt;taskdef name="html-wrapper" classname="flex.ant.HtmlWrapperTask" classpath="${FLEX_HOME}/ant/lib/flexTasks.jar" /&gt; &lt;property name="flex.src" value="./src" /&gt; &lt;property name="flex.bin" value="./bin"/&gt; &lt;property name="swf.name" value="main" /&gt; &lt;target name="go" depends="compile-flex" /&gt; &lt;target name="compile-flex"&gt; &lt;mxmlc file="${flex.src}/main.mxml" output="${flex.bin}/${swf.name}.swf" debug="false" keep-generated-actionscript="false"&gt; &lt;source-path path-element="${FLEX_HOME}/frameworks" /&gt; &lt;compiler.library-path dir="${basedir}/libs" append="true"&gt; &lt;include name="*.swc" /&gt; &lt;/compiler.library-path&gt; &lt;/mxmlc&gt; &lt;/target&gt; &lt;/project&gt; </code></pre> http://stackoverflow.com/questions/185042/how-do-i-resolve-1-is-not-a-valid-win32-application 1 How do I resolve "%1 is not a valid Win32 application"? Adam Tuttle 2008-10-08T21:44:56Z 2009-10-06T09:27:38Z <p><strong>Environment:</strong><br/> Windows Server 2003 R2 Enterprise 64bit, SP2<br/> .NET framework is supposedly installed (2.0 SP2, 3.0 SP2, 3.5 SP1)</p> <p>I say "supposedly" because they are listed as installed under Add/Remove programs. I'm not sure it's <em>properly</em> installed, because the "ASP.NET" tab isn't added to any of the sites in IIS.</p> <p>In the IIS Web Service Extensions section, I have both "ASP.NET v2.0.50727" (Allowed), and "ASP.NET v2.0.50727 (32-bit)" (Prohibited).</p> <p>The site in question has script-execute enabled.</p> <p><strong>Problem:</strong></p> <p>I created a super-simple ASP.NET/C# website: Default.aspx with a label id="Label1", and a code-behind with: <code>Label1.text = "Hello World";</code> and the error I'm getting is:</p> <blockquote> <p>%1 is not a valid Win32 application.</p> </blockquote> http://stackoverflow.com/questions/1520830/flex-drag-drop-detecting-when-all-data-has-been-moved-from-source-to-destinati 1 Flex Drag & Drop: Detecting when all data has been moved from source to destination Adam Tuttle 2009-10-05T15:38:13Z 2009-10-05T19:30:30Z <p>I have two <code>mx:TileList</code> controls that I'm using to allow editing of objects in batch. The first contains a collection of all available data, and the 2nd contains the current batch. Both are bound to <code>ArrayCollections</code>, and using the native drag-n-drop functionality of the TileList control the data is moved from one <code>ArrayCollection</code> to the other when an object is dragged between them.</p> <p>I need to change the <code>currentState</code> to show &amp; reset the batch manipulation controls when the batch count goes from <strong>0</strong> to <strong>n</strong> or <strong>n</strong> to <strong>0</strong> items. Based on <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=dragdrop%5F8.html" rel="nofollow">the documentation</a>, I would have thought that I should listen to the <code>dragComplete</code> event, but my testing shows that instead of firing after the data has been removed from the source ArrayCollection and added to the destination ArrayCollection, it fires (consistently) between these two actions.</p> <p>Both lists are similar to this:</p> <pre><code>&lt;mx:TileList id="srcList" dragEnabled="true" dropEnabled="true" dragMoveEnabled="true" dataProvider="{images}" dragComplete="handleDragComplete(event)" allowMultipleSelection="true" /&gt; </code></pre> <p>And here's the source of the <code>handleDragComplete</code> function:</p> <pre><code>private function handleDragComplete(e:DragEvent):void{ trace(e.dragInitiator.name + '.dragComplete: batch.length=' + batch.length.toString()); trace(e.dragInitiator.name + '.dragComplete: images.length=' + images.length.toString()); if (batch.length &gt; 0){ currentState = 'show'; }else{ currentState = ''; } } </code></pre> <p>And lastly, here's some example output from running the code. These are all run one after the other.</p> <p><strong>Case 1:</strong></p> <p>The application loads with 10 objects in the first list and the batch is empty. I dragged 1 object from the source list to the batch list.</p> <pre><code>srcList.dragComplete: batch.length=1 srcList.dragComplete: images.length=10 </code></pre> <p>(Expected: 1,9)</p> <p>Clearly, the object has been added to the batch ArrayCollection but not removed from the source.</p> <p><strong>Case 2:</strong></p> <p>Now, I'll drag a 2nd object into the batch.</p> <pre><code>srcList.dragComplete: batch.length=2 srcList.dragComplete: images.length=9 </code></pre> <p>(Expected: 2,8)</p> <p>Firstly, we can see that images.length has changed, showing that the object that I dragged from the source list to the batch list was removed <strong>AFTER</strong> the dragComplete event fired.</p> <p>The same thing happens this time: The new object is added to the batch ArrayCollection (batch.length=2), the <code>dragComplete</code> event fires (running these traces), and then the object is removed from the source ArrayCollection.</p> <p><strong>Case 3:</strong></p> <p>Now, I'll drag both images from the batch list back to their original location in the source list.</p> <pre><code>batchList.dragComplete: batch.length=2 batchList.dragComplete: images.length=10 </code></pre> <p>(Expected: 0,10)</p> <p>We can see that batch.length hasn't gone down, but the source images array is back at its original length of 10.</p> <p><strong>QUESTION:</strong> Am I doing something wrong? Is there another event I could listen for? (<em>Note: I tried both</em> <code>DragExit</code> <em>and</em> <code>DragDrop</code><em>, just to be sure, and those behave as expected, but are not what I need.</em>) Or is there another way to get the data that I want? Or... have I found a bug in the SDK?</p> http://stackoverflow.com/questions/1401219/in-coldfusion-why-shouldnt-a-set-forget-child-thread-have-access-to-session-c 2 In ColdFusion, why shouldn't a Set & Forget child thread have access to session/client scopes? Adam Tuttle 2009-09-09T18:16:48Z 2009-09-12T13:32:50Z <p>Threads spawned from a parent process in ColdFusion have access to the Session and Client scopes, but only until the parent process completes; so if the thread continues to run beyond that time, attempting to read from or write to one of these scopes will presumably throw an error.</p> <p><strong><em>Why?</em></strong></p> <p>I understand with Client scope, as this could be stored in various places including cookies, so the child thread would need access to the parent process to set headers that would affect the cookies; but Session scope is always stored in memory and identified by the <code>cfid</code>/<code>cftoken</code> or <code>jsessionid</code> values, which wouldn't change under normal circumstances.</p> <p>I can't think of a single good reason to block access to the session scope after the parent process completes; and it would be incredibly useful if it were allowed.</p> <p>For instance, I want to run a long-running stored procedure when a user logs in, and store the result in their session to be accessed via Query of Queries on a few other pages. Except for this stored procedure, the login is processed more or less instantly; so by adding the proc, login gets slowed down. If I could spawn a <strong>Set-&amp;-Forget</strong> thread to run the proc and store the result in the session, that would be ideal. I understand that in this case it's possible that the result would be needed before it was stored, but I would code around that.</p> <p>So, if there's some valid reason to block this, what is it?</p> http://stackoverflow.com/questions/22409/how-do-i-convert-images-between-cmyk-and-rgb-in-coldfusion-java 4 How do I convert images between CMYK and RGB in ColdFusion (java)? Adam Tuttle 2008-08-22T13:51:39Z 2009-09-02T22:54:15Z <p>I have a need to convert images from CMYK to RGB - not necessarily back again, but hey, if it can be done...</p> <p>With the release of ColdFusion 8, we got the <a href="http://cfquickdocs.com/cf8/?getDoc=cfimage" rel="nofollow">CFImage</a> tag, but it doesn't support this conversion; and nor does <a href="http://x.com" rel="nofollow">Image.cfc</a>, or <a href="http://x.com" rel="nofollow">Alagad's Image Component</a>.</p> <p>However, it should be possible in Java; which we can leverage through CF. For example here's how you might create a java thread to sleep a process:</p> <pre><code>&lt;cfset jthread = createObject("java", "java.lang.Thread")/&gt; &lt;cfset jthread.sleep(5000)/&gt; </code></pre> <p>I would guess a similar method could be used to leverage java to do this image conversion, but not being a java developer, I don't have a clue where to start. Can anyone lend a hand here?</p> http://stackoverflow.com/questions/878999/flex-itemrenderer-prevents-use-of-tabbing-between-text-inputs/1322275#1322275 0 Answer by Adam Tuttle for Flex ItemRenderer prevents use of tabbing between text inputs Adam Tuttle 2009-08-24T13:04:06Z 2009-08-24T13:04:06Z <p>This just doesn't seem to be possible with the method I was using. Instead of using a list with a custom Item Renderer I switched to a single-item view component and a separate list to show a summary of all items, and this let me fix my problem.</p> http://stackoverflow.com/questions/1306126/creating-blackberry-method-stubs-using-wscompile-on-wsdl-from-coldfusion/1306927#1306927 0 Answer by Adam Tuttle for Creating BlackBerry method stubs using wscompile on WSDL from ColdFusion Adam Tuttle 2009-08-20T15:22:22Z 2009-08-20T15:22:22Z <p>If the service doesn't change much (so the WSDL won't change much) you can save the WSDL as a text file and modify it however you like. My suggestion -- again, assuming the service is more or less finalized -- would be to take the style declaration out of the <code>cfcomponent</code> tag and generate the WSDL, then save it as a plain text file and modify it as necessary to be consumed by the BlackBerry application.</p> http://stackoverflow.com/questions/1278814/is-it-possible-to-do-string-concatenation-in-a-coldfusion-query-of-queries 1 Is it possible to do string concatenation in a ColdFusion Query of Queries? Adam Tuttle 2009-08-14T16:22:16Z 2009-08-14T17:45:33Z <p>I'm familiar with this sort of syntax in SQL Server, to concatenate strings in my result set:</p> <pre><code>SELECT 'foo' + bar AS SomeCol FROM SomeTable </code></pre> <p>I would like to do something similar inside a ColdFusion Query of Queries:</p> <pre><code>&lt;cfquery name="qOptimize" dbtype="query"&gt; select image_id AS imageId, '#variables.img_root#' + image_id + '.' + image_ext AS fullImage, '#variables.img_root#' + image_id + 't.' + image_ext AS thumbnailImage, from qLookup order by imageId asc &lt;/cfquery&gt; </code></pre> <p>This is part of a service consumed by a Flex application, so I'm optimizing the result of a stored procedure used elsewhere in the application before returning to the client -- stripping out unused columns, and compiling image URLs from some dynamic path information.</p> <p>I could write a new stored procedure that takes the image root as a parameter and does all of this, <strong>and I probably <em>will</em> for performance reasons</strong>, but the question is still nagging me. I haven't found a syntax that works yet, so I wonder if it's possible.</p> <p>When I try the above, I get the following error:</p> <blockquote> <p><strong>Query Of Queries syntax error.</strong><br/> Encountered "from. Incorrect Select List, Incorrect select column, </p> </blockquote> <p>Has anyone done this? Is it possible, perhaps with another syntax?</p> http://stackoverflow.com/questions/1253239/coldfusion-json-issue-for-jqgrid/1261605#1261605 0 Answer by Adam Tuttle for Coldfusion + JSON issue for jqGrid Adam Tuttle 2009-08-11T16:49:30Z 2009-08-11T16:49:30Z <p>I see a few basic problems to start. For one, you just need to drop the "arrUsers" element. The "rows" key is what should be an array.</p> <p>Second, in your "desired" format, the values of "page" and "records" are strings (that contain numbers), but the value of "total" is a number.</p> <pre><code>"page":"1","total":2,"records":"13" </code></pre> <p>I would try wrapping the ones that should be strings in quotes (if they need to be strings in the JSON) so that CF encodes them as strings instead of numeric.</p> <p>Other than that, it doesn't look like you're trying to match the exact same fields, so I can't fix it any more than this. Let me know if you still have problems.</p> <pre><code>&lt;cfscript&gt; thestruct["page"] = "1"; thestruct["total"] = 2; thestruct["records"] = "13"; thestruct.rows = arrayNew(1); thestruct.rows[1] = structNew(); thestruct.rows[1]["id"] = 1; thestruct.rows[1]["FirstName"] = "asd"; thestruct.rows[1]["LastName"] = "faaff"; thestruct.rows[1]["DisplayName"] = "bgf"; thestruct.rows[1]["UserName"] = "ASD"; thestruct.rows[1]["UserAccountingCode"] = "123asd"; thestruct.rows[1]["Phone"] = "1231231233'"; &lt;/cfscript&gt; </code></pre> http://stackoverflow.com/questions/1246884/flex-3-how-do-i-determine-if-a-generic-object-is-actually-a-button 0 Flex 3: How do I determine if a generic Object is actually a button? Adam Tuttle 2009-08-07T20:37:03Z 2009-08-07T23:44:21Z <p>I have this bit of code, and it's not working as I expected. btnContainer is a VBox that contains a ton of buttons (toggle=true); and I want to reset them to un-toggled at a certain point.</p> <pre><code>for (var btn:Object in btnContainer.getChildren()){ if (btn.isPrototypeOf(mx.controls.Button)){ btn.selected = false; } } </code></pre> <p>With the above code, "btn" shows up as just the index during each iteration of the loop (0,1,2,3,...), and the conditional never evaluates to true.</p> <p>I also tried this:</p> <pre><code>for (var btn:Button in btnContainer.getChildren()){ btn.selected = false; } </code></pre> <p>This works fine, except that there is also a label inside btnContainer; so it throws an error when trying to cast the label as a button.</p> <p>What am I doing wrong, here?</p> http://stackoverflow.com/questions/1238008/ajax-call-in-modelglue-coldfusion-application-without-rendering-a-view/1238870#1238870 3 Answer by Adam Tuttle for Ajax call in ModelGlue ColdFusion Application without rendering a view Adam Tuttle 2009-08-06T13:24:43Z 2009-08-06T13:24:43Z <p>When you say you "just want to bring back a value" -- that's your "view". What you want to do is use a special view for your remote (ajax) event that just spits out the value. For example, if you want it to return JSON, you might do this:</p> <p><strong>Event Configuration:</strong></p> <pre><code>&lt;event-handler name="test.testFunction"&gt; &lt;broadcasts&gt; &lt;message name="testFunction" /&gt; &lt;/broadcasts&gt; &lt;views&gt; &lt;include name="body" template="renderJson.cfm" /&gt; &lt;/views&gt; &lt;/event-handler&gt; </code></pre> <p><strong>Controller function:</strong></p> <pre><code>&lt;cffunction name="testFunction" returnType="any" output="true" &gt; &lt;cfargument name="event" type="any" required="true"&gt; &lt;cfset event.setValue('justtest', 1) /&gt; &lt;/cffunction&gt; </code></pre> <p><strong>renderJson.cfm:</strong></p> <pre><code>&lt;cfoutput&gt;#serializeJson(event.getValue('justtest'))#&lt;/cfoutput&gt; </code></pre> <p>If you're using Model-Glue 3, you can use the new <a href="http://docs.model-glue.com/wiki/HowTos/Formats" rel="nofollow">Event Formats</a> feature to piggy-back this ajax view on an existing event that does the same thing for a different view-format.</p> http://stackoverflow.com/questions/1228448/coldfusion-8-performance-load-monitoring/1233120#1233120 0 Answer by Adam Tuttle for ColdFusion 8 Performance & Load Monitoring Adam Tuttle 2009-08-05T13:02:30Z 2009-08-05T13:02:30Z <p>For what it's worth (Even though I flagged your post as "should be moved to ServerFault"), I think you should start by switching client storage from Registry to Database. As pointed out in <a href="http://stackoverflow.com/questions/1228506/coldfusion-client-storage">your other question</a>, with database connection pooling the extra database hits are fairly minimal -- and use of the Registry is <strong>unsupported</strong> on Linux; which should throw up a red flag for you.</p> http://stackoverflow.com/questions/1223610/trouble-creating-calendar-in-google-api-via-coldfusion/1228901#1228901 0 Answer by Adam Tuttle for Trouble creating calendar in Google API via Coldfusion Adam Tuttle 2009-08-04T17:36:17Z 2009-08-04T17:36:17Z <p>I would start by outputting the XML you're sending into a text-box and displaying it on-screen, to verify that it's in the correct format:</p> <pre><code>&lt;textarea rows="30" cols="120"&gt; &lt;cfoutput&gt;#trim(toString(locals.xml))#&lt;/cfoutput&gt; &lt;/textarea&gt; </code></pre> <p>Another approach you might consider would be to build your XML as a string, not a native ColdFusion XML object that you later convert to a string: (notice that I'm using CFSaveContent instead of CFXML)</p> <pre><code>&lt;cfsavecontent variable="locals.xml"&gt; &lt;cfoutput&gt; &lt;entry xmlns="http://www.w3.org/2005/Atom" xmlns:gd="http://schemas.google.com/g/2005" xmlns:gCal="http://schemas.google.com/gCal/2005"&gt; &lt;title type="text"&gt;#arguments.argTitle#&lt;/title&gt; &lt;summary type="text"&gt;#arguments.argSummary#&lt;/summary&gt; &lt;cfif len(arguments.argTimezone)&gt;&lt;gCal:timezone value="#arguments.argTimezone#"&gt;&lt;/gCal:timezone&gt;&lt;/cfif&gt; &lt;gCal:hidden value="false"&gt;&lt;/gCal:hidden&gt; &lt;gCal:accesslevel value="owner" /&gt; &lt;gCal:color value="#arguments.argColor#"&gt;&lt;/gCal:color&gt; &lt;gd:where rel='' label='' valueString='Oakland'&gt;&lt;/gd:where&gt; &lt;/entry&gt; &lt;/cfoutput&gt; &lt;/cfsavecontent&gt; </code></pre> http://stackoverflow.com/questions/1192903/passing-an-arraycollection-from-coldfusion-to-flex-with-blazeds/1195524#1195524 0 Answer by Adam Tuttle for Passing an ArrayCollection from ColdFusion to Flex (with BlazeDS) Adam Tuttle 2009-07-28T17:23:05Z 2009-07-28T17:23:05Z <p>For what it's worth, a ColdFusion Query object maps directly and automatically to an ArrayCollection. So if it's an option, you could manually create a query object and return that from your service.</p> http://stackoverflow.com/questions/836730/flex-how-do-i-space-out-items-in-a-horizontallist-control-using-a-custom-itemre 0 Flex: How do I space out items in a HorizontalList control (using a custom ItemRenderer) Adam Tuttle 2009-05-07T20:02:46Z 2009-07-28T10:07:25Z <p>I have a HorizontalList control that uses a custom ItemRenderer to represent each item as a toggle-button. The list allows drag and drop, and I used <a href="http://stackoverflow.com/questions/589840/flex-as3-drag-drop-custom-drop-feedback">this method</a> to rotate the drop feedback (line) into a vertical position instead of horizontal, but with the buttons mashed together, the drop feedback is pretty subtle. I'd like to space out the buttons somehow, so that the drop feedback is more obvious.</p> <p>I've looked through the properties and nothing stands out. There are padding and margin properties, but their descriptions say they affect the list control itself, not the items.</p> <p>Below is the code of my ItemRenderer. I've added padding to it, but that doesn't seem to change anything. If I add padding, that affects the inside of the button, not the space between them, and the button control doesn't have margin properties.</p> <p>I suppose I could base my ItemRenderer on a canvas in order to get a margin, but then I wouldn't inherit all of the functionality of a button.</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:Button xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="go();" toggle="true" &gt; &lt;mx:Script&gt; &lt;![CDATA[ private var _val:int = -1; private function go():void { this.label = data.title; _val = data.index; } override protected function clickHandler(event:MouseEvent):void{ //todo: bubble an event that causes all other //buttons in the list to un-toggle //now do the default clickHandler super.clickHandler(event); } ]]&gt; &lt;/mx:Script&gt; &lt;/mx:Button&gt; </code></pre> http://stackoverflow.com/questions/1141301/in-coldfusion-variables-in-what-scope-can-be-passed-to-and-iframe-page/1143131#1143131 6 Answer by Adam Tuttle for in coldfusion, variables in what scope can be passed to and iframe page? Adam Tuttle 2009-07-17T13:05:02Z 2009-07-17T13:05:02Z <p>It seems like you're misunderstanding a basic concept of web-page requests.</p> <p>An iframe, while displayed as a portion of the rendering page, is in fact its own request, entirely separate from the original page request.</p> <p>Session variables would be shared between the two of them (assuming you have sessions enabled in Application.cfm/Application.cfc), and although it's unlikely that you'll get into a race condition by setting variables from a parent page (1.cfm) and reading them from a child page in an iframe (2.cfm), it's just not a great idea (best practice).</p> <p>Request variables set in the parent page (1.cfm) will <em>not</em> be available to the page in the iframe (2.cfm), as it is a separate request.</p> <p>Like the Request scope is private to each request (but shared to all templates and objects), the "variables" scope is private to each template (but shared among them when using cfinclude).</p> <p>While your iframe will have access to <em>its own</em> <strong>request</strong> and <strong>variables</strong> scopes, they will not be the same scope as the original page (1.cfm).</p> <p>This is a fairly basic concept of programming in general, and also of ColdFusion. If you're finding it difficult to grasp, you might consider picking up a copy of the <a href="http://tr.im/cf8wack" rel="nofollow">ColdFusion Web Application Construction Kit</a>, which can take you from complete novice to beginner-intermediate level fairly quickly.</p> http://stackoverflow.com/questions/1119721/duplicate-file-name-for-same-wsdl-namespace-when-using-web-service-from-differe/1126143#1126143 1 Answer by Adam Tuttle for "Duplicate file name" for same WSDL namespace when using web-service from different sub-domains Adam Tuttle 2009-07-14T15:23:39Z 2009-07-14T15:23:39Z <blockquote> <blockquote> <p>I can not "place the WSDL at a common URL for all customers" for now and I've explained why: because I have to use the sub-domains. If you know the way to put the WSDL at one URL and make service requests to another -- please tell me.</p> </blockquote> </blockquote> <p>A WSDL is just an XML document that describes the web service. You can write (customize) it using CFML. For instance:</p> <blockquote> <blockquote> <p><code>http://subdomain.domain.com/api/wsdl.cfm?api=bsapi&amp;customer=subdomain</code></p> </blockquote> </blockquote> <p>Then just copy the WSDL generated by CF, and use it as a template for your custom WSDL page. Replace the parts of the WSDL that are subdomain-specific and return the XML document. Be mindful of whitespace (perhaps see <a href="http://cfquickdocs.com/cf8/?getDoc=cfsilent" rel="nofollow">CFSilent</a>, <a href="http://cfquickdocs.com/cf8/?getDoc=cfsetting" rel="nofollow">CFSetting</a>), and consider using <a href="http://cfquickdocs.com/cf8/?getDoc=cfheader" rel="nofollow">CFHeader</a> to set the mime type to "text/xml".</p> http://stackoverflow.com/questions/1108227/question-about-coldfusion-component-constructor-name/1111165#1111165 4 Answer by Adam Tuttle for question about ColdFusion component constructor name Adam Tuttle 2009-07-10T18:20:40Z 2009-07-10T18:20:40Z <p>Tomalak's answer is correct for ColdFusion 8; however things are changing a little bit with ColdFusion 9, due out later this year. (For the sake of completeness, I'll copy in Tomalak's answer and adjust as appropriate, so thanks for the head start. :))</p> <p><hr></p> <blockquote> <blockquote> <p>Must I use the name init as the constructor name?</p> </blockquote> </blockquote> <p><strong>CF8:</strong> No, you can name the initialization function anything you like -- "init" is merely a convention. And it is not a true constructor, since it is not automatically called.</p> <p><strong>CF9:</strong> The answer is still "no," you don't <em>have to</em>. But it may behoove you to: This applies to creating objects within cfscript (or script-only components, which are also coming in CF9). The <code>import</code> and <code>new</code> keywords are being added, and you will be able to create an instance of an object like so:</p> <pre><code>import model.security.*; userObj = new User(); </code></pre> <p>This assumes that you have a <code>User.cfc</code> inside the <code>model/security/</code> folder. In addition, CF9 will look for the existence of either a method named "init" or one with the same name as the object ("User", in this case), and implicitly call this as the constructor.</p> <p>I'm not sure if passing in arguments to the <code>new</code> directive will forward them on to the constructor as you would see in Java/C. I assume it will, but I haven't seen any presentations or code examples that indicate one way or the other, yet; and haven't tested it myself because it just occurred to me while writing this. ;) (Another idea: I wonder if multiple constructors with different argument-sets will be supported. I doubt it, but it's a neat idea.)</p> <p>I assume there is some implication that similar functionality might show up in CFML (the tag-based language, separate from cfscript), but nothing has been said about that at this point.</p> <blockquote> <blockquote> <p>If I create an instance of the component without invoking the init method, what is returned?</p> </blockquote> </blockquote> <p>The component instance is returned, as you'd expect it. The presence or absence of an init() function is completely irrelevant. There is no notion of static functions in ColdFusion components, you always get a fully constructed instance from GetObject("component", ...). (Not so for Java objects, which are constructed just before first use, if you forgot to/did not do it manually.)</p> <blockquote> <blockquote> <p>Can I take the code in the init method out and delete the init method, then paste the code to the head of the component, is it have a same effect as the init constructor?</p> </blockquote> </blockquote> <p>Yes, as long <strong>as the init() method did not take any parameters,</strong> there is no difference.</p> <p>However, it is a convention to have a method called init() that returns the component instance ("this"). Even if it does nothing apart from "<code>return this;</code>". I'd stay consistent and add one to every component, even if it was not strictly necessary.</p> http://stackoverflow.com/questions/1086069/how-can-i-debug-javascript-code-within-a-coldfusion-templatea-coldfusion-page-u/1088038#1088038 1 Answer by Adam Tuttle for how can i debug javascript code within a coldfusion template(a coldfusion page) using visual studio 2008 Adam Tuttle 2009-07-06T16:52:43Z 2009-07-06T16:52:43Z <p>Visual Studio isn't aware of CFML Syntax, so it can't debug a CFML page. I don't think you can debug (in the sense of line-debugging, "stepping through") JavaScript code in Visual Studio anyway -- not even inside an ASPX page -- but I'm not sure.</p> <p>What you should use to step-debug JavaScript is <a href="http://www.getfirefox.com/" rel="nofollow">Firefox</a> and <a href="http://getfirebug.com/" rel="nofollow">FireBug</a>. Once you've got the tools, all you need to know is how to use FireBug to debug your JavaScript, which is explained pretty well <a href="http://getfirebug.com/js.html" rel="nofollow">right on the FireBug website</a>.</p> http://stackoverflow.com/questions/1061569/scheduling-a-task-in-railo/1063940#1063940 1 Answer by Adam Tuttle for Scheduling a Task in Railo Adam Tuttle 2009-06-30T14:17:23Z 2009-06-30T14:17:23Z <p>In the Railo <em>Web</em> Administrator (Not the <em>Server</em> Administrator), look in the left-hand navigation under Services. For me, the last one is "Scheduled Tasks" and from here, I can create and manage scheduled tasks.</p> <p>I'm running Railo 3.0.2.001</p> http://stackoverflow.com/questions/195768/in-search-of-javascript-month-picker/1732690#1732690 Comment by Adam Tuttle on In search of JavaScript Month Picker Adam Tuttle 2009-11-19T19:56:14Z 2009-11-19T19:56:14Z Yeah, that's the data I'm after; but the UI is enormous (and ugly). Thanks, though. http://stackoverflow.com/questions/878999/flex-itemrenderer-prevents-use-of-tabbing-between-text-inputs/1732969#1732969 Comment by Adam Tuttle on Flex ItemRenderer prevents use of tabbing between text inputs Adam Tuttle 2009-11-19T19:54:25Z 2009-11-19T19:54:25Z As I mentioned in my comment on Shua's answer, I've just abandoned this approach altogether and gone with a custom component instead of trying to shoe-horn into the list component. Maybe this will be addressed with v4 of the framework, but I don't know. Good luck! http://stackoverflow.com/questions/1715632/coldfusion-cfdirectory-and-the-french/1717792#1717792 Comment by Adam Tuttle on ColdFusion, CFDirectory and the French Adam Tuttle 2009-11-11T20:48:06Z 2009-11-11T20:48:06Z unicode characters rendering fine for me. :) If this is true, then yes, I would suspect either a JVM or an OS problem. http://stackoverflow.com/questions/1673983/creating-an-efficient-search-capability-using-sql-server-and-or-coldfusion/1674868#1674868 Comment by Adam Tuttle on Creating an efficient search capability using SQL Server (and/or coldfusion) Adam Tuttle 2009-11-05T12:23:22Z 2009-11-05T12:23:22Z That's not a problem - have your update process kick off a re-indexing of the data; or do it on a schedule, like overnight every night. If you have ColdFusion, you really should make use of Verity, Lucene, or Solr. They are incredible at what they do, and included, so take advantage of them! http://stackoverflow.com/questions/1676562/how-to-force-scheme-ini-to-be-used-for-ms-text-driver/1676686#1676686 Comment by Adam Tuttle on How to force scheme.ini to be used for MS Text Driver? Adam Tuttle 2009-11-05T12:21:05Z 2009-11-05T12:21:05Z Don't forget to come back and accept your answer after 48 hours. http://stackoverflow.com/questions/1677312/staging-my-coldfusion-app-when-using-cfc-inheritance-extends/1677612#1677612 Comment by Adam Tuttle on Staging my Coldfusion app when using CFC inheritance/extends Adam Tuttle 2009-11-05T12:17:16Z 2009-11-05T12:17:16Z I was going to suggest using GetCurrentTemplatePath() and started working up an example when I saw what I bet you see, Marc... the problem is that Application.cfc doesn't have access to the mapping for &quot;/app&quot; until it's done creating it, so it can't extend that. You should be able to do it with a global mapping, though. http://stackoverflow.com/questions/1633451/session-variable-different-between-remote-cfc-and-page Comment by Adam Tuttle on Session variable different between remote cfc and page Adam Tuttle 2009-10-27T22:56:52Z 2009-10-27T22:56:52Z Can you post your jQuery code so we can double-check that for you, too? http://stackoverflow.com/questions/1615879/could-not-load-definitions-from-resource-flextasks-tasks-it-could-not-be-found/1615909#1615909 Comment by Adam Tuttle on Could not load definitions from resource flexTasks.tasks. It could not be found. Adam Tuttle 2009-10-23T21:21:36Z 2009-10-23T21:21:36Z I took another stab at it and tried &quot;flex.ant.MxmlcTask&quot; (based on the contents of the jar), which got me farther: &quot;build.xml:16: FLEX_HOME must be set to use the Flex Ant Tasks&quot;. I fixed this, and now I can compile. It's not ideal, but it will work for now! :) http://stackoverflow.com/questions/1615879/could-not-load-definitions-from-resource-flextasks-tasks-it-could-not-be-found/1615909#1615909 Comment by Adam Tuttle on Could not load definitions from resource flexTasks.tasks. It could not be found. Adam Tuttle 2009-10-23T21:15:06Z 2009-10-23T21:15:06Z How do I know what to put as the class name? I tried &quot;mxmlc&quot; but that produces this error: &quot;\build.xml:4: taskdef class mxmlc cannot be found&quot; http://stackoverflow.com/questions/1520830/flex-drag-drop-detecting-when-all-data-has-been-moved-from-source-to-destinati/1520894#1520894 Comment by Adam Tuttle on Flex Drag & Drop: Detecting when all data has been moved from source to destination Adam Tuttle 2009-10-05T19:29:58Z 2009-10-05T19:29:58Z Yes, this did exactly what I need. Thank you! I'll edit my code into your answer. http://stackoverflow.com/questions/1301003/does-coldfusion-have-a-short-syntax-for-creating-a-struct/1301094#1301094 Comment by Adam Tuttle on Does ColdFusion have a short syntax for creating a struct? Adam Tuttle 2009-08-20T15:26:24Z 2009-08-20T15:26:24Z In ColdFusion 9, implicit structure and array notation is fixed. Nesting works, and you can create them &quot;on the fly&quot; as function or tag arguments: doFoo({foo=&quot;bar&quot;}) or &lt;cffile attributeCollection=&quot;#{action='read', ...}#&quot;/&gt; http://stackoverflow.com/questions/1278814/is-it-possible-to-do-string-concatenation-in-a-coldfusion-query-of-queries/1279031#1279031 Comment by Adam Tuttle on Is it possible to do string concatenation in a ColdFusion Query of Queries? Adam Tuttle 2009-08-14T17:21:12Z 2009-08-14T17:21:12Z I ran into this when I converted it to a stored procedure, but thanks. http://stackoverflow.com/questions/1260754/why-isnt-the-default-for-cflocation-addtoken-equal-to-no/1260936#1260936 Comment by Adam Tuttle on Why isn't the default for cflocation addtoken equal to no? Adam Tuttle 2009-08-11T16:37:24Z 2009-08-11T16:37:24Z Instead of using the wish list, which just sends a mass email, you should use the new public bug/feature request database: <a href="http://cfbugs.adobe.com/cfbugreport/flexbugui/cfbugtracker/main.html" rel="nofollow">cfbugs.adobe.com/cfbugreport/flexbugui/&hellip;</a> http://stackoverflow.com/questions/1238008/ajax-call-in-modelglue-coldfusion-application-without-rendering-a-view/1242630#1242630 Comment by Adam Tuttle on Ajax call in ModelGlue ColdFusion Application without rendering a view Adam Tuttle 2009-08-08T12:40:30Z 2009-08-08T12:40:30Z Something about this solution really rubs me the wrong way. If you want to interrupt the Model-Glue event lifecycle, why use a Model-Glue event to begin with? In that case, I would do as Henry suggested and just use a remote proxy. http://stackoverflow.com/questions/1246884/flex-3-how-do-i-determine-if-a-generic-object-is-actually-a-button/1247488#1247488 Comment by Adam Tuttle on Flex 3: How do I determine if a generic Object is actually a button? Adam Tuttle 2009-08-08T12:34:53Z 2009-08-08T12:34:53Z Ah, I had dropped the &quot;each&quot; part because I had a brain fart and thought it was optional. Make's sense, thanks.