User Simon Lieschke - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T07:13:02Zhttp://stackoverflow.com/feeds/user/2766http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1830058/styling-a-swt-label-to-be-italic2Styling a SWT label to be italicSimon Lieschke2009-12-02T01:08:10Z2009-12-02T10:08:34Z
<p>How would I go about styling a SWT label created along the following lines so it is displayed italicised?</p>
<pre><code>Label label = formToolkit.createLabel(composite, "My label name");
</code></pre>
http://stackoverflow.com/questions/753514/how-do-i-dynamically-load-google-analytics-javascript/755010#7550106Answer by Simon Lieschke for How do I dynamically load Google Analytics JavaScript?Simon Lieschke2009-04-16T06:44:57Z2009-12-02T08:38:25Z<p>This <a href="http://lyncd.com/2009/03/better-google-analytics-javascript/" rel="nofollow">Better Google Analytics JavaScript that doesn’t block page downloading</a> post details how you should be able to get this working with <code>ga.js</code>.</p>
<p><strong>UPDATE:</strong> Google <a href="http://code.google.com/apis/analytics/docs/tracking/asyncTracking.html" rel="nofollow">now provide a JavaScript snippet</a> for loading the analytics code asynchronously.</p>
http://stackoverflow.com/questions/1047319/detecting-if-a-browser-is-in-full-screen-mode2Detecting if a browser is in full screen modeSimon Lieschke2009-06-26T04:22:40Z2009-11-09T20:18:21Z
<p>Is there any way of reliably detecting if a browser is running in full screen mode? I'm pretty sure there isn't any browser API I can query, but has anyone worked it out by inspecting and comparing certain height/width measurements exposed by the DOM? Even if it only works for certain browsers I'm interested in hearing about it.</p>
http://stackoverflow.com/questions/1509360/how-do-i-disable-the-click-handler-on-a-yui-node/1512159#15121592Answer by Simon Lieschke for How do I disable the click handler on a YUI Node?Simon Lieschke2009-10-02T22:44:46Z2009-10-03T01:51:06Z<p>Try the <a href="http://developer.yahoo.com/yui/3/api/DOMEventFacade.html#method%5Fhalt" rel="nofollow"><code>halt</code> method</a> on the event facade passed to your event handler:</p>
<pre><code>this.controlNode = Y.Node.create("<input id='" + id + "' type='radio' name='" + parent.id + "'>");
this.controlNode.on("click", function(e) { e.halt(); });
</code></pre>
<p>This will stop the event propagating and the default event behaviour (the click).</p>
http://stackoverflow.com/questions/720763/jquery-ajax-empty-json-object-parse-error/721258#7212581Answer by Simon Lieschke for jQuery.ajax() + empty JSON object = parse errorSimon Lieschke2009-04-06T12:43:33Z2009-09-30T21:48:36Z<p>Instead of:</p>
<pre><code>$(json).each(function () { ... });
</code></pre>
<p>I think you want to be using:</p>
<pre><code>$.each(json, function () { ... });
</code></pre>
<p>From the <a href="http://docs.jquery.com/Utilities/jQuery.each" rel="nofollow">jQuery.each documentation</a>:</p>
<blockquote>
<p>This function is not the same as
<a href="http://docs.jquery.com/Core/each" rel="nofollow">$().each()</a> - which is used to iterate,
exclusively, over a jQuery object.
This function can be used to iterate
over anything.</p>
</blockquote>
http://stackoverflow.com/questions/1067976/overflowing-html-line-text-before-it-gets-obscured-by-right-aligned-content2Overflowing HTML line text before it gets obscured by right aligned contentSimon Lieschke2009-07-01T08:32:28Z2009-07-17T19:01:17Z
<p>I've got some text that is displayed on a single line in a container that has a fixed width. If the text can't be contained within the width of the container the overflow is hidden. Any combination of three status icons may appear positioned from the right hand side of the container. If any of these icons appear I'd like the text overflow to be hidden before the first icon appears so the text does not appear obscured behind the icons.</p>
<p><strong>How can I overflow the text so it doesn't flow under the icons (ideally using only CSS and not needing to resort to JavaScript)?</strong></p>
<p>An example of the CSS and HTML I've started from (neither of which are set in concrete) follows. <a href="http://jsbin.com/omifa" rel="nofollow">Here's a live example</a> of the code which also illustrates the desired result (note it has an background image inlined in the CSS using the <a href="http://en.wikipedia.org/wiki/Data%5FURI%5Fscheme" rel="nofollow">data URI scheme</a> so won't work in versions of Internet Explorer earlier than 8). </p>
<p>CSS:</p>
<pre><code>.line {
position: relative;
width: 200px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.star, .circle, .flag {
position: absolute;
top: 3px;
height: 23px;
width: 15px;
background-image: url(icons.png);
}
.star {
right: 30px;
}
.circle {
right: 15px;
background-position: -17px 0;
}
.flag {
right: 0;
background-position: -32px 0;
}
</code></pre>
<p>HTML:</p>
<pre><code><div class="line">This is some text that should have overflow that is hidden.</div>
<div class="line">
This is some text that should have overflow that is hidden.
<div class="flag"></div>
</div>
<div class="line">
This is some text that should have overflow that is hidden.
<div class="circle"></div><div class="flag"></div>
</div>
<div class="line">
This is some text that should have overflow that is hidden.
<div class="star"></div><div class="circle"></div><div class="flag"></div>
</div>
<div class="line">
This is some text that should have overflow that is hidden.
<div class="star"></div><div class="flag"></div>
</div>
<div class="line">
This is some text that should have overflow that is hidden.
<div class="circle"></div>
</div>
</code></pre>
http://stackoverflow.com/questions/802175/truncating-long-strings-with-css-feasible-yet/1101702#110170211Answer by Simon Lieschke for Truncating long strings with CSS: feasible yet?Simon Lieschke2009-07-09T03:27:03Z2009-07-09T03:27:03Z<p>Justin Maxwell has cross browser CSS solution. It does come with the downside however of not allowing the text to be selected in Firefox. Check out <a href="http://mattsnider.com/css/css-string-truncation-with-ellipsis/" rel="nofollow">his guest post on Matt Snider's blog</a> for the full details on how this works.</p>
<p><strong>CSS</strong></p>
<pre><code>.ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
-moz-binding: url('assets/xml/ellipsis.xml#ellipsis');
}
</code></pre>
<p><strong><code>ellipsis.xml</code> file contents</strong></p>
<pre><code><?xml version="1.0"?>
<bindings
xmlns="http://www.mozilla.org/xbl"
xmlns:xbl="http://www.mozilla.org/xbl"
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
>
<binding id="ellipsis">
<content>
<xul:window>
<xul:description crop="end" xbl:inherits="value=xbl:text"><children/></xul:description>
</xul:window>
</content>
</binding>
</bindings>
</code></pre>
http://stackoverflow.com/questions/536814/javascript-insert-ellipsis-into-html-tag-if-content-too-wide/1101678#11016780Answer by Simon Lieschke for JavaScript: Insert ellipsis (...) into HTML tag if content too wideSimon Lieschke2009-07-09T03:16:35Z2009-07-09T03:22:00Z<p>Justin Maxwell has an excellent CSS solution to this problem. Unlike some of the JavaScript solutions presented here it doesn't cut off the text mid-letter. It does come with the downside however of not allowing the text to be selected in Firefox. Check out <a href="http://mattsnider.com/css/css-string-truncation-with-ellipsis/" rel="nofollow">his guest post on Matt Snider's blog</a> for the full details on how this works.</p>
<p><strong>CSS</strong></p>
<pre><code>.ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
-moz-binding: url('assets/xml/ellipsis.xml#ellipsis');
}
</code></pre>
<p><strong><code>ellipsis.xml</code> file contents</strong></p>
<pre><code><?xml version="1.0"?>
<bindings
xmlns="http://www.mozilla.org/xbl"
xmlns:xbl="http://www.mozilla.org/xbl"
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
>
<binding id="ellipsis">
<content>
<xul:window>
<xul:description crop="end" xbl:inherits="value=xbl:text"><children/></xul:description>
</xul:window>
</content>
</binding>
</bindings>
</code></pre>
http://stackoverflow.com/questions/1092269/jquery-datepicker-onchangemonthyear/1092297#10922972Answer by Simon Lieschke for jquery datepicker onChangeMonthYearSimon Lieschke2009-07-07T13:21:29Z2009-07-07T13:31:06Z<p>Try setting a flag that you can query in your event handler to prevent the infinite loop:</p>
<pre><code>var changingDate = false;
$('.selector').datepicker({
onChangeMonthYear: function(year, month, inst) {
if (changingDate) {
return;
}
changingDate = true;
// your setDate() call here
changingDate = false;
}
});
</code></pre>
http://stackoverflow.com/questions/1092071/why-are-iframes-so-slow/1092164#10921642Answer by Simon Lieschke for Why are iframes so slow?Simon Lieschke2009-07-07T12:55:43Z2009-07-07T12:55:43Z<p>Steve Souders has a post <a href="http://www.stevesouders.com/blog/2009/06/03/using-iframes-sparingly/" rel="nofollow"><em>Using Iframes Sparingly</em></a> on his High Performance Web Sites blog that may provide some more insight.</p>
http://stackoverflow.com/questions/1083213/problem-with-html-scrollbars-not-appearing-via-window-open/1092122#10921220Answer by Simon Lieschke for Problem with HTML? Scrollbars Not Appearing via window.openSimon Lieschke2009-07-07T12:47:31Z2009-07-07T12:47:31Z<p>Have you tried sizing your main browser window to approximately the size of your popup window and directly navigating to the page that you would display in your popup? Do the scrollbars appear when you load the page directly? The popup window is possibly a red herring.</p>
http://stackoverflow.com/questions/1065130/how-can-i-get-the-revision-number-into-an-ant-property-in-luntbuild/1092062#10920621Answer by Simon Lieschke for How can I get the revision number into an Ant property in Luntbuild?Simon Lieschke2009-07-07T12:37:01Z2009-07-07T12:37:01Z<p>You might find using either the <a href="http://subclipse.tigris.org/svnant.html" rel="nofollow">SvnAnt</a> or <a href="http://code.google.com/p/svntask/" rel="nofollow">svntask</a> Ant tasks to get the Subversion revision number directly in your Ant script might be a valid alternative.</p>
http://stackoverflow.com/questions/1087918/automatic-update-of-keyword-in-word-document/1091984#10919840Answer by Simon Lieschke for Automatic update of keyword in Word documentSimon Lieschke2009-07-07T12:19:01Z2009-07-07T12:19:01Z<p>Version 3.5 of <a href="http://poi.apache.org/" rel="nofollow">Apache POI</a> (a Java API for accessing Office format files) has support for Office Open XML format documents. It is currently in beta as of writing.</p>
<p>The <a href="http://www.aspose.com/categories/file-format-components/aspose.words-for-.net-and-java/default.aspx" rel="nofollow">Aspose.Words class library</a> looks like a non-free option that could also be used to help solve your problem.</p>
http://stackoverflow.com/questions/1085916/problem-with-plotting-graph-with-flot/1091949#10919490Answer by Simon Lieschke for Problem with plotting Graph with flot Simon Lieschke2009-07-07T12:08:59Z2009-07-07T12:08:59Z<p>Firstly it looks like the JavaScript list you are creating with your PHP code isn't separating each data point list item with a comma separator.</p>
<p>According to the <a href="http://docs.jquery.com/Ajax/jQuery.ajax" rel="nofollow">jQuery $.ajax documentation</a> the first argument passed to the <code>success</code> function is the <em>data returned from the server, formatted according to the 'dataType' parameter</em>. You haven't provided a <code>dataType</code> parameter. The docs say it will <em>intelligently pass either responseXML or responseText to your success callback, based on the MIME type of the response</em> if no <code>dataType</code> has been specified.</p>
<p>I'm guessing the data getting passed to the plot function is a plain old string instead of a JavaScript list object as expected by Flot. Adding a <code>dataType: 'json'</code> option to your <code>$.ajax</code> call should fix this up.</p>
http://stackoverflow.com/questions/1036665/aligning-the-baseline-of-a-yui-button-with-the-baseline-of-the-text-next-to-it1Aligning the baseline of a YUI button with the baseline of the text next to itSimon Lieschke2009-06-24T06:17:03Z2009-06-26T08:02:08Z
<p>I'd like to display a YUI button next to some text, but the baseline of the YUI button text does not line up with the baseline of the text next to it. The font family and size is identical for both the button text and the text next to it.</p>
<p>If I use a plain HTML button the text baselines correctly line up.</p>
<p><a href="http://jsbin.com/upace" rel="nofollow">Here's a live example of the problem.</a></p>
<p><strong>How can I get the text baselines to line up?</strong></p>
http://stackoverflow.com/questions/1036665/aligning-the-baseline-of-a-yui-button-with-the-baseline-of-the-text-next-to-it/1047900#10479000Answer by Simon Lieschke for Aligning the baseline of a YUI button with the baseline of the text next to itSimon Lieschke2009-06-26T08:02:08Z2009-06-26T08:02:08Z<p>I had a go at styling the button from scratch. The following CSS is what I came up with. It has the advantage that the adjacent text to the button does not need to be wrapped in any additional elements. It works fine in the latest version of Internet Explorer, Firefox, and Safari. Firefox 2 doesn't correctly size the button height, and IE 6 and 7 each butcher it in their own special ways.</p>
<p><a href="http://jsbin.com/itexe" rel="nofollow">Here's a live example of this code.</a></p>
<pre><code>.yui-button {
display: inline-block;
background: transparent url(http://yui.yahooapis.com/2.7.0/build/assets/skins/sam/sprite.png) repeat-x scroll 0 0;
border-color: #808080;
border-style: solid;
border-width: 1px 0;
margin: auto 0.25em;
}
.yui-skin-sam .yui-button .first-child {
display: inline-block;
border-color: #808080;
border-style: solid;
border-width: 0 1px;
margin: 0 -1px;
}
.yui-skin-sam .yui-button button {
background-color: transparent;
border: medium none;
margin: 0;
min-height: 2em;
padding: 0 10px;
}
</code></pre>
http://stackoverflow.com/questions/953959/documentation-on-the-seemasknozonechecks-environment-variable3Documentation on the SEE_MASK_NOZONECHECKS environment variableSimon Lieschke2009-06-05T01:58:27Z2009-06-09T15:14:32Z
<p>I'm helping to try track down and reproduce an issue with our web application in Internet Explorer for one of our clients. Their browser process is launched with the <code>SEE_MASK_NOZONECHECKS</code> environment variable set. I'm trying to find out the changes that variable will have on Internet Explorer's behaviour. A <a href="http://www.google.com/search?hl=en&q=SEE%5FMASK%5FNOZONECHECKS" rel="nofollow">Google search</a> reveals <a href="http://support.microsoft.com/kb/889815" rel="nofollow">a single Microsoft Knowledge Base article</a> that only says <em>it will disable all Zone Checking</em>, and a whole bunch of forum posts with similarly vague information.</p>
<p><strong>Does anyone know of any official documentation that provides more detailed information about the <code>SEE_MASK_NOZONECHECKS</code> environment variable?</strong></p>
http://stackoverflow.com/questions/900084/point-ivy-dependency-at-a-local-file/900189#9001893Answer by Simon Lieschke for Point ivy dependency at a local file?Simon Lieschke2009-05-22T22:02:15Z2009-05-22T22:02:15Z<p>Pointing the Ivy dependency at your locally built module isn't the way to solve this. Instead when you build module B publish it to your local Ivy repository. When you resolve your dependencies for module A it will pull down module B from your local repository.</p>
<p><a href="http://ant.apache.org/ivy/history/2.1.0-rc1/tutorial/defaultconf.html" rel="nofollow">From the Ivy docs on the local repository</a>:</p>
<blockquote>
<p>The local repository is particularly
useful when you want to do something
without being disturbed by anything
else happening in the environment.
This means that whenever ivy is able
to locate a module in this repository
it will be used, no matter of what is
available in others.</p>
<p>For instance, if you have a module
declaring a dependency on the module
foo in revision latest.integration,
then if a revision of foo is found in
the local repository, it will be used,
even if a more recent revision is
available in other repositories. </p>
<p>This may be disturbing for some of
you, but imagine you have to implement
a new feature on a project, and in
order to achieve that you need to
modify two modules: you add a new
method in module foo and exploit this
new method in module bar. Then if you
publish the module foo to your local
repository, you will be sure to get it
in your bar module, even if someone
else publish a new revision of foo in
the shared repository (this revision
not having the new method you are
currently adding). </p>
<p>But be careful, when you have finished
your development and publish it on the
shared you will have to clean your
local repository to benefit from new
versions published in the shared
repository.</p>
<p>Note also that modules found in the
local repository must be complete,
i.e. they must provide both a module
descriptor and the published
artifacts.</p>
</blockquote>
<p>The <a href="http://ant.apache.org/ivy/history/2.1.0-rc1/tutorial/multiproject.html" rel="nofollow">Using Ivy in multiple projects environment</a> documentation has an example <code>publish-local</code> Ant task that you might find useful.</p>
http://stackoverflow.com/questions/891199/servlet-filters-and-the-osgi-httpservice/891232#8912321Answer by Simon Lieschke for Servlet Filters and the OSGi HttpServiceSimon Lieschke2009-05-21T03:05:36Z2009-05-21T03:05:36Z<p>This <a href="https://bugs.eclipse.org/bugs/show%5Fbug.cgi?id=128068" rel="nofollow">issue for adding servlet filter support</a> offers some potential workarounds.</p>
<p>Also:</p>
<blockquote>
<p><a href="http://wiki.ops4j.org/display/paxweb/Pax%2BWeb" rel="nofollow">Pax Web</a> [extends] OSGi Http Service
with better servlet support, filters,
listeners, error pages and JSPs and
some others in order to meet the
latest versions of Servlet specs.</p>
</blockquote>
http://stackoverflow.com/questions/864093/internet-explorers-autocomplete-function-does-not-trigger-javascript-events/875441#8754410Answer by Simon Lieschke for Internet Explorer’s “Autocomplete” function does not trigger JavaScript EventsSimon Lieschke2009-05-17T20:39:26Z2009-05-17T20:39:26Z<p>From <a href="http://msdn.microsoft.com/en-us/library/ms533032%28VS.85%29.aspx" rel="nofollow">Using AutoComplete in HTML Forms</a> on MSDN:</p>
<blockquote>
<p>To determine when a user updates the
content of a field from the
AutoComplete dialog box, use the
<a href="http://msdn.microsoft.com/en-us/library/ms536956%28VS.85%29.aspx" rel="nofollow">onpropertychange</a> event, rather than
the <a href="http://msdn.microsoft.com/en-us/library/ms536912%28VS.85%29.aspx" rel="nofollow">onchange</a> event, because the
<strong>onchange</strong> event does not fire.</p>
</blockquote>
<p>Note that the <code>onpropertychange</code> event is proprietary to Internet Explorer so you'll still need handling for other browsers, and that it fires after every keystroke so it's not directly compatible with the <code>onchange</code> event.</p>
http://stackoverflow.com/questions/855998/what-are-some-good-css-shorthands-you-can-think-of/856034#8560343Answer by Simon Lieschke for what are some good css shorthands you can think of?Simon Lieschke2009-05-13T04:14:40Z2009-05-13T04:14:40Z<p>Dustin Diaz has <a href="http://www.dustindiaz.com/css-shorthand/" rel="nofollow">an excellent CSS shorthand guide</a>.</p>
http://stackoverflow.com/questions/268385/is-there-a-tool-to-measure-pixels-on-a-screen/851451#8514510Answer by Simon Lieschke for Is there a tool to measure pixels on a screenSimon Lieschke2009-05-12T06:41:32Z2009-05-12T06:41:32Z<p><a href="http://ecotect.com/project/rulertool" rel="nofollow">Ruler Tool</a> is yet another option.</p>
http://stackoverflow.com/questions/690671/is-javascript-ready-for-visualizing-large-datasets/839956#8399561Answer by Simon Lieschke for Is Javascript ready for visualizing large datasets?Simon Lieschke2009-05-08T14:09:51Z2009-05-08T14:09:51Z<p>I highly recommend Adam's suggestion to perform some benchmarking and optimisation. I've recently done some work on plotting large datasets with Flot and experienced less than acceptable performance with Internet Explorer (e.g. the entire browser hanging for ~20s on my developer box while plotting charts).</p>
<p>Flot uses the <a href="http://en.wikipedia.org/wiki/Canvas%5F%28HTML%5Felement%29" rel="nofollow"><code>canvas</code></a> element for charting which is not supported in Internet Explorer. Flot provides Internet Explorer support using the <a href="http://code.google.com/p/explorercanvas/" rel="nofollow">ExplorerCanvas</a> library. This library uses <a href="http://en.wikipedia.org/wiki/Vector%5FMarkup%5FLanguage" rel="nofollow">VML</a>, drawing graphics by manipulating VML elements through the DOM.</p>
<p>Using the <a href="http://msdn.microsoft.com/en-nz/library/dd565629%28en-us,VS.85%29.aspx" rel="nofollow">Internet Explorer 8 script profiler</a> I discovered most of the time taken rendering the plot was spent calling the native <a href="http://msdn.microsoft.com/en-us/library/ms536452.aspx" rel="nofollow">insertAdjacentHTML method</a> to create the VML elements. Because there was nothing that can be done to improve performance of calls to native methods I instead worked on reducing the number of data points plotted (in turn reducing the VML elements created in the DOM) to get acceptable performance.</p>
<p>If you don't need or care about Internet Explorer support you should find Flot/Flotr is quite capable of handling large datasets. But if you do need to support Internet Explorer be prepared to run into performance problems when charting large datasets.</p>
http://stackoverflow.com/questions/805868/strict-doctype-preventing-access-to-dom-variable-in-firefox/839731#8397311Answer by Simon Lieschke for Strict doctype preventing access to DOM variable in FireFoxSimon Lieschke2009-05-08T13:13:49Z2009-05-08T13:25:42Z<p>There is nothing in any W3C specification that says object references should be established in the global scripting scope for elements with <code>id</code> attributes. This is considered to uneccessarily pollute the global namespace and can result <a href="http://webbugtrack.blogspot.com/2007/09/bug-162-global-namespace-pollution-in.html" rel="nofollow">in confusing errors</a>.</p>
<p>Firefox establishes the references when running in quirks mode for the purposes of IE compatibility. Johnny Stenback explains in the third comment on <a href="https://bugzilla.mozilla.org/show%5Fbug.cgi?id=256932" rel="nofollow">the bug for adding this support</a> why this isn't supported in standards mode:</p>
<blockquote>
<p>This feature does affect standard
compliant code that for instance
checks for the existance [<em>sic</em>] of a global
variable to set it only once. With
this change, that "varible" [<em>sic</em>] may now be
a reference to an element in the
document, and the code may not work
the way the developer intended.</p>
<p>That's the reason we decided to make
this quirks only.</p>
</blockquote>
http://stackoverflow.com/questions/839190/what-rendering-engine-does-cfdocument-use-for-html-pdf-conversion/839397#8393977Answer by Simon Lieschke for What rendering engine does cfdocument use for HTML->PDF conversion?Simon Lieschke2009-05-08T11:23:47Z2009-05-08T11:23:47Z<p>The <a href="http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Tags%5Fd-e%5F05.html" rel="nofollow">documentation for the <code>cfdocument</code> tag</a> includes a listing of the supported CSS styles.</p>
http://stackoverflow.com/questions/813523/translate-the-following-jquery-code-to-yui-2-x-code/813634#8136345Answer by Simon Lieschke for Translate the following jQuery code to YUI 2.x codeSimon Lieschke2009-05-01T22:55:40Z2009-05-01T22:55:40Z<p>As you can see from Daniel's answer it's quite verbose to write your code in YUI 2. A lot of work in this area has been done in the <a href="http://developer.yahoo.com/yui/3/" rel="nofollow">upcoming YUI 3</a>. Here's how your code would be written in YUI 3:</p>
<pre><code>YUI().use('node', function(Y) {
// #1
Y.get('#foo').setStyles({ color: 'yellow', background: 'black' });
// #2
Y.get('#foo').setStyle('color', 'red').addClass('bar').set('innerHTML', '!');
// #3
Y.get('#menu').appendChild(Y.Node.create('<li>An extra item</li>'));
// #4
Y.all('li').on('click', function() {
alert('Clickety-click!');
});
}
</code></pre>
http://stackoverflow.com/questions/243298/how-to-force-thread-dump-in-eclipse/800288#8002882Answer by Simon Lieschke for How to Force Thread Dump in Eclipse?Simon Lieschke2009-04-28T23:36:56Z2009-04-28T23:36:56Z<p><a href="http://www.adaptj.com/main/stacktrace" rel="nofollow">StackTrace</a> is another option that you could try. From the features:</p>
<blockquote>
<p>Thread dump for Java processes running
as a <em>Windows</em> service (like Tomcat, for
example), started with <em>javaw.exe</em>,
applets running inside any browser or
JVMs embedded inside another process.
StackTrace works on Windows, Linux and
Mac OS X.</p>
</blockquote>
http://stackoverflow.com/questions/781770/can-the-parent-window-be-notified-when-a-child-window-closes-on-a-diff-domain/792806#7928060Answer by Simon Lieschke for Can the parent window be notified when a child window closes? (on a diff domain)Simon Lieschke2009-04-27T09:25:34Z2009-04-27T09:25:34Z<p>You can't directly be notified of the window closing, but you can work out when the child window has been closed by inspecting the <a href="https://developer.mozilla.org/En/DOM/Window.closed" rel="nofollow"><code>closed</code></a> property on the window object reference returned by <a href="https://developer.mozilla.org/En/DOM/Window.open" rel="nofollow"><code>window.open()</code></a>.</p>
<p>Here's an example that will display an alert within 5 seconds of the child window being closed by polling the <code>closed</code> property:</p>
<pre><code>var win = open('http://www.google.com');
var intervalId = setInterval(function() {
if (win.closed) {
clearInterval(intervalId);
alert('Window closed! Hoorah!');
}
}, 5000);
</code></pre>
http://stackoverflow.com/questions/772124/what-does-the-python-ellipsis-object-do/772148#7721485Answer by Simon Lieschke for What does the Python Ellipsis object do?Simon Lieschke2009-04-21T11:30:30Z2009-04-21T11:30:30Z<p>From the <a href="http://www.python.org/doc/2.5.2/lib/bltin-ellipsis-object.html" rel="nofollow">Python documentation</a>:</p>
<blockquote>
<p>This object is used by extended slice
notation (see the <em><a href="http://www.python.org/doc/2.5.2/ref/ref.html" rel="nofollow">Python Reference
Manual</a></em>). It supports no special
operations. There is exactly one
ellipsis object, named <code>Ellipsis</code> (a
built-in name).</p>
</blockquote>
http://stackoverflow.com/questions/752851/why-do-i-get-the-error-only-antlib-uris-can-be-located-from-the-uri-alone-not-th/755045#7550451Answer by Simon Lieschke for Why do I get the error "Only antlib URIs can be located from the URI alone,not the URI" when trying to run hibernate tools in my build.xmlSimon Lieschke2009-04-16T07:03:45Z2009-04-16T08:24:45Z<p>According to the <a href="http://ant.apache.org/manual/CoreTasks/typedef.html" rel="nofollow"><code>typedef</code> task documentation</a> (of which the <a href="http://ant.apache.org/manual/CoreTasks/taskdef.html" rel="nofollow"><code>taskdef</code> task</a> is a form of) the <code>name</code> attribute is required if you haven't specified "the file or resource type attributes".</p>
<p>I'm not sure if fixing that up will sort your problem but it would be good if you could eliminate that from being a potential cause.</p>
http://stackoverflow.com/questions/1509360/how-do-i-disable-the-click-handler-on-a-yui-node/1512159#1512159Comment by Simon Lieschke on How do I disable the click handler on a YUI Node?Simon Lieschke2009-10-03T01:52:02Z2009-10-03T01:52:02ZOh, right, the event handler parameter order switched from YUI 2 to 3.http://stackoverflow.com/questions/1509360/how-do-i-disable-the-click-handler-on-a-yui-node/1512159#1512159Comment by Simon Lieschke on How do I disable the click handler on a YUI Node?Simon Lieschke2009-10-03T01:46:06Z2009-10-03T01:46:06ZYour radio input is not displayed!?http://stackoverflow.com/questions/67354/dreaded-iframe-horizontal-scroll-bar-cant-be-removed-in-ie/472081#472081Comment by Simon Lieschke on Dreaded iframe horizontal scroll bar can't be removed in IE?Simon Lieschke2009-08-18T03:11:21Z2009-08-18T03:11:21ZzOMG. While the horizontalscrolling and verticalscrolling attributes appear totally undocumented on MSDN this worked to solve my IE 6 problem.http://stackoverflow.com/questions/1146748/scrolling-down-to-next-element-via-keypress-scrollto-plugin-jquery/1146828#1146828Comment by Simon Lieschke on Scrolling down to next element via keypress & scrollTo plugin - jQuerySimon Lieschke2009-07-18T12:46:19Z2009-07-18T12:46:19ZThat will cause an entry to be written into the browser history, which may not be desirable.http://stackoverflow.com/questions/1067976/overflowing-html-line-text-before-it-gets-obscured-by-right-aligned-content/1134652#1134652Comment by Simon Lieschke on Overflowing HTML line text before it gets obscured by right aligned contentSimon Lieschke2009-07-16T11:09:57Z2009-07-16T11:09:57ZI've plugged in your styles at <a href="http://jsbin.com/erosu" rel="nofollow">jsbin.com/erosu</a> and it doesn't position the ellipsis where text overflows correctly. You'll see what I mean if you view it in IE8, Safari or Chrome (the base64 encoded images all work fine in those browsers). You won't see this problem in Firefox because it doesn't support "text-overflow: ellipsis;".http://stackoverflow.com/questions/1085916/problem-with-plotting-graph-with-flot/1091949#1091949Comment by Simon Lieschke on Problem with plotting Graph with flot Simon Lieschke2009-07-14T20:34:32Z2009-07-14T20:34:32ZWell what did you find out from using a debugger as I asked in my previous comment?http://stackoverflow.com/questions/1117916/merge-keys-array-and-values-array-into-an-object-in-javascript/1117925#1117925Comment by Simon Lieschke on Merge keys array and values array into an object in JavascriptSimon Lieschke2009-07-13T06:36:05Z2009-07-13T06:36:05ZThe function is still incorrect. combineObject(["height", "width"], ["12px", "24px"]).height incorrectly returns "24px".http://stackoverflow.com/questions/1057610/looking-for-a-summary-of-which-version-of-xslt-is-supported-in-each-major-browser/1057619#1057619Comment by Simon Lieschke on Looking for a summary of which version of XSLT is supported in each major browserSimon Lieschke2009-07-10T02:36:13Z2009-07-10T02:36:13ZWhat about Internet Explorer 7 and 8?http://stackoverflow.com/questions/536814/javascript-insert-ellipsis-into-html-tag-if-content-too-wide/1022672#1022672Comment by Simon Lieschke on JavaScript: Insert ellipsis (...) into HTML tag if content too wideSimon Lieschke2009-07-09T03:43:32Z2009-07-09T03:43:32ZNice, I've been looking how to handle overflow with multiple lines. One improvement: instead of appending three periods, append the ellipsis character, '…'.http://stackoverflow.com/questions/1085916/problem-with-plotting-graph-with-flot/1091949#1091949Comment by Simon Lieschke on Problem with plotting Graph with flot Simon Lieschke2009-07-08T20:44:02Z2009-07-08T20:44:02ZHave you set a breakpoint with your debugger on the line that makes the plot call and inspected the data object to confirm it is in the correct format for Flot?http://stackoverflow.com/questions/1083213/problem-with-html-scrollbars-not-appearing-via-window-open/1092122#1092122Comment by Simon Lieschke on Problem with HTML? Scrollbars Not Appearing via window.openSimon Lieschke2009-07-07T22:17:46Z2009-07-07T22:17:46ZSo the problem lies in the page returned. It would really help to provide an HTML sample that demonstrates the issue otherwise people will have to wildly speculate to work out what is preventing the scrollbars from appearing. (It may also pay to update your question title to reflect this.)http://stackoverflow.com/questions/1087918/automatic-update-of-keyword-in-word-document/1091984#1091984Comment by Simon Lieschke on Automatic update of keyword in Word documentSimon Lieschke2009-07-07T22:08:35Z2009-07-07T22:08:35ZOffice Open XML is unrelated to OpenOffice.org XML. They are two similarly named, but separate formats. See <a href="http://en.wikipedia.org/wiki/Office_Open_XML" rel="nofollow">en.wikipedia.org/wiki/Office_Open_XML</a> and <a href="http://en.wikipedia.org/wiki/OpenOffice.org_XML" rel="nofollow">en.wikipedia.org/wiki/OpenOffice.org_XML</a> for details.http://stackoverflow.com/questions/1092071/why-are-iframes-so-slow/1092188#1092188Comment by Simon Lieschke on Why are iframes so slow?Simon Lieschke2009-07-07T13:07:41Z2009-07-07T13:07:41ZReuse of the HTTP connection is subject to the user clicking on the link to load the content within the keepalive timeout of the web server. Whether the content is loaded in a separate document in an iframe or by Ajax makes no difference.http://stackoverflow.com/questions/1085916/problem-with-plotting-graph-with-flotComment by Simon Lieschke on Problem with plotting Graph with flot Simon Lieschke2009-07-07T11:49:51Z2009-07-07T11:49:51ZWhat's the exception message?http://stackoverflow.com/questions/567958/ie-6-and-the-multiple-button-elements-all-sending-their-name-values/1091178#1091178Comment by Simon Lieschke on IE 6 and the multiple button elements all sending their name & values.Simon Lieschke2009-07-07T11:47:10Z2009-07-07T11:47:10ZHow does having 4 buttons prove to be a problem?