<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>jQuery FlexBox</title><link>http://flexbox.codeplex.com/project/feeds/rss</link><description>FlexBox is a flexible jQuery plugin to replace html textboxes and dropdowns, using ajax&amp;#47;JSON for data. It can be used as a ComboBox, Suggest box &amp;#40;like Google Search&amp;#41;, or a type-ahead &amp;#40;autocomplete&amp;#41; input box.  It supports css skinning, paging, caching, and much more.             </description><item><title>Commented Issue: Show all dropdown options after a selection is made [8999]</title><link>http://flexbox.codeplex.com/workitem/8999</link><description>I think the FlexBox should work more like a dropdown menu, in that if you click the arrow icon you should always see the full list of options to select from.&lt;br /&gt;&lt;br /&gt;Currently, you see the full list the first time you click the arrow. But once a selection is made, the arrow is now useless because clicking on it only shows the single option &amp;#40;current selection&amp;#41;.&lt;br /&gt;&lt;br /&gt;Which makes this really just a type-ahead &amp;#47; autocomplete field, not really a combobox...&lt;br /&gt;&lt;br /&gt;Thanks.&lt;br /&gt;Comments: I was able to solve the &amp;#34;final bug&amp;#34; I was having with this feature and have it successfully implemented. I used this thread&amp;#58;&amp;#10;&amp;#10;https&amp;#58;&amp;#47;&amp;#47;flexbox.codeplex.com&amp;#47;discussions&amp;#47;251643 &amp;#40;I added the code posted by &amp;#34;Yoannr&amp;#34; AND &amp;#34;jimiscott&amp;#34;.&amp;#41; &amp;#10;&amp;#10;Although, this made an existing bug very apparent. This bug is reproducible with or without the code above. After you have made a selection, click on the Input Box and delete your selection, then &amp;#40;while still in the input box&amp;#41; move the cursor straight over &amp;#40;horizontally&amp;#41; to the arrow and click it. Most of the time, it will just &amp;#34;flash&amp;#34; and not show the results &amp;#40;list items&amp;#41;. The reason is, the &amp;#34;blur&amp;#40;&amp;#41;&amp;#34; handler on the input box sets a timeout with a delay of 200 milliseconds, then hides the results window. This isn&amp;#39;t enough time for the handler to fire and complete before the arrow.click&amp;#40;&amp;#41; handler tries to show the results, so the results immediately get &amp;#34;hidden&amp;#34;. &amp;#40;The workaround was to click on some other element or the screen, then click on the arrow. This gives the timer enough time to fire the &amp;#34;hideResults&amp;#40;&amp;#41;&amp;#34; function, BEFORE you click the arrow.&amp;#41;&amp;#10;&amp;#10;There is an easy code fix to this bug, though. In the blur&amp;#40;&amp;#41; handler for the input element, change the setTimeout&amp;#40;hideResults&amp;#40;&amp;#41;&amp;#41; call from 200 milliseconds to 100 milliseconds. That seems to work perfectly.&amp;#10;</description><author>sjudkins</author><pubDate>Tue, 14 May 2013 14:56:12 GMT</pubDate><guid isPermaLink="false">Commented Issue: Show all dropdown options after a selection is made [8999] 20130514025612P</guid></item><item><title>New Post: Implement Parent/Child Cascading?</title><link>http://flexbox.codeplex.com/discussions/443180</link><description>&lt;div style="line-height: normal;"&gt;I solved this and fixed a &amp;quot;bug&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
I solved the parent/child issue by removing the Div in the OnClick() handler just before adding the new one back (with the filtered data).&lt;br /&gt;
&lt;br /&gt;
I also implemented &amp;quot;keep results&amp;quot;, which shows the full list when the arrow is clicked, even after a selection has been made. I used the information from this article:&lt;br /&gt;
&lt;br /&gt;
&lt;a href="https://flexbox.codeplex.com/discussions/251643" rel="nofollow"&gt;https://flexbox.codeplex.com/discussions/251643&lt;/a&gt;  (I added the code posted by &amp;quot;Yoannr&amp;quot; AND &amp;quot;jimiscott&amp;quot;.)&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;bug&amp;quot; I ran in to is if you make a selection, keep the mouse on the drop down arrow and then click again, the delay for hiding the results is too long (200 milliseconds) and ends up firing after your mouse click, so the results get hidden. This &amp;quot;bug&amp;quot; is easily reproducible and happens (with or without the changes I mentioned above). There is an easy fix though. In the blur() handler for the input element, change the setTimeout(hideResults()) call from 200 milliseconds to 100 milliseconds. That seems to work perfectly.&lt;br /&gt;
&lt;/div&gt;</description><author>sjudkins</author><pubDate>Tue, 14 May 2013 14:47:50 GMT</pubDate><guid isPermaLink="false">New Post: Implement Parent/Child Cascading? 20130514024750P</guid></item><item><title>Commented Issue: Show all dropdown options after a selection is made [8999]</title><link>http://flexbox.codeplex.com/workitem/8999</link><description>I think the FlexBox should work more like a dropdown menu, in that if you click the arrow icon you should always see the full list of options to select from.&lt;br /&gt;&lt;br /&gt;Currently, you see the full list the first time you click the arrow. But once a selection is made, the arrow is now useless because clicking on it only shows the single option &amp;#40;current selection&amp;#41;.&lt;br /&gt;&lt;br /&gt;Which makes this really just a type-ahead &amp;#47; autocomplete field, not really a combobox...&lt;br /&gt;&lt;br /&gt;Thanks.&lt;br /&gt;Comments: I have been very close to implementing this functionality myself. Although, the closest I came was when you click on the arrow after making a selection, the paging no longer works, UGH. I am going to give up for now and just hope that this will be added to the &amp;#34;official&amp;#34; version. I don&amp;#39;t really like having customizations like that anyway, since it has a tendency to break future upgrades.</description><author>sjudkins</author><pubDate>Mon, 13 May 2013 19:50:42 GMT</pubDate><guid isPermaLink="false">Commented Issue: Show all dropdown options after a selection is made [8999] 20130513075042P</guid></item><item><title>New Post: Implement Parent/Child Cascading?</title><link>http://flexbox.codeplex.com/discussions/443180</link><description>&lt;div style="line-height: normal;"&gt;How would you suggest I implement a &amp;quot;Parent/Child Cascading&amp;quot; situatoin on a page? I am using ASP.Net and I hacehave the flexbox code working. I have two flexbox controls on the page, each is populated with data. When the user selects an option from one of the drop downs, I need to filter the choices in the other dropdown (and probably unselect if there was something selected and return the control to the &amp;quot;watermark&amp;quot;). I have tried just adding another call to the flexbox function from the OnSelect even handler for the parent, but that adds another control to the page. Is there any way to dynamically remove (not hide, but remove) the child? (I could then call the flexbox function and let it add it...) Or, what other solution would you suggest?&lt;br /&gt;
&lt;br /&gt;
This is a great control. Thanks!&lt;br /&gt;
&lt;/div&gt;</description><author>sjudkins</author><pubDate>Thu, 09 May 2013 22:48:04 GMT</pubDate><guid isPermaLink="false">New Post: Implement Parent/Child Cascading? 20130509104804P</guid></item><item><title>New Post: Line/word wrap in the combo list placing vertical separator in the middle of the next line.</title><link>http://flexbox.codeplex.com/discussions/440381</link><description>&lt;div style="line-height: normal;"&gt;When entries in the combo list are wider than the list vbox, and line/word wrapping is enabled, the vertical separator that is supposed to separate the entries appears in the middle of the next line instead of below the second line of the wrapped entry. &lt;br /&gt;
For example:&lt;br /&gt;
|_________________|&lt;br /&gt;
| This is the first line. |&lt;br /&gt;
|_________________|&lt;br /&gt;
| This is the second.  |&lt;br /&gt;
| line.                            |&lt;br /&gt;
| This is the third line.|&lt;br /&gt;
|_________________|&lt;br /&gt;
| This is the forth line.|&lt;br /&gt;
&lt;/div&gt;</description><author>alexxmed</author><pubDate>Mon, 15 Apr 2013 23:09:08 GMT</pubDate><guid isPermaLink="false">New Post: Line/word wrap in the combo list placing vertical separator in the middle of the next line. 20130415110908P</guid></item><item><title>Edited Unassigned: autoCompleteFirstMatch demo doesn't allow spaces [9002]</title><link>http://flexbox.codeplex.com/workitem/9002</link><description>on http&amp;#58;&amp;#47;&amp;#47;www.fairwaytech.com&amp;#47;flexbox&amp;#47;flexbox-demos&amp;#35;demo1&lt;br /&gt;&lt;br /&gt;chrome, os x&lt;br /&gt;&lt;br /&gt;I try to type &amp;#34;united states&amp;#34; into the box. When I get to the space the selected text always resets to before the space after I type it. So I can&amp;#39;t type past the space in &amp;#39;united states&amp;#39; and am left with &amp;#34;united arab emerites&amp;#34; in, unable to filter further.&lt;br /&gt;</description><author>gunderson</author><pubDate>Sat, 13 Apr 2013 23:44:38 GMT</pubDate><guid isPermaLink="false">Edited Unassigned: autoCompleteFirstMatch demo doesn't allow spaces [9002] 20130413114438P</guid></item><item><title>Created Unassigned: autoCompleteFirstMatch demo doesn't allow spaces [9002]</title><link>http://flexbox.codeplex.com/workitem/9002</link><description>on http&amp;#58;&amp;#47;&amp;#47;www.fairwaytech.com&amp;#47;flexbox&amp;#47;flexbox-demos&amp;#35;demo1&lt;br /&gt;&lt;br /&gt;chrome, os x&lt;br /&gt;</description><author>gunderson</author><pubDate>Sat, 13 Apr 2013 23:38:20 GMT</pubDate><guid isPermaLink="false">Created Unassigned: autoCompleteFirstMatch demo doesn't allow spaces [9002] 20130413113820P</guid></item><item><title>New Post: Integration with jqgrid</title><link>http://flexbox.codeplex.com/discussions/265550</link><description>&lt;div style="line-height: normal;"&gt;Please check this page: &lt;a href="http://techbrij.com/jqgrid-flexbox-jquery-autocomplete-edit" rel="nofollow"&gt;http://techbrij.com/jqgrid-flexbox-jquery-autocomplete-edit&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>johnny81</author><pubDate>Tue, 26 Feb 2013 11:25:58 GMT</pubDate><guid isPermaLink="false">New Post: Integration with jqgrid 20130226112558A</guid></item><item><title>Commented Issue: How to Display multiple flexbox results together [8997]</title><link>http://flexbox.codeplex.com/workitem/8997</link><description>I want  to create a two flexbox together.&lt;br /&gt;&lt;br /&gt;When I am search something with any word, I have to display results with pagination and all functionality together. Is there any solution for this issue.&lt;br /&gt;&lt;br /&gt;Please help  me out from this task.&lt;br /&gt;&lt;br /&gt;Thanks in Advance.&lt;br /&gt;&lt;br /&gt;Tejas Savaliya&lt;br /&gt;Comments: What exactly do you mean&amp;#63; Do you want to display them as a list in another section of the page&amp;#63;&amp;#10;</description><author>sorinpostelnicu</author><pubDate>Wed, 20 Feb 2013 18:29:00 GMT</pubDate><guid isPermaLink="false">Commented Issue: How to Display multiple flexbox results together [8997] 20130220062900P</guid></item><item><title>Created Issue: JS error in IE8: 'undefined' is null or not an object [9001]</title><link>http://flexbox.codeplex.com/workitem/9001</link><description>&lt;br /&gt;I have the following error in IE8 using query.flexbox 0.9.6.1&amp;#58;&lt;br /&gt;&lt;br /&gt;Webpage error details&lt;br /&gt;User Agent&amp;#58; Mozilla&amp;#47;4.0 &amp;#40;compatible&amp;#59; MSIE 8.0&amp;#59; Windows NT 5.1&amp;#59; Trident&amp;#47;4.0&amp;#41;&lt;br /&gt;Timestamp&amp;#58; Wed, 23 Jan 2013 10&amp;#58;13&amp;#58;22 UTC&lt;br /&gt;Message&amp;#58; &amp;#39;undefined&amp;#39; is null or not an object&lt;br /&gt;Line&amp;#58; 305&lt;br /&gt;Char&amp;#58; 5&lt;br /&gt;Code&amp;#58; 0&lt;br /&gt;&lt;br /&gt;FYI I feed the JSON directly to the FlexBox instead of using a script to retrieve it. Anyway I&amp;#39;ve made a fix that you can implement if you want to...&lt;br /&gt;&lt;br /&gt;replace line 314&amp;#58;&lt;br /&gt;&lt;br /&gt;var indexOfMatch &amp;#61; data&amp;#91;o.resultsProperty&amp;#93;&amp;#91;i&amp;#93;&amp;#91;o.displayValue&amp;#93;.toLowerCase&amp;#40;&amp;#41;.indexOf&amp;#40;params.q.toLowerCase&amp;#40;&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;by the following block&amp;#58;&lt;br /&gt;&lt;br /&gt;var indexOfMatch&amp;#59;&lt;br /&gt;if &amp;#40;data&amp;#91;o.resultsProperty&amp;#93;&amp;#91;i&amp;#93; &amp;#33;&amp;#61; undefined&amp;#41; &amp;#123;&lt;br /&gt;    indexOfMatch &amp;#61; data&amp;#91;o.resultsProperty&amp;#93;&amp;#91;i&amp;#93;&amp;#91;o.displayValue&amp;#93;.toLowerCase&amp;#40;&amp;#41;.indexOf&amp;#40;params.q.toLowerCase&amp;#40;&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125; else indexOfMatch &amp;#61; -1&amp;#59;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I hope it helps&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description><author>kasimodo</author><pubDate>Wed, 23 Jan 2013 10:55:59 GMT</pubDate><guid isPermaLink="false">Created Issue: JS error in IE8: 'undefined' is null or not an object [9001] 20130123105559A</guid></item><item><title>New Post: Selected list Page index while click on Arrow</title><link>http://flexbox.codeplex.com/discussions/430413</link><description>&lt;div style="line-height: normal;"&gt;Hi &lt;span style="color:rgb(34,34,34); font-family:arial,sans-serif; font-size:12.800000190734863px; background-color:rgb(255,255,255)"&gt;
Noah,&lt;/span&gt;
&lt;div&gt;&lt;font color="#222222" face="arial, sans-serif"&gt;&lt;br&gt;
&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font color="#222222" face="arial, sans-serif"&gt;First, Click on arrow and Show all records and Then i have moved to 2nd page index.(Screenshot Attached - Screen-1.png)&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font color="#222222" face="arial, sans-serif"&gt;&lt;br&gt;
&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font color="#222222" face="arial, sans-serif"&gt;Second, Then I have selected record (id - 9) which is on page index 2. Then click on Arrow as per Screenshot .Here i am showing whole record instead of Selected record only.&lt;/font&gt;&lt;span style="color:rgb(34,34,34); font-family:arial,sans-serif"&gt;(Screenshot
 Attached - Screen-2.png)&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span style="color:rgb(34,34,34); font-family:arial,sans-serif"&gt;&lt;br&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span style="color:rgb(34,34,34); font-family:arial,sans-serif"&gt;Third, When i am clicking on Arrow then its showing me 1st Index Rather that 2nd index on which my Seleted record is there.So here i want to automatically select index 2.&lt;/span&gt;&lt;font color="#222222" face="arial, sans-serif"&gt;.&lt;/font&gt;&lt;span style="color:rgb(34,34,34); font-family:arial,sans-serif"&gt;(Screenshot
 Attached - Screen-3.png)&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span style="color:rgb(34,34,34); font-family:arial,sans-serif"&gt;&lt;br&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span style="color:rgb(34,34,34); font-family:arial,sans-serif"&gt;Waiting for your response.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;font color="#222222" face="arial, sans-serif"&gt;&lt;br&gt;
