User Marko Dumic - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T07:39:55Zhttp://stackoverflow.com/feeds/user/5817http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1718777/how-might-i-extract-the-property-values-of-a-javascript-object-into-an-array/1718816#17188160Answer by Marko Dumic for How might I extract the property values of a JavaScript object into an array?Marko Dumic2009-11-11T23:27:19Z2009-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-plugins8How to remove old versions of Eclipse plugins?Marko Dumic2008-10-21T11:10:07Z2009-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#6277980Answer by Marko Dumic for jquery sorting complex static objectMarko Dumic2009-03-09T20:03:21Z2009-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 < b.methodName;
});
</code></pre>
http://stackoverflow.com/questions/453784/remove-javascript-comments-from-string-with-c/453794#4537945Answer by Marko Dumic for Remove JavaScript comments from string with C#Marko Dumic2009-01-17T18:42:41Z2009-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#4490150Answer by Marko Dumic for Replace particular text after the page is loaded with jqueryMarko Dumic2009-01-15T23:48:44Z2009-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#4181980Answer by Marko Dumic for Is there a better jQuery solution to this.form.submit(); ?Marko Dumic2009-01-06T21:15:29Z2009-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><form action="...">
<input type="hidden" name="rowId" value="...">
<button type="submit" name="myaction" value="edit">Edit</button>
<button type="submit" name="myaction" value="delete">Delete</button>
</form>
</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#4013830Answer by Marko Dumic for Website Design - Changing only the body contentMarko Dumic2008-12-30T20:21:24Z2008-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#39807011Answer by Marko Dumic for Web desktops - do you find it interesting?Marko Dumic2008-12-29T16:38:55Z2008-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#3183993Answer by Marko Dumic for Tool for making a video tutorial?Marko Dumic2008-11-25T18:25:14Z2008-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#31556719Answer by Marko Dumic for Only one return statement per method, even in this scenario?Marko Dumic2008-11-24T21:35:17Z2008-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#2951852Answer by Marko Dumic for What is a good Very-High level UI framework for JavaScript?Marko Dumic2008-11-17T09:38:42Z2008-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#2926801Answer by Marko Dumic for Identifying list item index - which is a better approach? Marko Dumic2008-11-15T15:40:02Z2008-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#2791532Answer by Marko Dumic for How to set the focus to the first input element in an HTML form independent from the id?Marko Dumic2008-11-10T21:01:23Z2008-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#2790890Answer by Marko Dumic for What's the best way to implement friendly URL in ASP.net?Marko Dumic2008-11-10T20:40:45Z2008-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#2776151Answer by Marko Dumic for How to set the focus to the first input element in an HTML form independent from the id?Marko Dumic2008-11-10T11:01:23Z2008-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#2614693Answer by Marko Dumic for How to update HTML "select" box dynamically in IEMarko Dumic2008-11-04T10:33:58Z2008-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 < 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#2228930Answer by Marko Dumic for Forcing Google Analytics Tracking Code to SleepMarko Dumic2008-10-21T18:16:58Z2008-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#2227880Answer by Marko Dumic for How to get the new value of an HTML input after a keypress has modified it?Marko Dumic2008-10-21T17:51:51Z2008-10-21T17:51:51Z<p>You can try this code (requires jQuery):</p>
<pre><code><html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#foo').keyup(function(e) {
var v = $('#foo').val();
$('#debug').val(v);
})
});
</script>
</head>
<body>
<form>
<input type="text" id="foo" value="bar"><br>
<textarea id="debug"></textarea>
</form>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/192080/firefox-links-to-local-or-network-pages-do-not-work/192289#1922896Answer by Marko Dumic for Firefox Links to local or network pages do not workMarko Dumic2008-10-10T17:13:48Z2008-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#1895351Answer by Marko Dumic for jQuery animationMarko Dumic2008-10-09T23:03:40Z2008-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#1894812Answer by Marko Dumic for How do you refine your estimation process?Marko Dumic2008-10-09T22:42:04Z2008-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#1894691Answer by Marko Dumic for When or should you delete your incorrect answer?Marko Dumic2008-10-09T22:38:01Z2008-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#1873132Answer by Marko Dumic for Strange float behaviour in IE7Marko Dumic2008-10-09T13:46:23Z2008-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><div style="float:left; width: 200px;">
<div style="background-color:blue; padding: 1px; height: 20px;">
<div style="float: left; background-color:green;">title</div>
<div style="float: right; background-color:yellow;">toolbar</div>
</div>
<div style="clear: both; background-color: red;">content</div>
</div>
</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#1864711Answer by Marko Dumic for What is the best practice to use ExtJS with Asp.net and WCF in .NET 3.5?Marko Dumic2008-10-09T09:04:23Z2008-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#1853721Answer by Marko Dumic for Any suggestions for testing extjs code in a browser, preferably with selenium?Marko Dumic2008-10-08T23:38:55Z2008-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("<myGridId>", 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#1853012Answer by Marko Dumic for How do I see the hex values of a string in a VS2008 watch window?Marko Dumic2008-10-08T23:10:41Z2008-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#18525316Answer by Marko Dumic for How do I tell if someone's faking a filetype? (PHP)Marko Dumic2008-10-08T22:56:09Z2008-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#1833141Answer by Marko Dumic for Passing copy of object to method -- who does the copying?Marko Dumic2008-10-08T15:12:09Z2008-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#1832570Answer by Marko Dumic for How do I fade a row out before postbackMarko Dumic2008-10-08T15:02:34Z2008-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#1831821Answer by Marko Dumic for Microsecond accurate (or better) process timing in LinuxMarko Dumic2008-10-08T14:50:56Z2008-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#1718816Comment by Marko Dumic on How might I extract the property values of a JavaScript object into an array?Marko Dumic2009-11-11T23:32:52Z2009-11-11T23:32:52ZIn that case, just omit the ".name" in the third line.http://stackoverflow.com/questions/1718777/how-might-i-extract-the-property-values-of-a-javascript-object-into-an-array/1718816#1718816Comment by Marko Dumic on How might I extract the property values of a JavaScript object into an array?Marko Dumic2009-11-11T23:29:52Z2009-11-11T23:29:52ZPlease, 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#1718806Comment by Marko Dumic on How might I extract the property values of a JavaScript object into an array?Marko Dumic2009-11-11T23:28:15Z2009-11-11T23:28:15ZAnd what is "ordering" in your opinion?http://stackoverflow.com/questions/295123/what-is-a-good-very-high-level-ui-framework-for-javascript/295133#295133Comment by Marko Dumic on What is a good Very-High level UI framework for JavaScript?Marko Dumic2009-10-08T12:30:28Z2009-10-08T12:30:28ZAlthough I use it on occasion, this is definitely NOT "very-high level UI framework for Javascript"http://stackoverflow.com/questions/686187/how-would-i-modify-this-regex-to-extract-the-left-and-right-hand-parts-of-a-uk-po/686214#686214Comment by Marko Dumic on How would I modify this regex to extract the left and right hand parts of a UK postal code?Marko Dumic2009-03-26T15:19:18Z2009-03-26T15:19:18ZYou're right about "\s{0,}" meaning \s*. But I think \s should not be optional or you'll split two parts incorrectly. Maybe author meant "{1,}" (or "+").http://stackoverflow.com/questions/500776/does-the-thought-of-having-to-learn-more-new-and-improved-technology-kill-you/500781#500781Comment by Marko Dumic on Does the thought of having to learn more *NEW and Improved!* technology kill you (sometimes)?Marko Dumic2009-02-01T13:40:32Z2009-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#295133Comment by Marko Dumic on What is a good Very-High level UI framework for JavaScript?Marko Dumic2009-01-28T12:25:12Z2009-01-28T12:25:12ZI dont think jQueryUI qualifies as "very high Level" UI framework.http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356224#356224Comment by Marko Dumic on Should I use `!IsGood` or `IsGood == false`?Marko Dumic2008-12-10T16:44:56Z2008-12-10T16:44:56ZIf you name your variables properly then adding operator actually decreases readability. I.e. When you read it "if is good" is more readable than "if is good is true".
I go with "if (isGood)" its as clear as it can be.http://stackoverflow.com/questions/340543/regexp-problem/340556#340556Comment by Marko Dumic on RegExp problemMarko Dumic2008-12-05T00:54:37Z2008-12-05T00:54:37Z+1 for not falling for the common misuse of regular expressions that is parsing nested structureshttp://stackoverflow.com/questions/315546/only-one-return-statement-per-method-even-in-this-scenario/315567#315567Comment by Marko Dumic on Only one return statement per method, even in this scenario?Marko Dumic2008-11-24T21:58:23Z2008-11-24T21:58:23ZYes, 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#308720Comment by Marko Dumic on Jquery - How do I fix this Image Rollover?Marko Dumic2008-11-21T14:09:17Z2008-11-21T14:09:17Zgood! removed -1 and voted it up. regards!http://stackoverflow.com/questions/308411/jquery-how-do-i-fix-this-image-rollover/308720#308720Comment by Marko Dumic on Jquery - How do I fix this Image Rollover?Marko Dumic2008-11-21T13:54:47Z2008-11-21T13:54:47ZThe 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#292122Comment by Marko Dumic on Browser Neutral Way to add options to a select element in javascriptMarko Dumic2008-11-15T15:59:17Z2008-11-15T15:59:17ZFails in IE4 because of getElementById. Try "document.forms[0].<select-name>"http://stackoverflow.com/questions/277544/how-to-set-the-focus-to-the-first-input-element-in-an-html-form-independent-from/277615#277615Comment by Marko Dumic on How to set the focus to the first input element in an HTML form independent from the id?Marko Dumic2008-11-10T21:00:31Z2008-11-10T21:00:31ZExactly. 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#261469Comment by Marko Dumic on How to update HTML "select" box dynamically in IEMarko Dumic2008-11-10T20:06:27Z2008-11-10T20:06:27ZI'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.