<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for onemoretake</title>
	<atom:link href="http://www.onemoretake.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.onemoretake.com</link>
	<description></description>
	<lastBuildDate>Tue, 17 Jan 2012 23:48:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on A JQuery UI Dropdown List by li</title>
		<link>http://www.onemoretake.com/2011/04/17/a-better-jquery-ui-combo-box/comment-page-1/#comment-914</link>
		<dc:creator>li</dc:creator>
		<pubDate>Tue, 17 Jan 2012 23:48:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.onemoretake.com/?p=363#comment-914</guid>
		<description>how the fuck the onchange works??</description>
		<content:encoded><![CDATA[<p>how the fuck the onchange works??</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A JQuery UI Dropdown List by ChrisS</title>
		<link>http://www.onemoretake.com/2011/04/17/a-better-jquery-ui-combo-box/comment-page-1/#comment-912</link>
		<dc:creator>ChrisS</dc:creator>
		<pubDate>Fri, 13 Jan 2012 19:33:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.onemoretake.com/?p=363#comment-912</guid>
		<description>Hey Dan,

Thanks for the improved control. I like it.

Here are a couple of additions I have made on mine that seem to make it work better for me.

I was having a problem in that my original select had a tabindex that this was removing. 

I added this line for the var input. I put it after the .insertAfter(select) line, but I don&#039;t suppose it matters too much.

    .attr(&quot;tabindex&quot;, select.attr(&quot;tabindex&quot;))

I suppose I could have captured the select.attr(&quot;tabindex&quot;) in a var above.

Also, for my purposes, it seemed better to include the button within the control at the end to help me line things up. I&#039;m sure for some people this won&#039;t make sense as the button will cover up text that is too wide. Anyway, I have added the following right after the area where the title is set on the button:

    .height(input.height())
    .width(input.height())
    .css(&quot;position&quot;, &quot;absolute&quot;)
    .css(&quot;left&quot;, String(input.position().left + input.width() - input.height()) + &quot;px&quot;)
    .css(&quot;top&quot;, String(input.position().top) + &quot;px&quot;)</description>
		<content:encoded><![CDATA[<p>Hey Dan,</p>
<p>Thanks for the improved control. I like it.</p>
<p>Here are a couple of additions I have made on mine that seem to make it work better for me.</p>
<p>I was having a problem in that my original select had a tabindex that this was removing. </p>
<p>I added this line for the var input. I put it after the .insertAfter(select) line, but I don&#8217;t suppose it matters too much.</p>
<p>    .attr(&#8220;tabindex&#8221;, select.attr(&#8220;tabindex&#8221;))</p>
<p>I suppose I could have captured the select.attr(&#8220;tabindex&#8221;) in a var above.</p>
<p>Also, for my purposes, it seemed better to include the button within the control at the end to help me line things up. I&#8217;m sure for some people this won&#8217;t make sense as the button will cover up text that is too wide. Anyway, I have added the following right after the area where the title is set on the button:</p>
<p>    .height(input.height())<br />
    .width(input.height())<br />
    .css(&#8220;position&#8221;, &#8220;absolute&#8221;)<br />
    .css(&#8220;left&#8221;, String(input.position().left + input.width() &#8211; input.height()) + &#8220;px&#8221;)<br />
    .css(&#8220;top&#8221;, String(input.position().top) + &#8220;px&#8221;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Revisited: Tcpdf &#8211; Variable Height Table Rows With MultiCell by shizumuka</title>
		<link>http://www.onemoretake.com/2009/03/27/revisited-tcpdf-variable-height-table-rows-with-multicell/comment-page-1/#comment-909</link>
		<dc:creator>shizumuka</dc:creator>
		<pubDate>Thu, 29 Dec 2011 10:28:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.onemoretake.com/?p=205#comment-909</guid>
		<description>Ln() doesn&#039;t move the cursor on the next available position...It start&#039;s drawing all multicell commands from 0,0 or something. If i want to display multiple query results using a while structure only the last result will be drawn in the PDF file. It&#039;s like overwriting the same MultiCell over and over again. Any ideeas?</description>
		<content:encoded><![CDATA[<p>Ln() doesn&#8217;t move the cursor on the next available position&#8230;It start&#8217;s drawing all multicell commands from 0,0 or something. If i want to display multiple query results using a while structure only the last result will be drawn in the PDF file. It&#8217;s like overwriting the same MultiCell over and over again. Any ideeas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A JQuery UI Dropdown List by Dan</title>
		<link>http://www.onemoretake.com/2011/04/17/a-better-jquery-ui-combo-box/comment-page-1/#comment-908</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Fri, 23 Dec 2011 07:54:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.onemoretake.com/?p=363#comment-908</guid>
		<description>@Tarek You would need to trigger a custom jquery event as any selection of the combobox is done programmatically. Remember there are a few places where an item is marked as selected</description>
		<content:encoded><![CDATA[<p>@Tarek You would need to trigger a custom jquery event as any selection of the combobox is done programmatically. Remember there are a few places where an item is marked as selected</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A JQuery UI Dropdown List by Tarek</title>
		<link>http://www.onemoretake.com/2011/04/17/a-better-jquery-ui-combo-box/comment-page-1/#comment-907</link>
		<dc:creator>Tarek</dc:creator>
		<pubDate>Thu, 22 Dec 2011 18:49:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.onemoretake.com/?p=363#comment-907</guid>
		<description>How can you capture the onchange event in this combo box?</description>
		<content:encoded><![CDATA[<p>How can you capture the onchange event in this combo box?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sorting Elements with jQuery by Marcio Silveira</title>
		<link>http://www.onemoretake.com/2009/02/25/sorting-elements-with-jquery/comment-page-1/#comment-906</link>
		<dc:creator>Marcio Silveira</dc:creator>
		<pubDate>Tue, 20 Dec 2011 20:56:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.onemoretake.com/?p=11#comment-906</guid>
		<description>Thanks a lot, solved my problem.
Based on that I made the function above to sort by attributes:

    function sortElementsByAttribute(elements, atributte, destiny) {
        elements.sort(function (a, b) {
            var compA = $(a).attr(atributte);
            var compB = $(b).attr(atributte);
            return (compA  compB) ? 1 : 0;
        });
        $.each(elements, function (idx, item) { destiny.append(item); });
    }


You can use it with rows of tables, for example, with some personal tribute, for instance:

sortElementsByAttribute($(&quot;#myTable tbody&quot;).children(&quot;tr&quot;).get(), &quot;OrderAttrib&quot;, $(&quot;#myTable tbody&quot;));</description>
		<content:encoded><![CDATA[<p>Thanks a lot, solved my problem.<br />
Based on that I made the function above to sort by attributes:</p>
<p>    function sortElementsByAttribute(elements, atributte, destiny) {<br />
        elements.sort(function (a, b) {<br />
            var compA = $(a).attr(atributte);<br />
            var compB = $(b).attr(atributte);<br />
            return (compA  compB) ? 1 : 0;<br />
        });<br />
        $.each(elements, function (idx, item) { destiny.append(item); });<br />
    }</p>
<p>You can use it with rows of tables, for example, with some personal tribute, for instance:</p>
<p>sortElementsByAttribute($(&#8220;#myTable tbody&#8221;).children(&#8220;tr&#8221;).get(), &#8220;OrderAttrib&#8221;, $(&#8220;#myTable tbody&#8221;));</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sorting Elements with jQuery by brauliobo</title>
		<link>http://www.onemoretake.com/2009/02/25/sorting-elements-with-jquery/comment-page-1/#comment-905</link>
		<dc:creator>brauliobo</dc:creator>
		<pubDate>Mon, 05 Dec 2011 15:29:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.onemoretake.com/?p=11#comment-905</guid>
		<description>A more generic function:


function jQuerySort(elements, options) {
  if (typeof options === &#039;undefined&#039;) options = {};
  options.ascending = typeof options.ascending === &#039;undefined&#039; ? 1 : (options.ascending ? 1 : -1);
  var list = elements.get();
  list.sort(function(a, b) {
    var compA = (options.find ? jQuery(a).find(options.find) : jQuery(a)).text().toUpperCase();
    var compB = (options.find ? jQuery(b).find(options.find) : jQuery(b)).text().toUpperCase();
    return options.ascending * ((compA  compB) ? 1 : 0);
  });                   
  parent = elements.first().parent();
  jQuery.each(list, function(index, element) { parent.append(element); });
}</description>
		<content:encoded><![CDATA[<p>A more generic function:</p>
<p>function jQuerySort(elements, options) {<br />
  if (typeof options === &#8216;undefined&#8217;) options = {};<br />
  options.ascending = typeof options.ascending === &#8216;undefined&#8217; ? 1 : (options.ascending ? 1 : -1);<br />
  var list = elements.get();<br />
  list.sort(function(a, b) {<br />
    var compA = (options.find ? jQuery(a).find(options.find) : jQuery(a)).text().toUpperCase();<br />
    var compB = (options.find ? jQuery(b).find(options.find) : jQuery(b)).text().toUpperCase();<br />
    return options.ascending * ((compA  compB) ? 1 : 0);<br />
  });<br />
  parent = elements.first().parent();<br />
  jQuery.each(list, function(index, element) { parent.append(element); });<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sorting Elements with jQuery by seth</title>
		<link>http://www.onemoretake.com/2009/02/25/sorting-elements-with-jquery/comment-page-1/#comment-904</link>
		<dc:creator>seth</dc:creator>
		<pubDate>Sun, 20 Nov 2011 19:23:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.onemoretake.com/?p=11#comment-904</guid>
		<description>Thank you thank you! This is perfect!</description>
		<content:encoded><![CDATA[<p>Thank you thank you! This is perfect!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cuesheet Maker Bookmarklet for Discogs.com by iLen</title>
		<link>http://www.onemoretake.com/2009/09/18/cuesheet-maker-bookmarklet-for-discogs-com/comment-page-1/#comment-903</link>
		<dc:creator>iLen</dc:creator>
		<pubDate>Wed, 16 Nov 2011 11:54:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.onemoretake.com/?p=268#comment-903</guid>
		<description>Thanks for the script. 

But one suggestion. Can you remove the quotes around the Track index field since foobar2000 cannot parse the Cue sheet with the qotes...

cue += &#039;    INDEX 01 &#039;+quo+track.index+quo+&#039;\n&#039;;

would be changed to:

cue += &#039;    INDEX 01 &#039;+track.index+&#039;\n&#039;;</description>
		<content:encoded><![CDATA[<p>Thanks for the script. </p>
<p>But one suggestion. Can you remove the quotes around the Track index field since foobar2000 cannot parse the Cue sheet with the qotes&#8230;</p>
<p>cue += &#8216;    INDEX 01 &#8216;+quo+track.index+quo+&#8217;\n&#8217;;</p>
<p>would be changed to:</p>
<p>cue += &#8216;    INDEX 01 &#8216;+track.index+&#8217;\n&#8217;;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tcpdf &#8211; Variable Height Table Rows With MultiCell by terpurok</title>
		<link>http://www.onemoretake.com/2009/03/09/tcpdf-variable-height-table-rows-with-multicell/comment-page-1/#comment-901</link>
		<dc:creator>terpurok</dc:creator>
		<pubDate>Tue, 25 Oct 2011 01:53:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.onemoretake.com/?p=153#comment-901</guid>
		<description>i have a problem, if a row breaks in 1st page the content overwrites in the next page. Any Solution for that?</description>
		<content:encoded><![CDATA[<p>i have a problem, if a row breaks in 1st page the content overwrites in the next page. Any Solution for that?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