&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font color="#222222" face="arial, sans-serif"&gt;Thanks,&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font color="#222222" face="arial, sans-serif"&gt;Ravi.&lt;br&gt;
&lt;/font&gt;
&lt;div&gt;&lt;span style="color:rgb(34,34,34); font-family:arial,sans-serif; font-size:12.800000190734863px; background-color:rgb(255,255,255)"&gt;&lt;br&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span style="color:rgb(34,34,34); font-family:arial,sans-serif; font-size:12.800000190734863px; background-color:rgb(255,255,255)"&gt;&lt;br&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;</description><author>rsolucky</author><pubDate>Wed, 23 Jan 2013 07:28:22 GMT</pubDate><guid isPermaLink="false">New Post: Selected list Page index while click on Arrow 20130123072822A</guid></item><item><title>New Post: Selected list Page index while click on Arrow</title><link>http://flexbox.codeplex.com/discussions/430413</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;Thank you for your reply Noah.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;But for that i need to show you screen shot but here i can't attach anything, So would you give me your email id where i can send you these.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;Thanks,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Ravi.&lt;/p&gt;
&lt;/div&gt;</description><author>rsolucky</author><pubDate>Wed, 23 Jan 2013 06:53:49 GMT</pubDate><guid isPermaLink="false">New Post: Selected list Page index while click on Arrow 20130123065349A</guid></item><item><title>New Post: Selected list Page index while click on Arrow</title><link>http://flexbox.codeplex.com/discussions/430413</link><description>&lt;div style="line-height: normal;"&gt;
&lt;div&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;I’m not quite sure what you’re trying to achieve. Can you describe in more detail, or provide an example with real data please?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;Thanks,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;Noah&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div&gt;
&lt;div style="border:none; border-top:solid #B5C4DF 1.0pt; padding:3.0pt 0in 0in 0in"&gt;
&lt;p&gt;&lt;b&gt;&lt;span style="font-size:10.0pt; font-family:"&gt;From:&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size:10.0pt; font-family:"&gt; rsolucky [email removed]
&lt;br&gt;
&lt;b&gt;Sent:&lt;/b&gt; Tuesday, January 22, 2013 4:28 AM&lt;br&gt;
&lt;b&gt;To:&lt;/b&gt; Noah Heldman&lt;br&gt;
&lt;b&gt;Subject:&lt;/b&gt; Selected list Page index while click on Arrow [flexbox:430413]&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;From: rsolucky&lt;/span&gt;&lt;/p&gt;
&lt;div id="ThreadNotificationPostBody" style="margin-bottom:24.0pt"&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;Hi,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;I am Using Flexbox for multiple Column grid in My Application. And When i have selected one record and Then by Clicking on Arrow i want all records and Page Index should be such that that current Selected Value
 should be Display.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10.0pt; font-family:"&gt;thanks,&lt;/span&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;Ravi.&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;</description><author>nheldman</author><pubDate>Tue, 22 Jan 2013 16:35:22 GMT</pubDate><guid isPermaLink="false">New Post: Selected list Page index while click on Arrow 20130122043522P</guid></item><item><title>New Post: Selected list Page index while click on Arrow</title><link>http://flexbox.codeplex.com/discussions/430413</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I am Using Flexbox for multiple Column grid in My Application. And When i have selected one record and Then by Clicking on Arrow i want all records and Page Index should be such that that current Selected Value should be Display.&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;thanks,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Ravi.&lt;/p&gt;
