User Joda - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T08:25:03Zhttp://stackoverflow.com/feeds/user/1090http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1509431/problem-with-firefox-ie8-not-showing-mouseover-alt-text-for-image-maps1Problem with Firefox & IE8 not showing mouseover alt text for image mapsJoda2009-10-02T13:15:26Z2009-10-02T13:25:27Z
<p>I have the following HTML:</p>
<pre><code><div style="position: relative; text-align: left;">
<img id="chart_6c544b37_ac9d_49ed_912e_5ff8ad6c0181_BaseImage" src="chart.gif" width="460px" height="240px" usemap="#chart_6c544b37_ac9d_49ed_912e_5ff8ad6c0181" border="0">
<map name="chart_6c544b37_ac9d_49ed_912e_5ff8ad6c0181">
<area shape="poly" alt="Second Dot" coords="256,51,259,48,256,45,253,48"></area>
<area shape="poly" alt="First Dot" coords="183,51,186,48,183,45,180,48"></area>
</map>
</div>
</code></pre>
<p>The Alt texts ("First dot" and "second dot") show correctly as tooltips when I hover over the areas on the graph when using IE7, but they do not show when using Firefox or IE8.</p>
<p>Any ideas why?</p>
<p><a href="http://dl.getdropbox.com/u/334205/test.html" rel="nofollow">The example can be seen here</a></p>
http://stackoverflow.com/questions/207878/cookie-loses-value-in-asp-net0Cookie loses value in ASP.netJoda2008-10-16T09:10:13Z2009-07-29T10:21:07Z
<p>I have the following code that sets a cookie:</p>
<pre><code> string locale = ((DropDownList)this.LoginUser.FindControl("locale")).SelectedValue;
HttpCookie cookie = new HttpCookie("localization",locale);
cookie.Expires= DateTime.Now.AddYears(1);
Response.Cookies.Set(cookie);
</code></pre>
<p>However, when I try to read the cookie, the Value is Null. The cookie exists. I never get past the following if check:</p>
<pre><code> if (Request.Cookies["localization"] != null && !string.IsNullOrEmpty(Request.Cookies["localization"].Value))
</code></pre>
<p>Help?</p>
http://stackoverflow.com/questions/1171034/how-do-i-control-reloads-when-using-the-back-button-in-the-browser0How do I control reloads when using the back button in the browser?Joda2009-07-23T11:07:04Z2009-07-23T11:32:37Z
<p>I have an asp.NET application which has a fairly heavy mainpage. The content of this mainpage is only rarely changed, except by actions on that same page.</p>
<p>How do I make the browser retrieve the page from cache when the user presses the "Back" button in the browser, instead of contacting the server every single time, forcing it to render the page again? </p>
<p>Thanks, Jonas</p>
http://stackoverflow.com/questions/1081086/finding-the-previous-item-in-a-jquery-array0finding the previous item in a JQuery arrayJoda2009-07-03T22:59:50Z2009-07-03T23:40:36Z
<p>I have the jquery:
$(".item") </p>
<p>which gives me all elements of class item.</p>
<p>I need to select an item from the array I get from this method, and then find the item before this.</p>
<p>something like: $(".item").select("#3").prev() - except it should work :)</p>
<p>so, assuming I had the list of items:</p>
<pre><code><div id=1 class="item"></div>
<div id=2 class="item"></div>
<div class="somethingElse"></div>
<div id=3 class="item"></div>
<div id=4 class="item"></div>
</code></pre>
<p>I should get the "<code><div id=2></div></code>" item.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/618623/programatically-adding-sections-to-the-configuration-read-from-app-config0Programatically adding sections to the configuration read from app.configJoda2009-03-06T12:06:08Z2009-03-06T12:18:07Z
<p>I am working on a component/assembly that is to be distributed to other developers and included in their systems.</p>
<p>In order to minimize the work they have to do, all configuration is done in a seperate file (my.config).</p>
<p>My current problem is that a library I am using requires configuration to be added to the app.config file of the application. I have no way of modifying this, so that it reads my custom config file.</p>
<p>Is there any way to add a section/setting to the current config, so that it behaves as if it was read from the app.config?</p>
<p>I can add to the app.config, so it must work at runtime only.</p>
<p>Thanks, Jonas</p>
http://stackoverflow.com/questions/39065/referencing-resource-files-from-multiple-projects-in-a-solution1Referencing resource files from multiple projects in a solutionJoda2008-09-02T09:05:04Z2009-02-17T18:50:25Z
<p>Hi,</p>
<p>I am working on localization for a asp.net application that consists of several projects.</p>
<p>For this, there are some strings that are used in several of these projects. Naturally, I would prefer to have only one copy of the resource file in each project.</p>
<p>Since the resource files don't have an namespace (at least as far as I can tell), they can't be accessed like regular classes.</p>
<p>Is there any way to reference resx files in another project, within the same solution?</p>
http://stackoverflow.com/questions/450618/nan-values-in-a-float-field-in-mssql-database1NaN Values in a float field in MSSQL DatabaseJoda2009-01-16T14:53:59Z2009-01-17T19:15:48Z
<p>I am working on an old database I inherited from my predecessors. </p>
<p>In it, some float fields contains NaN where there should be a null.</p>
<p>The following SQL doesn't work because it doesn't recognize NaN.</p>
<pre><code>UPDATE xxx SET column= null WHERE column=NaN
</code></pre>
<p>How can I do this?</p>
http://stackoverflow.com/questions/450618/nan-values-in-a-float-field-in-mssql-database/450668#4506680Answer by Joda for NaN Values in a float field in MSSQL DatabaseJoda2009-01-16T15:08:14Z2009-01-16T15:08:14Z<p>Brilliant, that worked - thanks cmsjr</p>
http://stackoverflow.com/questions/48239/getting-the-id-of-the-element-that-fired-an-event-using-jquery11Getting the ID of the element that fired an event using JQueryJoda2008-09-07T08:09:38Z2009-01-16T14:58:53Z
<p>Is there any way to get the ID of the element that fires an event?</p>
<p>I'm thinking something like: </p>
<pre><code><html>
<head>
<script type="text/javascript" src="starterkit/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("a").click(
function(){
var test = caller.id;
alert(test.val());
}
);
});
</script>
</head>
<body>
<form class="item" id="aaa"><input class="title"></input></form>
<form class="item" id="bbb"><input class="title"></input></form>
</body>
</html>
</code></pre>
<p>Except ofcourse that the var test should contain the id "aaa", if the event is fired from the first form, and bbb, if the event is fired from the second form.</p>
<p>Can anyone help with this?</p>
<p>/Jonas</p>
http://stackoverflow.com/questions/401969/javascript-reference-for-offline-browsing1Javascript reference for offline browsing.Joda2008-12-31T00:48:25Z2008-12-31T01:21:49Z
<p>I am going offline for a few days, and would like to bring the javascript documentation with me on my laptop :)</p>
<p>Does anyone know of a place where I can get downloadable reference documentation for javascript, preferably for firefox? </p>
<p>I have cheked <a href="http://www.mozilla.org/docs/web-developer/" rel="nofollow">the mozilla site</a>, but have only been able to find an online version.</p>
<p>Thanks, Jonas</p>
http://stackoverflow.com/questions/330532/cruise-control-and-php-projects/336827#3368270Answer by Joda for Cruise Control and PHP projectsJoda2008-12-03T11:01:36Z2008-12-03T11:01:36Z<p>I have found that CruiseControl only merge the logs containing test results when a test fails. </p>
<p>When I broke a test on purpose, the results got merged into the log, and where shown on the CruiseControl dashboard.</p>
<p>Could that be your problem?</p>
http://stackoverflow.com/questions/313781/localization-of-date-time-using-custom-patterns0Localization of date-time using custom patterns.Joda2008-11-24T09:52:47Z2008-11-28T15:02:17Z
<p>I am working on localization for an app where custom patterns are used to format the date-time.</p>
<p>one example is:
dd-MM HH:mm</p>
<p>I need to get localized versions of this custom format for dates, so that I get the date using numbers, and the time, basically using the local order (dd MM or MM dd) and the local seperator for both date and time.</p>
<p>This is fairly trivial, as long as I am using the default formatting, but as soon as I stray from these, the formatting becomes hardcoded.</p>
<p>Any ideas?</p>
<p>Thanks, Jonas</p>
<p>edit:
I have the cultureInfo objects, the problem is that when I do a DateTime.ToString("ES-es"), I get too much info - I need only month+day, but with the default ToString, I get year+month+day</p>
<p>Edit again:
I see how I can change the ShortDate pattern for each CultureInfo object I use. However, I also need the default ShortDate pattern in some situations, so changing that would, unfortunately, leave me with another, equivalent problem.</p>
<p>Final edit: in case anyone cares. I never did find a solution, so I ended up coding a static function that checks the current CultureInfo, and returns the correctly formatted date, sans year.</p>
http://stackoverflow.com/questions/207878/cookie-loses-value-in-asp-net/207929#2079290Answer by Joda for Cookie loses value in ASP.netJoda2008-10-16T09:30:01Z2008-10-16T09:30:01Z<p>I have tried correcting the code to use Request.Cookies after post back (as shown above), but the problem is the same.</p>
http://stackoverflow.com/questions/60825/international-characters-in-javascript1international characters in JavascriptJoda2008-09-13T20:19:38Z2008-10-11T16:30:51Z
<p>I am working on a web application, where I transfer data from the server to the browser in XML.</p>
<p>Since I'm danish, I quickly run into problems with the characters æøå.</p>
<p>I know that in html, I use the "&aelig;&oslash;&aring;" for æøå.</p>
<p>however, as soon as the chars pass through javascript, I get black boxes with "?" in them when using æøå, and "æøå" is printed as is.</p>
<p>I've made sure to set it to utf-8, but that isn't helping much.</p>
<p>Ideally, I want it to work with any special characters (naturally).</p>
<p>The example that isn't working is included below:</p>
<pre><code><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript" charset="utf-8">
alert("&aelig;&oslash;&aring;");
alert("æøå");
</script>
</head>
<body>
</body>
</html>
</code></pre>
<p>What am I doing wrong?</p>
<p><hr /></p>
<p>Ok, thanks to Grapefrukts answer, I got it working.</p>
<p>I actually needed it for data comming from an MySQL server. Since the saving of the files in UTF-8 encoding only solves the problem for static content, I figure I'd include the solution for strings from a MySQL server, pulled out using PHP:</p>
<p>utf8_encode($MyStringHere)</p>
http://stackoverflow.com/questions/48239/getting-the-id-of-the-element-that-fired-an-event-using-jquery/48246#482460Answer by Joda for Getting the ID of the element that fired an event using JQueryJoda2008-09-07T08:19:26Z2008-09-07T08:19:26Z<p>that works - thanks :)</p>
http://stackoverflow.com/questions/39065/referencing-resource-files-from-multiple-projects-in-a-solution/39152#391520Answer by Joda for Referencing resource files from multiple projects in a solutionJoda2008-09-02T10:03:56Z2008-09-02T10:03:56Z<p>Thank you both for your input.</p>
<p>The solution with a class library seems to work quite well.</p>
<p>Only thing is, I have to create a public wrapper function, since the protection level of the resources does not allow them to be accessed directly from outside the assembly.</p>
<p>I don't think this is a deal-breaker, though :)</p>
<p>/Jonas</p>
http://stackoverflow.com/questions/31794/help-accessing-application-settings-using-configurationmanager/31838#318381Answer by Joda for Help accessing application settings using ConfigurationManagerJoda2008-08-28T08:19:39Z2008-08-28T08:19:39Z<p>If you're just trying to get a value from the app.config file, you might want to use:</p>
<pre><code>ConfigurationSettings.AppSettings["name"];
</code></pre>
<p>That works for me, anyways.</p>
<p>/Jonas</p>
http://stackoverflow.com/questions/29870/how-to-bring-in-a-web-app/29902#299021Answer by Joda for How to bring in a web appJoda2008-08-27T11:04:31Z2008-08-27T11:04:31Z<p>I'll try to answer with the limited amount of details you've given.</p>
<p>1: Wether it's open or closed is really only an issue if you have great buzz, and a large group of users hammering down your door, trying toget in on the action.
If this is the case, I think you might get more loyalty and commitment from users in a closed beta.</p>
<p>2: You haven't given many (any) details as to what kind of game you are talking about, so it's pretty hard to answer this one.</p>
<p>/Jonas</p>
http://stackoverflow.com/questions/29845/dynamic-reference-to-resource-files-in-c/29876#298760Answer by Joda for Dynamic reference to resource files in C#Joda2008-08-27T10:48:23Z2008-08-27T10:48:23Z<p>That'll work.</p>
<p>Thanks :)</p>
http://stackoverflow.com/questions/29845/dynamic-reference-to-resource-files-in-c2Dynamic reference to resource files in C#Joda2008-08-27T10:12:08Z2008-08-27T10:48:23Z
<p>I have an application on which I am implementing localization.</p>
<p>I now need to dynamically reference a name in the resouce file.</p>
<p>assume I have a resource file called Login.resx, an a number of strings: foo="hello", bar="cruel" and baz="world"</p>
<p>normally, I will refer as:
String result =Login.foo;
and result=="hello";</p>
<p>my problem is, that at code time, I do not know if I want to refer to foo, bar or baz - I have a string that contains either "foo", "bar" or "baz". </p>
<p>I need something like:</p>
<p>Login["foo"];</p>
<p>Does anyone know if there is any way to dynamically reference a string in a resource file?</p>
http://stackoverflow.com/questions/1171034/how-do-i-control-reloads-when-using-the-back-button-in-the-browser/1171158#1171158Comment by Joda on How do I control reloads when using the back button in the browser?Joda2009-07-24T13:53:21Z2009-07-24T13:53:21ZSadly, it doesn't allow me to solve my problem without substantial changes to the code - most of what I'd need to differentiate generated pages is saved in session.
However, it answered my question, so I thank you for that :)http://stackoverflow.com/questions/1171034/how-do-i-control-reloads-when-using-the-back-button-in-the-browser/1171158#1171158Comment by Joda on How do I control reloads when using the back button in the browser?Joda2009-07-23T11:38:36Z2009-07-23T11:38:36ZSo using the OutputCache directive will work, as long as all arguments that differentiate the pages are included in the URL. I'll give that a try, thanks :)http://stackoverflow.com/questions/1081086/finding-the-previous-item-in-a-jquery-array/1081147#1081147Comment by Joda on finding the previous item in a JQuery arrayJoda2009-07-03T23:53:02Z2009-07-03T23:53:02ZPerfect, thank you :)http://stackoverflow.com/questions/1081086/finding-the-previous-item-in-a-jquery-array/1081104#1081104Comment by Joda on finding the previous item in a JQuery arrayJoda2009-07-03T23:33:47Z2009-07-03T23:33:47Zwhen I try with:
$("#3").prev(".item")
I just get undefined :(http://stackoverflow.com/questions/313781/localization-of-date-time-using-custom-patternsComment by Joda on Localization of date-time using custom patterns.Joda2008-11-24T10:14:12Z2008-11-24T10:14:12ZI have the cultureInfo objects, the problem is that when I do a DateTime.ToString("ES-es"), I get too much info - I need only month+day, but with the default ToString, I get year+month+day.