<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Eric Hynds - Latest Comments</title><link>http://erichynds.disqus.com/</link><description></description><atom:link href="https://erichynds.disqus.com/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Fri, 22 Jun 2018 06:46:44 -0000</lastBuildDate><item><title>Re: jQuery UI MultiSelect Widget</title><link>http://www.erichynds.com/?p=832#comment-3955755244</link><description>&lt;p&gt;Is it possible to achieve Infinite Scroll with ajax data load in multiselect&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Soubhagya Choudhury</dc:creator><pubDate>Fri, 22 Jun 2018 06:46:44 -0000</pubDate></item><item><title>Re: jQuery UI MultiSelect Widget</title><link>http://www.erichynds.com/?p=832#comment-3516967730</link><description>&lt;p&gt;How did you find the solution to this ? I am having the same problem.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Himanshu Gupta</dc:creator><pubDate>Thu, 14 Sep 2017 07:18:28 -0000</pubDate></item><item><title>Re: jQuery UI MultiSelect Widget</title><link>http://www.erichynds.com/?p=832#comment-3479177358</link><description>&lt;p&gt;When I applied this multi select to my ASP.NET Listbox control, If Listbox  once post back  I'm not able to select multi values at a time.&lt;br&gt;Can you please help me out .&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jambulaiah B</dc:creator><pubDate>Mon, 21 Aug 2017 06:30:33 -0000</pubDate></item><item><title>Re: jQuery UI MultiSelect Widget</title><link>http://www.erichynds.com/?p=832#comment-3479174576</link><description>&lt;p&gt;thank you !&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jambulaiah B</dc:creator><pubDate>Mon, 21 Aug 2017 06:27:43 -0000</pubDate></item><item><title>Re: jQuery UI MultiSelect Widget</title><link>http://www.erichynds.com/?p=832#comment-3476394319</link><description>&lt;p&gt;you can do this in click event of multiselect.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Parag Dodia</dc:creator><pubDate>Sat, 19 Aug 2017 10:57:39 -0000</pubDate></item><item><title>Re: jQuery UI MultiSelect Widget</title><link>http://www.erichynds.com/?p=832#comment-3476074948</link><description>&lt;p&gt;Is it possible to disable another element, while any value is checked from multi select&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jambulaiah B</dc:creator><pubDate>Sat, 19 Aug 2017 05:07:13 -0000</pubDate></item><item><title>Re: jQuery UI MultiSelect Widget</title><link>http://www.erichynds.com/?p=832#comment-3476045230</link><description>&lt;p&gt;how can I check that multiselect is already initialized or not?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Parag Dodia</dc:creator><pubDate>Sat, 19 Aug 2017 04:14:15 -0000</pubDate></item><item><title>Re: jQuery UI MultiSelect Widget</title><link>http://www.erichynds.com/?p=832#comment-3471203303</link><description>&lt;p&gt;I had to modify the JS file.  In my refresh function I added something like this:&lt;/p&gt;&lt;p&gt;var id = el.attr('id') || multiselectID++; // unique ID for the label &amp;amp; option tags&lt;/p&gt;&lt;p&gt;            if (id == el.attr('id')) {&lt;br&gt;                id = id + '_' + multiselectID;&lt;br&gt;            }&lt;/p&gt;&lt;p&gt;The first part declaring the ID I believe should already be in there for you.  The if statement I added to make each item have a unique ID on the page.  I believe that is how I got around this.  It has been a few years since I did this so it might of been to fix something else.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">panteracanes</dc:creator><pubDate>Wed, 16 Aug 2017 13:10:21 -0000</pubDate></item><item><title>Re: jQuery UI MultiSelect Widget</title><link>http://www.erichynds.com/?p=832#comment-3383265455</link><description>&lt;p&gt;I am using it twice in a html, its producing duplicate ids, so select all option is not working fine in one of the two, is there any way to fix this issue&lt;/p&gt;&lt;p&gt;ex: duplicate ids id="mine"&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Lakshmipathi Vemula</dc:creator><pubDate>Fri, 23 Jun 2017 23:37:48 -0000</pubDate></item><item><title>Re: jQuery UI MultiSelect Widget</title><link>http://www.erichynds.com/?p=832#comment-3366400030</link><description>&lt;p&gt;How do send an array of selected items and get those selected when the page is getting load....Please help me out...&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Tamal Kundu</dc:creator><pubDate>Sat, 17 Jun 2017 03:51:29 -0000</pubDate></item><item><title>Re: jQuery UI MultiSelect Widget</title><link>http://www.erichynds.com/?p=832#comment-3314594726</link><description>&lt;p&gt;Limit your resultset to 1k and then increment it to see where the choke point is.   I am having performance issue too but only with IE so I direct my user to use FF.  Are you having the same issue with Firefox or Chrome?  The only thing I did differently from Eric's example was load the data in via ajax then loop through the array and push the data into the select.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Stevie</dc:creator><pubDate>Fri, 19 May 2017 13:35:44 -0000</pubDate></item><item><title>Re: jQuery UI MultiSelect Widget</title><link>http://www.erichynds.com/?p=832#comment-3314338771</link><description>&lt;p&gt;Hi Stevie,&lt;/p&gt;&lt;p&gt;Thanks for your reply.&lt;/p&gt;&lt;p&gt;Yes they are straight text and I don't have special character,option with guid as  value and string as text&lt;br&gt;options look as below.&lt;br&gt;&amp;lt;option value="c0d83aba-fc5d-43ef-a789-f28e6184b8ac"&amp;gt;234567-DC97AKXY&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;when I load large data the control is freezing so I can't work on it.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Manoj Gadupudi</dc:creator><pubDate>Fri, 19 May 2017 11:02:46 -0000</pubDate></item><item><title>Re: jQuery UI MultiSelect Widget</title><link>http://www.erichynds.com/?p=832#comment-3312482018</link><description>&lt;p&gt;Are they all straight text with no special characters?  I have ran into issues with characters like single quote.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Stevie</dc:creator><pubDate>Thu, 18 May 2017 10:36:35 -0000</pubDate></item><item><title>Re: jQuery UI MultiSelect Widget</title><link>http://www.erichynds.com/?p=832#comment-3311955619</link><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;I have 10000 items which is not working properly,kindly suggest me something to make it work for large no of items.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Manoj Gadupudi</dc:creator><pubDate>Thu, 18 May 2017 02:53:26 -0000</pubDate></item><item><title>Re: jQuery UI MultiSelect Widget</title><link>http://www.erichynds.com/?p=832#comment-3311955323</link><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;I have 10000 items which is not working properly,kindly suggest me something to make it work for large no of items.&lt;/p&gt;&lt;p&gt;your help is really appriciated&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Manoj Gadupudi</dc:creator><pubDate>Thu, 18 May 2017 02:52:59 -0000</pubDate></item><item><title>Re: jQuery UI MultiSelect Widget</title><link>http://www.erichynds.com/?p=832#comment-3286730336</link><description>&lt;p&gt;Its crazy but I have few thousand items in one of the menus.  Performance on IE went down big time but Firefox is working just fine.  Customers took a big hit up front but they seem to be fine because everything else is fast after that.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Stevie</dc:creator><pubDate>Wed, 03 May 2017 10:41:58 -0000</pubDate></item><item><title>Re: jQuery UI MultiSelect Widget</title><link>http://www.erichynds.com/?p=832#comment-3172390190</link><description>&lt;p&gt;Nice&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Bidesh Jana</dc:creator><pubDate>Fri, 24 Feb 2017 01:20:12 -0000</pubDate></item><item><title>Re: jQuery UI MultiSelect Widget</title><link>http://www.erichynds.com/?p=832#comment-3153978357</link><description>&lt;p&gt;Excellent Tutorial.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Akhilesh Maurya</dc:creator><pubDate>Tue, 14 Feb 2017 01:14:02 -0000</pubDate></item><item><title>Re: jQuery UI MultiSelect Widget</title><link>http://www.erichynds.com/?p=832#comment-3061272603</link><description>&lt;p&gt;what is the maximum number of items to be realistic that you could have in a menu?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">eliyahuo@gmail.com</dc:creator><pubDate>Tue, 20 Dec 2016 12:51:22 -0000</pubDate></item><item><title>Re: jQuery UI MultiSelect Widget</title><link>http://www.erichynds.com/?p=832#comment-3053024367</link><description>&lt;p&gt;thanx for options...best results&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anurag Bhardwaj</dc:creator><pubDate>Thu, 15 Dec 2016 01:14:01 -0000</pubDate></item><item><title>Re: jQuery UI MultiSelect Widget</title><link>http://www.erichynds.com/?p=832#comment-2987614233</link><description>&lt;p&gt;Demo link is broken... :(&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Diogo Souza</dc:creator><pubDate>Sun, 06 Nov 2016 09:10:03 -0000</pubDate></item><item><title>Re: jQuery UI MultiSelect Widget</title><link>http://www.erichynds.com/?p=832#comment-2940712974</link><description>&lt;p&gt;How to load page with previously selected values, tried val('a,b') does not work&lt;br&gt;any other ?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">appaji</dc:creator><pubDate>Sun, 09 Oct 2016 01:00:10 -0000</pubDate></item><item><title>Re: jQuery UI MultiSelect Widget</title><link>http://www.erichynds.com/?p=832#comment-2887995397</link><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;It's a great plug-in.&lt;/p&gt;&lt;p&gt;I have a question.&lt;br&gt;How can I hide the multiselect like $('#balise).hide() in jquery.&lt;/p&gt;&lt;p&gt;Indeed I would like hide a multiselect element according the precedent choice. &lt;br&gt;I don' t want to use destroy method (($('#balise).multiselect("destroy"); )) because this involve to initialize again if you want to show again .&lt;/p&gt;&lt;p&gt;Thank you&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">choylee</dc:creator><pubDate>Sun, 11 Sep 2016 15:41:03 -0000</pubDate></item><item><title>Re: jQuery UI MultiSelect Widget</title><link>http://www.erichynds.com/?p=832#comment-2819402570</link><description>&lt;p&gt;Try to pull fresh code from github. I had same problem with filter.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Daniil Lopatin</dc:creator><pubDate>Wed, 03 Aug 2016 16:29:25 -0000</pubDate></item><item><title>Re: jQuery UI MultiSelect Widget</title><link>http://www.erichynds.com/?p=832#comment-2817625663</link><description>&lt;p&gt;Hi Eric, I went a step ahead and figured out enevet where I need to call external REST service. I am trying to use this multiselect for allowing user to select multiple SharePoint list items. So in _registerSearchEvents I implemented $.ajax call to SharePoint List. The URL do bring the result however during debug I found that object d in data.d.results.length is null. I ran the same code outside of widget and it runs perfectly fine. Kindly suggest what would be the solution for this issue.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">HARDIK BHILOTA</dc:creator><pubDate>Tue, 02 Aug 2016 15:30:28 -0000</pubDate></item></channel></rss>