&lt;/div&gt;</description><author>rsolucky</author><pubDate>Tue, 22 Jan 2013 12:27:33 GMT</pubDate><guid isPermaLink="false">New Post: Selected list Page index while click on Arrow 20130122122733P</guid></item><item><title>New Post: No results for callback()</title><link>http://flexbox.codeplex.com/discussions/403332</link><description>&lt;div style="line-height: normal;"&gt;
&lt;div&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;Thank you! Good catch on that one.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div&gt;
&lt;div style="border:none; border-top:solid #B5C4DF 1.0pt; padding:3.0pt 0in 0in 0in"&gt;
&lt;p&gt;&lt;b&gt;&lt;span style="font-size:10.0pt; font-family:"&gt;From:&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size:10.0pt; font-family:"&gt; adeluca [email removed]
&lt;br&gt;
&lt;b&gt;Sent:&lt;/b&gt; Thursday, November 15, 2012 11:47 AM&lt;br&gt;
&lt;b&gt;To:&lt;/b&gt; Noah Heldman&lt;br&gt;
&lt;b&gt;Subject:&lt;/b&gt; No results for callback() [flexbox:403332]&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;From: adeluca&lt;/span&gt;&lt;/p&gt;
&lt;div id="ThreadNotificationPostBody" style="margin-bottom:24.0pt"&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;First off, amazing library. Thanks for all the work you've done. One small issue I encountered that I hope I have fixed below... In the unminified version, near line 260, there is a block that tests for totalResults
 being NaN and a paging object. Unfortunately, there is no logical operation within the block for returning a no results message. The modulo of 0/pageSize will never be greater than 0 and so the bit where pages gets incremented before
