User Marko Dumic - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T07:39:55Z http://stackoverflow.com/feeds/user/5817 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1718777/how-might-i-extract-the-property-values-of-a-javascript-object-into-an-array/1718816#1718816 0 Answer by Marko Dumic for How might I extract the property values of a JavaScript object into an array? Marko Dumic 2009-11-11T23:27:19Z 2009-11-11T23:34:12Z <p>Assuming your dataObject is defined the way you specified, you do this:</p> <pre><code>var dataArray = []; for (var key in dataObject) dataArray.push(dataObject[key]); </code></pre> <p>And end up having dataArray populated with inner objects.</p> http://stackoverflow.com/questions/221476/how-to-remove-old-versions-of-eclipse-plugins 8 How to remove old versions of Eclipse plugins? Marko Dumic 2008-10-21T11:10:07Z 2009-11-04T01:23:39Z <p>After update, old Eclipse plugins remain in "plugins" folder (there are also leftovers in "features" folder).</p> <p>Is there a way to remove those automatically?</p> http://stackoverflow.com/questions/627723/jquery-sorting-complex-static-object/627798#627798 0 Answer by Marko Dumic for jquery sorting complex static object Marko Dumic 2009-03-09T20:03:21Z 2009-03-09T20:03:21Z <p>If I understand correctly, you would like to put members in order based on key or method name (which is the same value)? This has no meaning for Object since members have no order.</p> <p>However, if you put these objects in an array like this:</p> <pre><code>var apiDocs = [ { "methodName": "friendsGetByUser", "methodDescription": "Returns user ids of friends of the specified user.", ... }, { "methodName": "friendsGetBestFriends", "methodDescription": "Returns user ids of best friends of the logged in user.", ... } ... ]; </code></pre> <p>Then you can sort the array easily by invoking Array.sort passing in compare function.</p> <pre><code>apiDocs.sort(function (a, b) { return a.methodName &lt; b.methodName; }); </code></pre> http://stackoverflow.com/questions/453784/remove-javascript-comments-from-string-with-c/453794#453794 5 Answer by Marko Dumic for Remove JavaScript comments from string with C# Marko Dumic 2009-01-17T18:42:41Z 2009-01-17T18:42:41Z <p>If you want to minify Javascript files ("make it light to load"), why not try <a href="http://www.crockford.com/javascript/jsmin.html" rel="nofollow">JSMin by Douglas Crockford</a>? There is link to c# implementation at the bottom of the page (<a href="http://www.crockford.com/javascript/jsmin.cs" rel="nofollow">http://www.crockford.com/javascript/jsmin.cs</a>)</p> http://stackoverflow.com/questions/448842/replace-particular-text-after-the-page-is-loaded-with-jquery/449015#449015 0 Answer by Marko Dumic for Replace particular text after the page is loaded with jquery Marko Dumic 2009-01-15T23:48:44Z 2009-01-15T23:48:44Z <p>I think you will find <a href="http://code.google.com/p/jquery-translate/" rel="nofollow">jquery-translate</a> useful. It even has method that you need, namely: $().<a href="http://code.google.com/p/jquery-translate/wiki/NodesContainingText" rel="nofollow">nodesContainingText</a>(...)</p> http://stackoverflow.com/questions/418076/is-there-a-better-jquery-solution-to-this-form-submit/418198#418198 0 Answer by Marko Dumic for Is there a better jQuery solution to this.form.submit(); ? Marko Dumic 2009-01-06T21:15:29Z 2009-01-06T21:15:29Z <p>Your question in somewhat confusing in that that you don't explain what you mean by "current element".</p> <p>If you have multiple forms on a page with all kinds of input elements and a button of type "submit", then hitting "enter" upon filling any of it's fields will trigger submission of that form. You don't need any Javascript there.</p> <p>But if you have multiple "submit" buttons on a form and no other inputs (e.g. "edit row" and/or "delete row" buttons in table), then the line you posted could be the way to do it. </p> <p>Another way (no Javascript needed) could be to give different values to all your buttons (that are of type "submit"). Like this:</p> <pre><code>&lt;form action="..."&gt; &lt;input type="hidden" name="rowId" value="..."&gt; &lt;button type="submit" name="myaction" value="edit"&gt;Edit&lt;/button&gt; &lt;button type="submit" name="myaction" value="delete"&gt;Delete&lt;/button&gt; &lt;/form&gt; </code></pre> <p>When you click a button only the form containing the button will be submitted, and only the value of the button you hit will be sent (along other input values).</p> <p>Then on the server you just read the value of the variable "myaction" and decide what to do.</p> http://stackoverflow.com/questions/401366/website-design-changing-only-the-body-content/401383#401383 0 Answer by Marko Dumic for Website Design - Changing only the body content Marko Dumic 2008-12-30T20:21:24Z 2008-12-30T20:35:48Z <p>Use page templates (aka <a href="http://msdn.microsoft.com/en-us/library/wtxbf3hh.aspx" rel="nofollow">master pages</a> in ASP.NET). Better yet, use a MVC framework. My personal favorite is <a href="http://www.springframework.net/" rel="nofollow">Spring.NET</a>, but there are others...</p> http://stackoverflow.com/questions/398044/web-desktops-do-you-find-it-interesting/398070#398070 11 Answer by Marko Dumic for Web desktops - do you find it interesting? Marko Dumic 2008-12-29T16:38:55Z 2008-12-29T16:38:55Z <p>NO.</p> <p>Also, <a href="http://www.codinghorror.com/blog/archives/000869.html" rel="nofollow">Uncanny valley</a> of UI.</p> http://stackoverflow.com/questions/318349/tool-for-making-a-video-tutorial/318399#318399 3 Answer by Marko Dumic for Tool for making a video tutorial? Marko Dumic 2008-11-25T18:25:14Z 2008-11-25T18:25:14Z <p><a href="http://www.jingproject.com/" rel="nofollow">Jing</a>. Free, very easy to use, Windows version requires .NET 3.0 framework. Also, there is Mac version available.</p> http://stackoverflow.com/questions/315546/only-one-return-statement-per-method-even-in-this-scenario/315567#315567 19 Answer by Marko Dumic for Only one return statement per method, even in this scenario? Marko Dumic 2008-11-24T21:35:17Z 2008-11-24T21:35:17Z <p>It is OK to <a href="http://www.refactoring.com/catalog/replaceNestedConditionalWithGuardClauses.html" rel="nofollow">replace nested conditional with guard clauses</a>.</p> http://stackoverflow.com/questions/295123/what-is-a-good-very-high-level-ui-framework-for-javascript/295185#295185 2 Answer by Marko Dumic for What is a good Very-High level UI framework for JavaScript? Marko Dumic 2008-11-17T09:38:42Z 2008-11-17T09:38:42Z <p><a href="http://extjs.com/" rel="nofollow">ExtJs</a>, <a href="http://www.bindows.net/" rel="nofollow">Bindows</a>, <a href="http://developer.yahoo.com/yui/" rel="nofollow">YUI</a>. First two are commercial but worth the money.</p> http://stackoverflow.com/questions/292646/identifying-list-item-index-which-is-a-better-approach/292680#292680 1 Answer by Marko Dumic for Identifying list item index - which is a better approach? Marko Dumic 2008-11-15T15:40:02Z 2008-11-15T15:40:02Z <p>If you opt to use jQuery it comes as simple as:</p> <pre><code>$('ul#list li').click(function () { var i = this.id.split('-').pop(); alert( i ); }); </code></pre> http://stackoverflow.com/questions/277544/how-to-set-the-focus-to-the-first-input-element-in-an-html-form-independent-from/279153#279153 2 Answer by Marko Dumic for How to set the focus to the first input element in an HTML form independent from the id? Marko Dumic 2008-11-10T21:01:23Z 2008-11-10T21:01:23Z <p>You can also try jQuery based method:</p> <pre><code>$(document).ready(function() { $('form:first *:input[type!=hidden]:first').focus(); }); </code></pre> http://stackoverflow.com/questions/279040/whats-the-best-way-to-implement-friendly-url-in-asp-net/279089#279089 0 Answer by Marko Dumic for What's the best way to implement friendly URL in ASP.net? Marko Dumic 2008-11-10T20:40:45Z 2008-11-10T20:40:45Z <p>I have used <a href="http://urlrewriter.net/" rel="nofollow">UrlRewriter.Net</a> library. It is small but powerful and easy to configure.</p> http://stackoverflow.com/questions/277544/how-to-set-the-focus-to-the-first-input-element-in-an-html-form-independent-from/277615#277615 1 Answer by Marko Dumic for How to set the focus to the first input element in an HTML form independent from the id? Marko Dumic 2008-11-10T11:01:23Z 2008-11-10T11:01:23Z <p>You also need to skip any hidden inputs.</p> <pre><code>for (var i = 0; document.forms[0].elements[i].type == 'hidden'; i++); document.forms[0].elements[i].focus(); </code></pre> http://stackoverflow.com/questions/261362/how-to-update-html-select-box-dynamically-in-ie/261469#261469 3 Answer by Marko Dumic for How to update HTML "select" box dynamically in IE Marko Dumic 2008-11-04T10:33:58Z 2008-11-04T10:33:58Z <p>You don't need to manipulate DOM for this. Try this instead</p> <pre><code>var selector = document.getElementById('selectorId'); for (var i = 0; i &lt; data.length; ++i) { selector.options[selector.options.length] = new Option(data[i].name, data[i].id); } </code></pre> http://stackoverflow.com/questions/222551/forcing-google-analytics-tracking-code-to-sleep/222893#222893 0 Answer by Marko Dumic for Forcing Google Analytics Tracking Code to Sleep Marko Dumic 2008-10-21T18:16:58Z 2008-10-21T18:16:58Z <p>This should work:</p> <pre><code>window.setTimeout(pageTracker._trackPageview, 5000); </code></pre> http://stackoverflow.com/questions/222740/how-to-get-the-new-value-of-an-html-input-after-a-keypress-has-modified-it/222788#222788 0 Answer by Marko Dumic for How to get the new value of an HTML input after a keypress has modified it? Marko Dumic 2008-10-21T17:51:51Z 2008-10-21T17:51:51Z <p>You can try this code (requires jQuery):</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;script type="text/javascript" src="jquery.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; $(document).ready(function() { $('#foo').keyup(function(e) { var v = $('#foo').val(); $('#debug').val(v); }) }); &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;form&gt; &lt;input type="text" id="foo" value="bar"&gt;&lt;br&gt; &lt;textarea id="debug"&gt;&lt;/textarea&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/192080/firefox-links-to-local-or-network-pages-do-not-work/192289#192289 6 Answer by Marko Dumic for Firefox Links to local or network pages do not work Marko Dumic 2008-10-10T17:13:48Z 2008-10-10T17:13:48Z <p>This is the default Firefox behavior designed for security .The assumption is probably that most web sites don't know what and where are you local files (including UNC paths).</p> <p>This could be turned off in firefox:</p> <ul> <li>type "about:config" in the address bar and accept "i'll be careful"</li> <li>find "security.checkloaduri" in older versions or "security.fileuri.strict_origin_policy" in newer versions of firefox and change the value to "false"</li> <li>restart firefox</li> </ul> <p>That should do it for you. You have more information here:</p> <ul> <li><a href="http://kb.mozillazine.org/Security.fileuri.strict_origin_policy" rel="nofollow">http://kb.mozillazine.org/Security.fileuri.strict_origin_policy</a></li> <li><a href="http://kb.mozillazine.org/Security.fileuri.origin_policy" rel="nofollow">http://kb.mozillazine.org/Security.fileuri.origin_policy</a></li> </ul> http://stackoverflow.com/questions/189079/jquery-animation/189535#189535 1 Answer by Marko Dumic for jQuery animation Marko Dumic 2008-10-09T23:03:40Z 2008-10-09T23:03:40Z <p>Try to apply the same animation effects to the shadow element(s). I don't know the exact technique used in jquery.dropshadow.js, but I suspect it creates copies of your shadow casting elements and styles them to achieve shadow like appearance. It is possible that these copies are siblings of their source elements, thus don't "follow" animation (as child elements would).</p> http://stackoverflow.com/questions/189467/how-do-you-refine-your-estimation-process/189481#189481 2 Answer by Marko Dumic for How do you refine your estimation process? Marko Dumic 2008-10-09T22:42:04Z 2008-10-09T22:42:04Z <p>I estimate with my teammates iteratively until we reach consensus. Sure, we make mistakes but we don't calculate the "velocity" factor explicitely but rather, we use gathered experience in our new estimation debates.</p> http://stackoverflow.com/questions/189441/when-or-should-you-delete-your-incorrect-answer/189469#189469 1 Answer by Marko Dumic for When or should you delete your incorrect answer? Marko Dumic 2008-10-09T22:38:01Z 2008-10-09T22:38:01Z <p>Once you realize that you made a mistake or your answer does not contribute any value to the topic. Regardless of the vote.</p> http://stackoverflow.com/questions/187279/strange-float-behaviour-in-ie7/187313#187313 2 Answer by Marko Dumic for Strange float behaviour in IE7 Marko Dumic 2008-10-09T13:46:23Z 2008-10-09T13:46:23Z <p>Specify width in outermost div. If that width in your content div means this is the total width of your box, simply add it to the outermost div, and (optionally) remove it from content, like this:</p> <pre><code>&lt;div style="float:left; width: 200px;"&gt; &lt;div style="background-color:blue; padding: 1px; height: 20px;"&gt; &lt;div style="float: left; background-color:green;"&gt;title&lt;/div&gt; &lt;div style="float: right; background-color:yellow;"&gt;toolbar&lt;/div&gt; &lt;/div&gt; &lt;div style="clear: both; background-color: red;"&gt;content&lt;/div&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/186456/what-is-the-best-practice-to-use-extjs-with-asp-net-and-wcf-in-net-3-5/186471#186471 1 Answer by Marko Dumic for What is the best practice to use ExtJS with Asp.net and WCF in .NET 3.5? Marko Dumic 2008-10-09T09:04:23Z 2008-10-09T09:04:23Z <p>I used ExtJs in conjuction with ASP.NET only through web services. It works just fine if you are willing to work without "Page" and all that stuff.</p> http://stackoverflow.com/questions/107314/any-suggestions-for-testing-extjs-code-in-a-browser-preferably-with-selenium/185372#185372 1 Answer by Marko Dumic for Any suggestions for testing extjs code in a browser, preferably with selenium? Marko Dumic 2008-10-08T23:38:55Z 2008-10-08T23:38:55Z <p>I have been testing my ExtJs web application with selenium. One of the biggest problem was selecting an item in the grid in order to do something with it.</p> <p>For this, I wrote helper method (in SeleniumExtJsUtils class which is a collection of useful methods for easier interaction with ExtJs):</p> <pre><code>/** * Javascript needed to execute in order to select row in the grid * * @param gridId Grid id * @param rowIndex Index of the row to select * @return Javascript to select row */ public static String selectGridRow(String gridId, int rowIndex) { return "Ext.getCmp('" + gridId + "').getSelectionModel().selectRow(" + rowIndex + ", true)"; } </code></pre> <p>and when I needed to select a row, I'd just call:</p> <pre><code>selenium.runScript( SeleniumExtJsUtils.selectGridRow("&lt;myGridId&gt;", 5) ); </code></pre> <p>For this to work I need to set my id on the grid and not let ExtJs generate it's own.</p> http://stackoverflow.com/questions/185241/how-do-i-see-the-hex-values-of-a-string-in-a-vs2008-watch-window/185301#185301 2 Answer by Marko Dumic for How do I see the hex values of a string in a VS2008 watch window? Marko Dumic 2008-10-08T23:10:41Z 2008-10-08T23:10:41Z <p>Add your string as a watch, then edit the watch expression and append ".ToCharArray()" to view it as an array of chars. When you expand your watch you will see char code next to each individual char. Checking "Hexadecimal display" will show you hex codes for each character.</p> http://stackoverflow.com/questions/185236/how-do-i-tell-if-someones-faking-a-filetype-php/185253#185253 16 Answer by Marko Dumic for How do I tell if someone's faking a filetype? (PHP) Marko Dumic 2008-10-08T22:56:09Z 2008-10-08T22:56:09Z <p><a href="http://en.wikipedia.org/wiki/Magic_number_(programming)#Magic_numbers_in_files" rel="nofollow">Magic number</a>. If you can read first few bytes of a binary file you can know what kind of file it is. </p> http://stackoverflow.com/questions/183277/passing-copy-of-object-to-method-who-does-the-copying/183314#183314 1 Answer by Marko Dumic for Passing copy of object to method -- who does the copying? Marko Dumic 2008-10-08T15:12:09Z 2008-10-08T16:05:23Z <p>The caller. Because, sometimes you want to make changes to the objects themselves and other times to a copy.</p> <p>Although, I consider it a bad practice for callee to modify passed objects (at least in object oriented languages). This can cause many unwanted side effects.</p> <p>(after your) EDIT: In that case it is callee's responsibility to enforce the contract, so there are two options:</p> <ul> <li>The callee simply does not modify the object</li> <li>or the callee copies the object and works with the copy afterwards</li> </ul> http://stackoverflow.com/questions/183179/how-do-i-fade-a-row-out-before-postback/183257#183257 0 Answer by Marko Dumic for How do I fade a row out before postback Marko Dumic 2008-10-08T15:02:34Z 2008-10-08T15:02:34Z <p>Register the handler for form "submit" event. </p> <pre><code>$("form").submit(function() { // if user initiated delete action // do your thing with deleted row (effects, etc.) // after you're done with it, submit the form from script // (you can queue the submission after the effect) // the submission from the script won't trigger this event handler return false; // prevent submission } </code></pre> <p>Preventing form submission is necessary to avoid interference with the effects you want to perform. After they are finished, you are free to proceed with submission.</p> http://stackoverflow.com/questions/182554/microsecond-accurate-or-better-process-timing-in-linux/183182#183182 1 Answer by Marko Dumic for Microsecond accurate (or better) process timing in Linux Marko Dumic 2008-10-08T14:50:56Z 2008-10-08T14:50:56Z <p>I believe CFC (<a href="http://en.wikipedia.org/wiki/Completely_Fair_Scheduler" rel="nofollow">Completely Fair Scheduler</a>) is what you're looking for.</p> http://stackoverflow.com/questions/1718777/how-might-i-extract-the-property-values-of-a-javascript-object-into-an-array/1718816#1718816 Comment by Marko Dumic on How might I extract the property values of a JavaScript object into an array? Marko Dumic 2009-11-11T23:32:52Z 2009-11-11T23:32:52Z In that case, just omit the &quot;.name&quot; in the third line. http://stackoverflow.com/questions/1718777/how-might-i-extract-the-property-values-of-a-javascript-object-into-an-array/1718816#1718816 Comment by Marko Dumic on How might I extract the property values of a JavaScript object into an array? Marko Dumic 2009-11-11T23:29:52Z 2009-11-11T23:29:52Z Please, point me to what it doesn't do that he was asking? http://stackoverflow.com/questions/1718777/how-might-i-extract-the-property-values-of-a-javascript-object-into-an-array/1718806#1718806 Comment by Marko Dumic on How might I extract the property values of a JavaScript object into an array? Marko Dumic 2009-11-11T23:28:15Z 2009-11-11T23:28:15Z And what is &quot;ordering&quot; in your opinion? http://stackoverflow.com/questions/295123/what-is-a-good-very-high-level-ui-framework-for-javascript/295133#295133 Comment by Marko Dumic on What is a good Very-High level UI framework for JavaScript? Marko Dumic 2009-10-08T12:30:28Z 2009-10-08T12:30:28Z Although I use it on occasion, this is definitely NOT &quot;very-high level UI framework for Javascript&quot; http://stackoverflow.com/questions/686187/how-would-i-modify-this-regex-to-extract-the-left-and-right-hand-parts-of-a-uk-po/686214#686214 Comment by Marko Dumic on How would I modify this regex to extract the left and right hand parts of a UK postal code? Marko Dumic 2009-03-26T15:19:18Z 2009-03-26T15:19:18Z You're right about &quot;\s{0,}&quot; meaning \s*. But I think \s should not be optional or you'll split two parts incorrectly. Maybe author meant &quot;{1,}&quot; (or &quot;+&quot;). http://stackoverflow.com/questions/500776/does-the-thought-of-having-to-learn-more-new-and-improved-technology-kill-you/500781#500781 Comment by Marko Dumic on Does the thought of having to learn more *NEW and Improved!* technology kill you (sometimes)? Marko Dumic 2009-02-01T13:40:32Z 2009-02-01T13:40:32Z @Preets: I know it could be hard these days, but you can make it your long term goal to find a job that you'll enjoy doing. http://stackoverflow.com/questions/295123/what-is-a-good-very-high-level-ui-framework-for-javascript/295133#295133 Comment by Marko Dumic on What is a good Very-High level UI framework for JavaScript? Marko Dumic 2009-01-28T12:25:12Z 2009-01-28T12:25:12Z I dont think jQueryUI qualifies as &quot;very high Level&quot; UI framework. http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356224#356224 Comment by Marko Dumic on Should I use `!IsGood` or `IsGood == false`? Marko Dumic 2008-12-10T16:44:56Z 2008-12-10T16:44:56Z If you name your variables properly then adding operator actually decreases readability. I.e. When you read it &quot;if is good&quot; is more readable than &quot;if is good is true&quot;. I go with &quot;if (isGood)&quot; its as clear as it can be. http://stackoverflow.com/questions/340543/regexp-problem/340556#340556 Comment by Marko Dumic on RegExp problem Marko Dumic 2008-12-05T00:54:37Z 2008-12-05T00:54:37Z +1 for not falling for the common misuse of regular expressions that is parsing nested structures http://stackoverflow.com/questions/315546/only-one-return-statement-per-method-even-in-this-scenario/315567#315567 Comment by Marko Dumic on Only one return statement per method, even in this scenario? Marko Dumic 2008-11-24T21:58:23Z 2008-11-24T21:58:23Z Yes, thanks. I encourage everyone to get themselves familiar with the practices presented on the site and to apply the ones they're comfortable with. http://stackoverflow.com/questions/308411/jquery-how-do-i-fix-this-image-rollover/308720#308720 Comment by Marko Dumic on Jquery - How do I fix this Image Rollover? Marko Dumic 2008-11-21T14:09:17Z 2008-11-21T14:09:17Z good! removed -1 and voted it up. regards! http://stackoverflow.com/questions/308411/jquery-how-do-i-fix-this-image-rollover/308720#308720 Comment by Marko Dumic on Jquery - How do I fix this Image Rollover? Marko Dumic 2008-11-21T13:54:47Z 2008-11-21T13:54:47Z The idea is fine, but provided code does not work. The last event handler must be specified like this: $('#image p').mouseover(function () { $(this).show() } http://stackoverflow.com/questions/292101/browser-neutral-way-to-add-options-to-a-select-element-in-javascript/292122#292122 Comment by Marko Dumic on Browser Neutral Way to add options to a select element in javascript Marko Dumic 2008-11-15T15:59:17Z 2008-11-15T15:59:17Z Fails in IE4 because of getElementById. Try &quot;document.forms[0].&lt;select-name&gt;&quot; http://stackoverflow.com/questions/277544/how-to-set-the-focus-to-the-first-input-element-in-an-html-form-independent-from/277615#277615 Comment by Marko Dumic on How to set the focus to the first input element in an HTML form independent from the id? Marko Dumic 2008-11-10T21:00:31Z 2008-11-10T21:00:31Z Exactly. It is used to skip any leading hidden inputs. And it is written under assumption that there are non-hidden fields in the form. I could have done it with jQuery as well (I'll post another answer) but you didn't mention you want jQuery involved. http://stackoverflow.com/questions/261362/how-to-update-html-select-box-dynamically-in-ie/261469#261469 Comment by Marko Dumic on How to update HTML "select" box dynamically in IE Marko Dumic 2008-11-10T20:06:27Z 2008-11-10T20:06:27Z I'm referring to document.createElement (that creates arbitrary elements) which you later insert into DOM (appendChild). Anyway, there are different approaches that work for this particular problem.