&lt;span style="color:silver"&gt;parseInt(&amp;#43;&amp;#43;pages)&lt;/span&gt; never fires off.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;To fix this, I changed this block:&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;if (isNaN(totalResults) &amp;&amp; o.paging) {&lt;/pre&gt;
&lt;pre&gt;                ....&lt;/pre&gt;
&lt;pre&gt;                totalResults = data[o.resultsProperty].length;          &lt;/pre&gt;
&lt;pre&gt;                var pages = totalResults / pageSize;&lt;/pre&gt;
&lt;pre&gt;                if (totalResults % pageSize &amp;gt; 0) pages = parseInt(&amp;#43;&amp;#43;pages);&lt;/pre&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;to the following:&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;if (isNaN(totalResults) &amp;&amp; o.paging) {&lt;/pre&gt;
&lt;pre&gt;                ....&lt;/pre&gt;
&lt;pre&gt;                totalResults = data[o.resultsProperty].length;   &lt;/pre&gt;
&lt;pre&gt;&lt;span style="color:red"&gt;/*  added to correct no results fail - ajd 11/15/2012   */&lt;/span&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;span style="color:red"&gt;                if(totalResults == 0) { &lt;/span&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;span style="color:red"&gt;                     data[o.totalProperty] = 0;&lt;/span&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;span style="color:red"&gt;                     displayItems(data,q); // I can haz no results?&lt;/span&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;span style="color:red"&gt;                }&lt;/span&gt;       &lt;/pre&gt;
&lt;pre&gt;                var pages = totalResults / pageSize;&lt;/pre&gt;
&lt;pre&gt;                if (totalResults % pageSize &amp;gt; 0) {&lt;/pre&gt;
&lt;pre&gt;                     pages = parseInt(&amp;#43;&amp;#43;pages);&lt;/pre&gt;
&lt;pre&gt;                }&lt;/pre&gt;
&lt;pre&gt; &lt;/pre&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;HTH,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;al&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;</description><author>nheldman</author><pubDate>Thu, 15 Nov 2012 22:44:11 GMT</pubDate><guid isPermaLink="false">New Post: No results for callback() 20121115104411P</guid></item><item><title>New Post: resetting and passing new data to flexbox</title><link>http://flexbox.codeplex.com/discussions/53653</link><description>&lt;div style="line-height: normal;"&gt;
&lt;div&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;Great example, thanks for posting!&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div&gt;
&lt;div style="border:none; border-top:solid #B5C4DF 1.0pt; padding:3.0pt 0in 0in 0in"&gt;
&lt;p&gt;&lt;b&gt;&lt;span style="font-size:10.0pt; font-family:"&gt;From:&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size:10.0pt; font-family:"&gt; adeluca [email removed]
&lt;br&gt;
&lt;b&gt;Sent:&lt;/b&gt; Thursday, November 15, 2012 11:49 AM&lt;br&gt;
&lt;b&gt;To:&lt;/b&gt; Noah Heldman&lt;br&gt;
&lt;b&gt;Subject:&lt;/b&gt; Re: resetting and passing new data to flexbox [flexbox:53653]&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;From: adeluca&lt;/span&gt;&lt;/p&gt;
&lt;div id="ThreadNotificationPostBody" style="margin-bottom:24.0pt"&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;I got this done by binding some code (in red below) to my reset event:&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;&lt;br&gt;$(function() {&lt;/pre&gt;
&lt;pre&gt;   var fname= $('#partner_flexbox').closest(&amp;quot;form&amp;quot;).attr(&amp;quot;id&amp;quot;) &lt;/pre&gt;
&lt;pre&gt;   doPartner();&lt;/pre&gt;
&lt;pre&gt;&lt;span style="color:red"&gt;   $(&amp;quot;#&amp;quot;&amp;#43;fname).bind(&amp;quot;reset&amp;quot;, function() {&lt;/span&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;span style="color:red"&gt;     emptyPartner();&lt;/span&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;span style="color:red"&gt;    });&lt;/span&gt;&lt;/pre&gt;
&lt;pre&gt;   function doPartner() {&lt;/pre&gt;
&lt;pre&gt;           $('#partner_flexbox').flexbox('partner_dropdown', {&lt;/pre&gt;
&lt;pre&gt;               width: 165, queryDelay: 350, &lt;/pre&gt;
&lt;pre&gt;               noResultsText: 'No partners by that name found', &lt;/pre&gt;
&lt;pre&gt;               watermark: 'Enter a partner name', &lt;/pre&gt;
&lt;pre&gt;               minChars: 2, &lt;/pre&gt;
&lt;pre&gt;               paging: { pageSize: 10}&lt;/pre&gt;
&lt;pre&gt;               });  &lt;/pre&gt;
&lt;pre&gt;   }&lt;/pre&gt;
&lt;pre&gt;   function emptyPartner() {&lt;/pre&gt;
&lt;pre&gt;           $('#partner_flexbox').empty();&lt;/pre&gt;
&lt;pre&gt;           doPartner();&lt;/pre&gt;
&lt;pre&gt;   }&lt;/pre&gt;
&lt;pre&gt;});&lt;/pre&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;&lt;br&gt;
The OP wants this to happen when an item is selected. The docs mention that there is an onSelect event:&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;onSelect: function() {  &lt;/pre&gt;
&lt;pre&gt;   $('#ffb7-result')  &lt;/pre&gt;
&lt;pre&gt;  .html('You selected' &amp;#43; this.value &amp;#43; ', ' &amp;#43;  &lt;/pre&gt;
&lt;pre&gt;  'which has a hidden value of ' &amp;#43;  &lt;/pre&gt;
&lt;pre&gt;  $('input[name=ffb7]').val());  &lt;/pre&gt;
&lt;pre&gt;}  &lt;/pre&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;Simply make a call to a function like emptyPartner() above only pass it the values in onSelect() as params:&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;onSelect: function() {  &lt;/pre&gt;
&lt;pre&gt;   $('#ffb7-result')  &lt;/pre&gt;
&lt;pre&gt;  .html('You selected' &amp;#43; this.value &amp;#43; ', ' &amp;#43;  &lt;/pre&gt;
&lt;pre&gt;  'which has a hidden value of ' &amp;#43;  &lt;/pre&gt;
&lt;pre&gt;  $('input[name=ffb7]').val());&lt;/pre&gt;
&lt;pre&gt;  &lt;span style="color:red"&gt;emptyPartner( this.value, $('input[name=ffb7]').val() )&lt;/span&gt;&lt;/pre&gt;
&lt;pre&gt;}&lt;/pre&gt;
&lt;p&gt;&lt;span style="font-size:9.0pt; font-family:"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;</description><author>nheldman</author><pubDate>Thu, 15 Nov 2012 22:41:51 GMT</pubDate><guid isPermaLink="false">New Post: resetting and passing new data to flexbox 20121115104151P</guid></item><item><title>New Post: resetting and passing new data to flexbox</title><link>http://flexbox.codeplex.com/discussions/53653</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I got this done by binding some code (in red below) to my reset event:&lt;/p&gt;
&lt;pre&gt;&lt;br&gt;$(function() {
   var fname= $('#partner_flexbox').closest(&amp;quot;form&amp;quot;).attr(&amp;quot;id&amp;quot;) 
   doPartner();
&lt;span style="color:#ff0000"&gt;   $(&amp;quot;#&amp;quot;&amp;#43;fname).bind(&amp;quot;reset&amp;quot;, function() {
     emptyPartner();
    });&lt;/span&gt;
   function doPartner() {
	   $('#partner_flexbox').flexbox('partner_dropdown', {
	       width: 165, queryDelay: 350, 
	       noResultsText: 'No partners by that name found', 
	       watermark: 'Enter a partner name', 
	       minChars: 2, 
	       paging: { pageSize: 10}
	       });  
   }
   function emptyPartner() {
	   $('#partner_flexbox').empty();
	   doPartner();
   }
});&lt;br&gt;&lt;/pre&gt;
&lt;p&gt;&lt;br&gt;
The OP wants this to happen when an item is selected.&amp;nbsp; The docs mention that there is an onSelect event:&lt;/p&gt;
&lt;pre&gt;onSelect: function() {  
   $('#ffb7-result')  
  .html('You selected' &amp;#43; this.value &amp;#43; ', ' &amp;#43;  
  'which has a hidden value of ' &amp;#43;  
  $('input[name=ffb7]').val());  
}  
&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Simply make a call to a function like emptyPartner() above only pass it the values in onSelect() as params:&lt;/p&gt;
&lt;pre&gt;onSelect: function() {  
   $('#ffb7-result')  
  .html('You selected' &amp;#43; this.value &amp;#43; ', ' &amp;#43;  
  'which has a hidden value of ' &amp;#43;  
  $('input[name=ffb7]').val());
  &lt;span style="color:#ff0000"&gt;emptyPartner( this.value, $('input[name=ffb7]').val() )&lt;/span&gt;
}&lt;br&gt;&lt;/pre&gt;
&amp;nbsp;&lt;/div&gt;</description><author>adeluca</author><pubDate>Thu, 15 Nov 2012 17:59:01 GMT</pubDate><guid isPermaLink="false">New Post: resetting and passing new data to flexbox 20121115055901P</guid></item><item><title>New Post: No results for callback()</title><link>http://flexbox.codeplex.com/discussions/403332</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;First off, amazing library. Thanks for all the work you've done. One small issue I encountered that I hope I have fixed below... In the unminified version near line 260 there is a test for totalResults being NaN and there being a paging object. Unfortunately,
 there is no logical operation for returning a no results message.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I changed this block:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;pre&gt;if (isNaN(totalResults) &amp;&amp; o.paging) {
                ....
                totalResults = data[o.resultsProperty].length;          
                var pages = totalResults / pageSize;
                if (totalResults % pageSize &amp;gt; 0) {
                     pages = parseInt(&amp;#43;&amp;#43;pages);
                }&lt;/pre&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;to the following:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;pre&gt;if (isNaN(totalResults) &amp;&amp; o.paging) {
                ....
                totalResults = data[o.resultsProperty].length;   
/*  added to correct no results fail - ajd 11/15/2012   */
                if(totalResults == 0) { 
                     data[o.totalProperty] = 0;
                     displayItems(data,q); // I can haz no results?
                }       
                var pages = totalResults / pageSize;
                if (totalResults % pageSize &amp;gt; 0) {
                     pages = parseInt(&amp;#43;&amp;#43;pages);
                }

&lt;/pre&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;HTH,&lt;/p&gt;
&lt;p&gt;al&lt;/p&gt;
&lt;/div&gt;</description><author>adeluca</author><pubDate>Thu, 15 Nov 2012 14:43:46 GMT</pubDate><guid isPermaLink="false">New Post: No results for callback() 20121115024346P</guid></item><item><title>Commented Issue: Showing Multiple result set, [8998]</title><link>http://flexbox.codeplex.com/workitem/8998</link><description>When i am typeing a flexbox it shows multiple  result set which is annoying.&lt;br /&gt;Comments: Hello all. I think this is more than just a low priority item. The speed of the control seems to be negatively impacted by this behavior.</description><author>mikeyearwood</author><pubDate>Thu, 18 Oct 2012 23:09:15 GMT</pubDate><guid isPermaLink="false">Commented Issue: Showing Multiple result set, [8998] 20121018110915P</guid></item><item><title>Created Issue: Proposed feature: add onBlur Behavior [9000]</title><link>http://flexbox.codeplex.com/workitem/9000</link><description>When user enters a new item in the box, the onSelect Behavior is redundant. However, in order to validate user input an onBlur Behavior would be good. Of course you can just add your own onBlur handler for the hidden input but that might not be obvious to all users.&lt;br /&gt;</description><author>flarpy</author><pubDate>Wed, 10 Oct 2012 09:10:34 GMT</pubDate><guid isPermaLink="false">Created Issue: Proposed feature: add onBlur Behavior [9000] 20121010091034A</guid></item></channel></rss>