User Alconja - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T00:38:22Z http://stackoverflow.com/feeds/user/68727 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/796671/changing-fill-color-of-movieclip-actionscript-3/1503532#1503532 0 Answer by Alconja for Changing fill color of MovieClip Actionscript 3 Alconja 2009-10-01T11:56:15Z 2009-10-01T11:56:15Z <p>I know this is a bit late to the game, but I was having this same issue and fixed it a bit differently. It may not be of any help since it will only work in limited circumstances*, but I started with my shape being filled white &amp; stroked black. That way you can apply a color transform with RGB multipliers, to fade the white down to your desired colour leaving the black border intact. So to make your object red (with black border) use:</p> <pre><code>function paint() { shape.transform.colorTransform = new ColorTransform(1, 0, 0); } </code></pre> <p>Or for Stack Overflow orange (still with black border):</p> <pre><code>function paint() { shape.transform.colorTransform = new ColorTransform(0.996, 0.478, 0.082); } </code></pre> <p>*It'll only work if you just want a single colour with a black border.</p> http://stackoverflow.com/questions/1325578/how-to-recognize-a-wrong-from-a-correct-design/1325605#1325605 5 Answer by Alconja for How to recognize a wrong from a correct design ? Alconja 2009-08-25T01:23:01Z 2009-08-25T01:23:01Z <p>My personal opinion is that there can be many "correct" designs, but sometimes depending on how things evolve, one may be more correct than another. Some things to consider:</p> <ul> <li>Which design is more readable/understandable?</li> <li>Which design is more testable?</li> <li>Which design is more flexible/more easily refactored in the future?</li> <li>Which design is more extensible to include possible future scenarios? (although be wary of falling into the over engineering trap)</li> </ul> http://stackoverflow.com/questions/1325529/is-there-such-a-thing-as-too-many-document-ready-handlers-ie/1325532#1325532 6 Answer by Alconja for Is there such a thing as too many $(document).ready handlers (IE)? Alconja 2009-08-25T00:53:01Z 2009-08-25T00:53:01Z <p>If that's the exact code you're trying to run, you're missing a close bracket &amp; semi-colon... try:</p> <pre><code>alert('HELLO'); $(document).ready(function(){ alert('AWESOME!!!!!!!!!!!!'); }); //close the ready function call &amp; statement alert('GOODBYE'); </code></pre> http://stackoverflow.com/questions/1245145/web-deployment-project-publish-without-precompilation/1258022#1258022 1 Answer by Alconja for Web Deployment Project: Publish without Precompilation Alconja 2009-08-11T01:09:38Z 2009-08-11T01:09:38Z <p>Maybe I'm missing something (I don't have any experience with VirtualPathProviders), but if you just want your aspx &amp; ascx files to not be precompiled ticking the "Allow this precompiled site to be updatable" box in the Compilation section of the deployment project's property pages (for whichever configuration you're using).</p> <p>From <a href="http://msdn.microsoft.com/en-us/library/ms178731.aspx" rel="nofollow">MSDN</a>:</p> <blockquote> <p><strong>Allow this precompiled site to be updatable</strong></p> <p>Specifies that the content of .aspx pages are not compiled into an assembly; instead, the markup is left as-is, allowing you to change HTML and client-side functionality after precompiling the Web site. Selecting this check box is equivalent to adding the -u option to the aspnet_compiler.exe command.</p> </blockquote> http://stackoverflow.com/questions/1220847/background-animation-problem-with-jquery/1243027#1243027 1 Answer by Alconja for Background animation problem with jQuery Alconja 2009-08-07T05:27:19Z 2009-08-07T05:27:19Z <p>To follow on from my above comment with respect to timing (sorry this isn't an actual answer, but there's not enough room in the comment field)... I think the problem is due to the timing of the following two events:</p> <ol> <li>The dynamic (async) load of the new stylesheet</li> <li>The <code>updatePage</code> function where you grab the background colour to fade to</li> </ol> <p>The problem (if i'm reading your code right) is that you're grabbing the colour to fade to from a div which is styled by the style sheet that you're dynamically loading. If it hasn't finished loading (not just the downloading, but the application of styles to the DOM), then the background colour you grab will be the old one.</p> <p>So steps to take from here... firstly try changing the timeout on your CSS loader to be really small &amp; see if that makes the bug appear more often (or make it larger &amp; see if it goes away). If this seems to match up, then a possible solution is to use a timeout in a loop that testing the background colour against the known old colour until you see it change &amp; then carry on with your background animation, etc.</p> <p>Hope that helps...</p> http://stackoverflow.com/questions/1242571/calling-controller-action-from-javascript/1242582#1242582 1 Answer by Alconja for calling controller action from javascript Alconja 2009-08-07T02:23:42Z 2009-08-07T04:05:22Z <p>Use:</p> <pre><code>&lt;%= Url.Action("Delete", "Delete", new { id = item.Mail_ID }) %&gt; </code></pre> <p>to generate just the actual url (without the <code>&lt;a href="..." &gt;...&lt;/a&gt;</code>). That way you can just render that into your javascript &amp; use <code>window.location</code>, so your javascript becomes (assuming that function at the end of your <code>jConfirm</code> is the call back on acceptance):</p> <pre><code>$("a.delete").click(function() { var name = $(this).parent().prev('td').prev('td').text(); jConfirm('Are you sure you want to delete the following member:' + name, 'Member Delete', function(r) { window.location = &lt;%= Url.Action("Delete", "Delete", new { id = item.Mail_ID }) %&gt;; }); }); </code></pre> <p><hr /></p> <p>Another alternative, which would mean that it would still work (sans the confirmation) if they didn't have javascript enabled would be to leave the link as it is &amp; then do this:</p> <pre><code>$("a.delete").click(function() { var url = $(this).attr("href"); var name = $(this).parent().prev('td').prev('td').text(); jConfirm('Are you sure you want to delete the following member:' + name, 'Member Delete', function(r) { window.location = url; }); }); </code></pre> <p>which grabs the url directly from the link (i.e. the one generated by your original <code>&lt;%= Html.ActionLink...</code>).</p> http://stackoverflow.com/questions/1237157/a-glitch-in-dragging-sortable-by-handle-in-jquery-ui/1237359#1237359 1 Answer by Alconja for a glitch in dragging sortable by handle in jquery ui Alconja 2009-08-06T07:05:57Z 2009-08-06T07:05:57Z <p>The problem is that when the div is dragged to do the sorting, jQuery effectively set's the <code>draggable</code> (so <code>div.c</code> in your case) to be absolutely positioned (so it can move it around the screen). Not sure about the exact CSS quirks (maybe someone wiser than I can explain more fully), but basically your floating <code>.handle</code> acts a bit strangely in conjunction with the <code>p</code> when inside an absolutely positioned container. The margins on the <code>p</code> now appear to be set from the inside of div rather than merging with them, while the <code>span</code> is still floating to the top left of the div.</p> <p>One solution is to add the same top margin to the <code>span</code> as to the <code>p</code>, but only while its dragging. In other words add the following CSS (I think <code>1em</code> should be the default margin applied to the top of the <code>p</code>):</p> <pre><code>.ui-sortable-helper .handle { margin-top: 1em; } </code></pre> <p>If you are interested in delving more into the CSS, add the following to your above code &amp; you'll reproduce the problem without needing the sortables involved:</p> <pre><code>.c { width: 500px; height: 40px; position: absolute; } </code></pre> http://stackoverflow.com/questions/1231314/how-to-highligh-the-row-and-column-of-a-table-when-over-a-cell-using-jquery/1231363#1231363 0 Answer by Alconja for How to highligh the row and column of a table when over a cell using jQuery? Alconja 2009-08-05T05:32:48Z 2009-08-05T05:32:48Z <p>As others have said, there may be a better way of doing things than trying to find the exact cell location, but if you do need it this should work:</p> <pre><code>$("td").hover(function() { var columnIndex = $(this).attr("cellIndex"); var rowIndex = $(this).parent().attr("rowIndex")); }); </code></pre> http://stackoverflow.com/questions/1226144/firebug-net-panel-logs/1226163#1226163 0 Answer by Alconja for Firebug Net Panel Logs Alconja 2009-08-04T07:45:04Z 2009-08-04T07:45:04Z <p>Not that I'm aware of out of the box... If you're just trying to record the header request/response info (as opposed to the actual content &amp; timings), you could try <a href="https://addons.mozilla.org/en-US/firefox/addon/3829" rel="nofollow">Live HTTP Headers</a>. Not as pretty, but I still find it useful in certain debugging scenarios.</p> http://stackoverflow.com/questions/1226058/why-do-they-make-stuff-so-complicated/1226089#1226089 0 Answer by Alconja for Why do they make stuff so complicated? Alconja 2009-08-04T07:24:49Z 2009-08-04T07:24:49Z <p>Often (especially with open source stuff) its because things are built by individuals for their own purposes. So they're not necessarily interested in making it 100% polished &amp; super usable.</p> <p>To follow that thought further, if there's limited time to spend on a project, people are generally more likely to spend more time adding features, etc than doing "boring" stuff like documentation/installers/etc.</p> http://stackoverflow.com/questions/1226023/how-to-check-that-current-type-object-of-type-has-needed-interface-or-parent-t/1226041#1226041 2 Answer by Alconja for How to check that current type (object of Type) has needed interface (or parent type) Alconja 2009-08-04T07:08:46Z 2009-08-04T07:21:45Z <p>I think the easiest way is to use <a href="http://msdn.microsoft.com/en-us/library/system.type.isassignablefrom.aspx" rel="nofollow"><code>IsAssignableFrom</code></a>.</p> <p>So from your example:</p> <pre><code>Type customListType = new YourCustomListType().GetType(); if (typeof(IList).IsAssignableFrom(customListType)) { //Will be true if "YourCustomListType : IList" } </code></pre> http://stackoverflow.com/questions/1225272/tips-for-programming-in-5-min-segments/1225283#1225283 1 Answer by Alconja for Tips for programming in 5 min segments? Alconja 2009-08-04T00:38:12Z 2009-08-04T00:38:12Z <p>I think the biggest hurdle is knowing what task can fit into 5mins. So the first thing I'd do is break down a bigger piece of work into a bunch of bite sized tasks, each of which will fit into 5mins. That way when you have your spare 5mins, you don't have to context switch to a large problem, then try to work out what needs doing &amp; then try to get something done. Instead you just look at your task/todo list &amp; grab the top item.</p> http://stackoverflow.com/questions/1210390/jquery-find-only-working-once-on-ajax-result/1210437#1210437 0 Answer by Alconja for jQuery find() only working once on AJAX result? Alconja 2009-07-31T02:45:57Z 2009-07-31T02:45:57Z <p>From a quick first glance, <em>I think</em> you're having <a href="http://www.jibbering.com/faq/faq%5Fnotes/closures.html" rel="nofollow">closure</a> issues...</p> <p>The <code>$response</code> variable isn't captured in the scope of the closure for the event handlers (such as on your click -> fadeout -> showContent). I'm guessing it would be fixed if you passed the <code>$response</code> variable around instead of trying to reference it globally. I.e. taking your example, make it something like this:</p> <pre><code>$.get('sections.htm', {}, function(data) { var $response = $('&lt;div /&gt;').html(data); showContent("teaser", $response); function showContent(nav, $response) { loadContent(nav, $response); loadSlimboxHack(); $('#content').fadeIn(400); } ... function loadContent(nav, $response) { if (nav == 'teaser') { $('#content').html($response.find('.teaser')); } ... </code></pre> <p>That way you're guaranteed that <code>$response</code> will always be there when you go to use it. The other option is to make <code>$response</code> actually global by declaring it outside your <code>$(document).ready</code>.</p> http://stackoverflow.com/questions/1209985/jquery-jcarousel-using-wrapinner-and-nth-selectors-to-only-wrap-every-8th-item/1210208#1210208 1 Answer by Alconja for JQuery / JCarousel: Using WrapInner and nth selectors to only wrap every 8th item Alconja 2009-07-31T01:12:57Z 2009-07-31T01:59:41Z <p>So you're starting with a single <code>ul</code> with a single <code>li</code> with a <code>div</code> containing a whole bunch of images &amp; you want to split it into a set of <code>li</code>s, each containing 8 images right? If so, this will work:</p> <pre><code>var images = $("img"); while (images.length &gt; 8) { images.slice(8, 16).appendTo("ul").wrapAll("&lt;li&gt;&lt;div&gt;&lt;/div&gt;&lt;/li&gt;"); images = images.slice(16); } </code></pre> <p>Basically it slices off 8 image chunks from the collection of images and appends them back into the <code>ul</code> in their own <code>li</code>s (it leaves the original <code>li</code> with the 1st 8 images). Obviously, you'd need to adjust your selectors as presumably you've got other images and unordered lists on your page.</p> <p><strong>Edit</strong>: to explain the reason why <code>.after</code> is not working the way you were expecting it to - I believe jQuery tries to manipulate the DOM rather than the raw HTML. So you can't just append random chunks of HTML unless they can be parsed and turned into actual DOM nodes. In other words the content you pass to <code>.after</code> effectively needs to be a valid and complete piece of HTML in its own right. So, because jQuery can't work out how to turn something like "<code>&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div&gt;</code>" into a node, it acts a bit strangely (I'm guessing in this case it ignores the two initial close tags, since they don't make sense on their own &amp; then create's the <code>li</code> &amp; <code>div</code> nodes &amp; then effectively auto-closes them for you).</p> http://stackoverflow.com/questions/1198297/css-set-table-cell-background-color-using-text-inside-table-cell/1198346#1198346 1 Answer by Alconja for CSS Set Table Cell Background Color Using Text Inside Table Cell Alconja 2009-07-29T06:30:00Z 2009-07-29T06:48:34Z <p>As David Dorward said, there's no way to do <em>exactly</em> what you want cleanly with CSS, however I can think of a few workarounds... </p> <p>Assuming your html is something like this (i.e. the thing with the background color is the only thing in the table cell):</p> <pre><code>&lt;table&gt; &lt;tr&gt; &lt;td&gt;test with longish string&lt;br/&gt; over two lines&lt;td&gt; &lt;td&gt;&lt;span class="bg" &gt;test&lt;/span&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;test with longish string&lt;br/&gt; over two lines&lt;td&gt; &lt;td&gt;test with longish string&lt;br/&gt; over two lines&lt;td&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> <p>You could do this to your CSS:</p> <pre><code>td { height: 100%;} .bg { background-color: #f00; width: 100%; height: 100%; display: block; } </code></pre> <p>It works in this simple example (at least in firefox 3.5), but could have other side effects depending on what the content of your html looks like.</p> <p><hr /></p> <p><strong>Edit</strong>: Another option if you're ok with hacking it via javascript, is to use jQuery like this:</p> <pre><code>$(function() { $("td:has(span.bg)").addClass("bg"); }); </code></pre> <p>This works on the above example html/css, but would obviously need to be changed to match your css classes, etc.</p> http://stackoverflow.com/questions/1191958/get-virtualpath-of-a-view-using-viewcontext/1191985#1191985 2 Answer by Alconja for Get VirtualPath of a View using ViewContext Alconja 2009-07-28T04:52:38Z 2009-07-28T05:11:50Z <p>I think this is what you're after:</p> <pre><code>((WebFormView) ViewContext.View).ViewPath </code></pre> <p>Obviously this only works if your using the standard web form view engine (which based off the wording of your question, you are). I.e. the <code>ViewContext.View</code> returns an <code>IView</code>, which may not be a <code>WebFormView</code> if you're using a different view engine.</p> <p><strong>Edit</strong>: By the way, I have tested the above code and it definitely returns the path as a virtual path (and not an absolute or app relative path, like I initially assumed it might). I.e. it gives you a value like this:</p> <pre><code>~/Views/Company/Create.aspx </code></pre> http://stackoverflow.com/questions/1175516/property-inject-an-array-with-spring-net/1175584#1175584 2 Answer by Alconja for Property Inject an Array with Spring.Net Alconja 2009-07-24T03:13:09Z 2009-07-24T03:21:18Z <p>As mentioned <a href="http://www.springframework.net/doc-latest/reference/html/objects.html#objects-type-conversion-builtin" rel="nofollow">here in the documentation</a> you can inject a string array as a comma delimited string (not sure what the syntax is for escaping actual commas in strings if necessary). In other words your config would look something like this:</p> <pre><code>&lt;object id="MyObject" type="Blah.SomeClass, Blah" &gt; &lt;property name="StringArrayProperty" value="abc,def,ghi" /&gt; &lt;/object&gt; </code></pre> <p>Manually constructing a <code>string[]</code> with the following syntax also works, if you need something more complex (for example if you're looking the individual values up from some other reference rather than hard coding them):</p> <pre><code>&lt;object id="TestStrArr" type="string[]" &gt; &lt;constructor-arg value="3" /&gt; &lt;property name="[0]" value="qwe" /&gt; &lt;property name="[1]" value="asd" /&gt; &lt;property name="[2]" value="zxc" /&gt; &lt;/object&gt; &lt;object id="MyObject" type="Blah.SomeClass, Blah" &gt; &lt;property name="StringArrayProperty" ref="TestStrArr" /&gt; &lt;/object&gt; </code></pre> http://stackoverflow.com/questions/1175353/rhino-commons-unitofwork-and-asp-net-mvc-controller-seem-to-be-caching-parameters/1175550#1175550 1 Answer by Alconja for Rhino Commons UnitOfWork and ASP.NET MVC Controller seem to be caching parameters Alconja 2009-07-24T02:53:45Z 2009-07-24T02:53:45Z <p>My guess is that the whole UnitOfWork thing is a red herring... The controller being passed values from previous requests sounds like the same instance of the controller is being re-used for multiple requests. The ASP.NET MVC framework works under the assumption that each request is handled by a fresh instance of the controller.</p> <p>So, with that in mind, how are you constructing your controllers? For example if you're using a IoC framework like Spring.NET make sure your controllers are <strong>not</strong> singletons.</p> http://stackoverflow.com/questions/1168791/returning-a-rentered-html-partial-in-a-json-property-in-asp-net-mvc/1168910#1168910 1 Answer by Alconja for Returning a rentered HTML partial in a JSON Property in ASP.NET MVC Alconja 2009-07-23T00:05:41Z 2009-07-23T00:13:46Z <p>I assume you're wanting to effectively make use of the automatic rendering/serialization provided by both <code>JsonResult</code> &amp; <code>PartialViewResult</code> right? Looking at how they work internally, unfortunately they both render directly to the response, so there doesn't appear to be any built in way of doing it.</p> <p>One option though, would be to inherit from the <code>PartialViewResult</code> class &amp; provide a <code>RenderResult</code> method that works virtually identically to the built in <code>ExecuteResult</code>, but renders the result out to a string instead of directly into the Response. That way you could add that string as a value to your <code>JsonResult</code>.</p> <p>The code (based directly off the <code>PartialViewResult</code>'s <code>ExecuteResult</code> method):</p> <pre><code>public class RenderablePartialViewResult : PartialViewResult { public string RenderResult(ControllerContext context) { if (context == null) { throw new ArgumentNullException("context"); } if (string.IsNullOrEmpty(ViewName)) { ViewName = context.RouteData.GetRequiredString("action"); } ViewEngineResult result = null; if (View == null) { result = FindView(context); View = result.View; } var viewContext = new ViewContext(context, View, ViewData, TempData); var textWriter = new StringWriter(); View.Render(viewContext, textWriter); if (result != null) { result.ViewEngine.ReleaseView(context, View); } return textWriter.ToString(); } } </code></pre> <p>Then in your controller you should be able to do something like this:</p> <pre><code>public ActionResult Detail(int id) { //Normal processing goes here... var partial = new RenderablePartialViewResult(); //set view name/model, etc here as necessary (i.e. parital.ViewName = "blah", etc) return new JsonResult { Data = new { PostId = id, Html = partial.RenderResult(ControllerContext) } }; } </code></pre> <p>(Note that I haven't actually tested this code)</p> http://stackoverflow.com/questions/1162487/using-jquery-ui-drag-and-drop-changing-the-dragged-element-on-drop/1162679#1162679 3 Answer by Alconja for Using jQuery UI drag-and-drop: changing the dragged element on drop Alconja 2009-07-22T01:56:28Z 2009-07-22T01:56:28Z <p>Taking the full javascript code from the link you gave, you can change it as follows to make it work:</p> <pre><code>$(function() { $(".elementbar div").draggable({ connectToSortable: '.column', cursor: 'move', cursorAt: { top: 0, left: 0 }, helper: 'clone', revert: 'invalid' }); $(".elementbar div, .elementbar div img").disableSelection(); $(".column").sortable({ connectWith: '.column', cursor: 'move', cursorAt: { top: 0, left: 0 }, placeholder: 'ui-sortable-placeholder', tolerance: 'pointer', stop: function(event, ui) { if (ui.item.hasClass("elemtxt")) { ui.item.replaceWith('&lt;div class="element element-txt"&gt;This text box has been added!&lt;/div&gt;'); } } }); $(".element").addClass("ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"); }); </code></pre> <p>There were a couple of issues:</p> <ol> <li>The drop event (that you show in your question) wasn't firing because you weren't <code>accept</code>ing the right content.</li> <li>If you have both <code>.sortable</code> &amp; <code>.droppable</code> you end up with weird double events firing. This is unnecessary anyway, since you can effectively grab the drop event from sortable's events given that you've linked it with the draggable.</li> </ol> <p>One other thing to note - it would have been nicer to use the sortable's <code>receive</code> event instead of <code>stop</code> (since stop gets fired every time any sorting stops &amp; receive is specifically there to fire when you drop a new item into the sort list), but it doesn't work properly because the <code>item</code> hasn't yet been added to the sortable list, so you aren't able to change it at that point. It works ok on stop simply because none of the other sortable items have the <code>elemtxt</code> class.</p> http://stackoverflow.com/questions/1157463/removing-duplicate-script-from-page/1157573#1157573 0 Answer by Alconja for removing duplicate script from page Alconja 2009-07-21T06:32:03Z 2009-07-21T06:40:37Z <p>You don't need to use any client-side scripting to do this... you can do this in your code behind using the ClientScriptManager without needing to make use of ASP.NET AJAX (I think you're confusing <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.clientscriptmanager.aspx" rel="nofollow">ClientScriptManager</a> with <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.scriptmanager.aspx" rel="nofollow">ScriptManager</a>*) in your control/page just use:</p> <pre><code>ClientScript.RegisterClientScriptInclude("some-script", "myScript.js"); </code></pre> <p>or from your user controls:</p> <pre><code>Page.ClientScript.RegisterClientScriptInclude("some-script", "myScript.js"); </code></pre> <p>This will use the key "some-script" &amp; only register one copy of the script on the page.</p> <p>*To be clear I think the confusion is arrising from the difference between these:</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/system.web.ui.clientscriptmanager.aspx" rel="nofollow">ClientScriptManager</a> if a server-side helper class which is used to manage client side scripts (in other words its whole purpose is to do exactly what you are trying to do). It is accessed via the Page's <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.page.clientscript.aspx" rel="nofollow">ClientScript</a> property.</li> <li><a href="http://msdn.microsoft.com/en-us/library/system.web.ui.scriptmanager.aspx" rel="nofollow">ScriptManager</a> is a <em>Control</em> used to aid client side Ajax scripting in ASP.NET AJAX</li> </ul> <p>(hell I even confused myself &amp; gave the wrong example code initially)</p> http://stackoverflow.com/questions/1115028/how-to-use-command-line-matlab-from-net-without-linking/1156998#1156998 1 Answer by Alconja for How to use command line Matlab from .NET without linking? Alconja 2009-07-21T02:19:28Z 2009-07-21T02:19:28Z <p>Not sure if I completely understand the question (you're essentially trying to detect when the matlab process finishes right?), but couldn't you find matlab's main application process &amp; wait for it to exit? i.e. something like this:</p> <pre><code>process.WaitForExit(); //only waits for the launcher process to finish //but now matlab should be running in a new process... var matlabProcess = Process.GetProcessesByName("whatever process is called"); //assuming only one matlab instance running... //you'd probably want to write some defensive code here... matlabProcess[0].WaitForExit(); </code></pre> <p>Seems like that would be simpler than trying to watch it change files &amp; guess when its finished...</p> http://stackoverflow.com/questions/1151517/how-to-achieve-this-zooming-and-unzooming-functionlaity/1151643#1151643 1 Answer by Alconja for How to achieve this zooming and unzooming functionlaity Alconja 2009-07-20T03:56:21Z 2009-07-20T04:27:22Z <p>If you're using jQuery, there's lots of plugins to provide zoom style thumb-to-full-size effects. For example <a href="http://fancy.klade.lv/" rel="nofollow">fancybox</a> (see the third single image example on <a href="http://fancy.klade.lv/example" rel="nofollow">this page</a>).</p> <p>Alternatively, if you want more control, you could build the features yourself without too much effort:</p> <ol> <li>Load the full image with <a href="http://docs.jquery.com/Ajax/jQuery.get#urldatacallbacktype" rel="nofollow">ajax</a></li> <li>Replace the <code>src</code> <a href="http://docs.jquery.com/Attributes/attr#keyvalue" rel="nofollow">attribute</a> of your thumbnail image (make sure its a fixed size)</li> <li>Do the zoom by <a href="http://docs.jquery.com/Effects/animate#paramsdurationeasingcallback" rel="nofollow">animating</a> your width/height (&amp; position if necessary) to the full size of the final image</li> </ol> <p>Note that depending on what you're showing (for example if you were doing this for embedded flash video), you may need to swap the order of 2 &amp; 3, by zooming the thumbnail (or some other place holder image) &amp; then swapping in the final, full size content.</p> http://stackoverflow.com/questions/1141641/overloading-asp-net-mvc-controller-methods-with-same-verb/1141714#1141714 1 Answer by Alconja for Overloading asp.net MVC controller methods with same verb? Alconja 2009-07-17T06:43:12Z 2009-07-17T06:43:12Z <p>I don't think you can overload the same <em>action name</em> with the one verb by default. As that other thread you point to says, you can overload the methods &amp; then use an attribute to change the action that maps to the method, but I'm guessing that's not what you're looking for.</p> <p>Another option that I've used before (depends on how complex/different your overloads are) is to simply use nullable values for the parameters &amp; effectively merge your different signatures together. So instead of:</p> <pre><code>public ActionResult DoSomething(int id)... public ActionResult DoSomething(string name)... </code></pre> <p>just have:</p> <pre><code>public ActionResult DoSomething(int? id, string? name) </code></pre> <p>Not the nicest solution, but if one overload just builds on another then its not too bad a compromise.</p> <p>One final option that may be worth giving a go (I haven't tried it &amp; don't even know if it'll work, but logically it should), is to write an implementation of the <code>ActionMethodSelectorAttribute</code> that compares the parameters passed in the <code>ControllerContext</code> to the method signature &amp; tries to make a best match (i.e. try to resolve the ambiguity a bit more strictly than the default implementation).</p> http://stackoverflow.com/questions/1127117/yui-uploader-in-jquery-draggable/1129360#1129360 1 Answer by Alconja for YUI Uploader in jQuery Draggable Alconja 2009-07-15T04:05:18Z 2009-07-15T04:05:18Z <p>You can probably fix the first issue by having your draggable not allow the container of the upload button to be a handle using the <a href="http://jqueryui.com/demos/draggable/#option-cancel" rel="nofollow"><code>cancel</code> option</a>. So if your html is something like this:</p> <pre><code>&lt;div class="drag"&gt; &lt;p&gt;whatever&lt;/p&gt; &lt;div class="upload" &gt;&lt;/div&gt; &lt;/div&gt; </code></pre> <p>Then your initialisation scripts should look something like this:</p> <pre><code>var dragger = $(".drag").draggable({ cancel: ".upload" }); var uploader = new YAHOO.widget.Uploader( "upload", "assets/buttonSprite.jpg" ); </code></pre> <p>As for your second issue, I'm not really sure... sorry (although it is possible that the above might fix that too if there's some weird event swallowing going on).</p> http://stackoverflow.com/questions/1128843/including-the-numerals-from-an-ol-in-the-css-background/1128888#1128888 2 Answer by Alconja for Including the numerals from an <ol> in the CSS background Alconja 2009-07-15T01:07:28Z 2009-07-15T01:07:28Z <p>I think what you're after is:</p> <pre><code>ol { list-style-position: inside; } </code></pre> http://stackoverflow.com/questions/926125/using-tinymce-with-asp-net-mvc/1122915#1122915 1 Answer by Alconja for Using TinyMCE with ASP.NET MVC Alconja 2009-07-14T00:44:12Z 2009-07-14T23:40:51Z <p>Someone else was having (what sounds like) the same problem <a href="http://stackoverflow.com/questions/1122659/tinymce-spellchecker-in-asp-net-mvc">over here</a>. The solution was to make sure the app <a href="http://stackoverflow.com/questions/1122659/tinymce-spellchecker-in-asp-net-mvc/1122766#1122766">wasn't interpreting the spellechecker service as an attempted MVC route</a>. In other words, it's necessary to add something like this to your route definitions:</p> <pre><code>routes.IgnoreRoute("TinyMCE.ashx"); </code></pre> http://stackoverflow.com/questions/1123921/no-images-displayed-when-website-called-from-self-written-webserver/1123997#1123997 1 Answer by Alconja for No images displayed when website called from self written webserver Alconja 2009-07-14T07:38:46Z 2009-07-14T07:38:46Z <p>Images (and css/js files) are requested by the browser as completely separate GET requests to the page, so there's definitely no need to "send those ... with the output stream". So if you're getting pages served up ok, but images aren't being loaded, my first guess would be that you're not setting your response headers appropriately (for example, setting the <code>Content-Type</code> of the response to <code>text/html</code>), so the browser isn't interpreting it as a proper page &amp; therefore not loading the images.</p> <p>Some other things to try if that doesn't work:</p> <ul> <li>Check if you can access an image directly</li> <li>Use something like firebug or fiddler to check whether the browser is actually requesting the image/css/js files &amp; that all your request/response headers look ok</li> <li>Use an <a href="http://httpd.apache.org/" rel="nofollow">existing web server</a>!</li> </ul> http://stackoverflow.com/questions/1122659/tinymce-spellchecker-in-asp-net-mvc/1122766#1122766 1 Answer by Alconja for TinyMCE Spellchecker in ASP .NET MVC Alconja 2009-07-14T00:00:06Z 2009-07-14T04:43:21Z <p>Well its a bit hard to know what the problem is without knowing what the error you're getting is, but I'm guessing that its because you need to ignore the route to the spell checker in your MVC. Do this by adding something like this to your MVC route definitions:</p> <pre><code>//ignore just the TinyMCE spell checker service: routes.IgnoreRoute("TinyMCE.ashx"); //or if you want to be more general &amp; ignore all ashx's: routes.IgnoreRoute("{resource}.ashx{*pathInfo}"); </code></pre> <p>Without the above it would be interpreting the spellcheck request url (<code>TinyMCE.ashx...</code>) as an MVC route &amp; try to find a matching Controller (&amp; obviously fail).</p> <p>If that's not the issue, I'd suggest posting some more info about the specific error you're seeing.</p> http://stackoverflow.com/questions/1117812/vs2008-unittesting-detached-rcw-with-office-application-objects-powerpoint-et/1118014#1118014 3 Answer by Alconja for VS2008 UnitTesting - detached RCW with Office Application objects (PowerPoint, etc.) Alconja 2009-07-13T06:58:49Z 2009-07-13T06:58:49Z <p>Looks like the issue is that MS Unit Tests run in multiple threads whereas NUnit tests run in the same thread. So the static reference to PowerPoint when running in your MS tests is <a href="http://social.msdn.microsoft.com/Forums/en-US/vststest/thread/e53fdc45-23f3-4aee-aad9-f63769f2c638" rel="nofollow">being shared between threads</a>, which COM doesn't like since by default its STA (single threaded). You can switch MS test to use MTA (multi-threading for COM) by adding:</p> <pre><code>&lt;ExecutionThread apartmentState="MTA" /&gt; </code></pre> <p>to your *.testrunconfig file (open the file as XML &amp; chuck the above line <a href="http://blogs.msdn.com/irenak/archive/2008/02/22/sysk-365-how-to-get-your-unit-tests-test-project-in-visual-studio-2008-a-k-a-mstest-run-multithreaded.aspx" rel="nofollow">anywhere in main the <code>TestRunConfiguration</code> node</a>).</p> <p>Not sure how well PowerPoint (&amp; your specific tests) will deal with being treated as being multi-threaded, but your trivial example above passes with MTA switched on. If you do get threading issues occurring, you could try making your <a href="http://msdn.microsoft.com/en-us/library/ms182630.aspx" rel="nofollow">unit tests ordered</a> &amp; see if that fixes the issue.</p> http://stackoverflow.com/questions/728533/spring-net-constructor-interceptors Comment by Alconja on Spring.NET & Constructor Interceptors Alconja 2009-11-16T12:46:28Z 2009-11-16T12:46:28Z No. Unfortunately the functionality just isn't in the current version (nor in the up coming 1.3), &amp; I never found a better work around than what I mentioned above. http://stackoverflow.com/questions/1325529/is-there-such-a-thing-as-too-many-document-ready-handlers-ie Comment by Alconja on Is there such a thing as too many $(document).ready handlers (IE)? Alconja 2009-08-25T04:22:38Z 2009-08-25T04:22:38Z Another tip with JavaScript code is to run it through something like JSLint to help pick up potential syntax issues. (<a href="http://www.jslint.org/" rel="nofollow">jslint.org</a>) http://stackoverflow.com/questions/944228/css-fixed-display-not-working-in-ie6/944271#944271 Comment by Alconja on Css fixed display not working in IE6 Alconja 2009-08-21T01:47:01Z 2009-08-21T01:47:01Z Not the best page to be linking to when arguing browser usage numbers... as they say themselves at the bottom: &quot;W3Schools is a website for people with an interest for web technologies. These people are more interested in using alternative browsers than the average user. The average user tends to use Internet Explorer, since it comes preinstalled with Windows. Most do not seek out other browsers. These facts indicate that the browser figures above are not 100% realistic. Other web sites have statistics showing that Internet Explorer is used by at least 80% of the users.&quot; http://stackoverflow.com/questions/334933/resharper-run-all-unit-tests-in-a-project-or-solution-at-once/1056115#1056115 Comment by Alconja on Resharper run all unit tests in a project or solution at once . Alconja 2009-08-19T23:35:27Z 2009-08-19T23:35:27Z I use <code>CTRL+T, CTRL+T</code> to run tests based on context (current test/fixture); <code>CTRL+T, CTRL+D</code> to debug based on context; <code>CTRL+T, CTRL+S</code> to run tests for the solution &amp; <code>CTRL+T, CTRL+E</code> to re-run the existing test session... I find holding <code>CTRL</code> &amp; hitting <code>TT</code> or <code>TS</code> quicker &amp; easier than typing out <code>RUN</code> (which needs two hands), but each to their own... (it is cool that they got the menu alt-keys to spell out RUN though). http://stackoverflow.com/questions/1220847/background-animation-problem-with-jquery/1243027#1243027 Comment by Alconja on Background animation problem with jQuery Alconja 2009-08-13T03:14:58Z 2009-08-13T03:14:58Z :) Cheers. I just hope you can get it fixed... I know how weird/annoying/hard-to-reproduce browser specific bugs like this can be. http://stackoverflow.com/questions/1220847/background-animation-problem-with-jquery Comment by Alconja on Background animation problem with jQuery Alconja 2009-08-12T00:19:35Z 2009-08-12T00:19:35Z Out of curiosity, did you get this fixed (I can't seem to reproduce it any more)? If so what was the problem? Or was it one of those mystical bugs that just vanished after changing some stuff around? http://stackoverflow.com/questions/1237775/why-does-intellisense-not-work-when-using-render-blocks-on-an-html-attibute-with Comment by Alconja on Why does Intellisense not work when using render blocks on an HTML attibute with double quotes? Alconja 2009-08-11T00:38:29Z 2009-08-11T00:38:29Z As Muhammad said, its just how it is... Don't know if its an option for you, but fixing this issue is one of the many features that the Resharper plugin (<a href="http://www.jetbrains.com/resharper/" rel="nofollow">jetbrains.com/resharper</a>) provides. http://stackoverflow.com/questions/1220847/background-animation-problem-with-jquery/1243027#1243027 Comment by Alconja on Background animation problem with jQuery Alconja 2009-08-07T07:10:47Z 2009-08-07T07:10:47Z Ah yes, I've seen it now (was using Fx3.5, but just tried it in Safari). Visually it looks like the <code>#main-container</code>'s background colour switches to white immediately before fading to its new colour (rather than fading from its old colour), right? ...if that's the case, is there any need for the setting/animating of the background colour on main container at all? Can't you just do it purely on the body's background? (or is the reason you added the colour to the main container an attempt to get around the issue in the first place?) http://stackoverflow.com/questions/1220847/background-animation-problem-with-jquery/1243027#1243027 Comment by Alconja on Background animation problem with jQuery Alconja 2009-08-07T06:47:18Z 2009-08-07T06:47:18Z I believe I reproduced it once. It looked like the <code>div.main-container</code> changed colour properly, but the <code>body</code> hadn't... Could it have anything to do with the fact that you're doing: <code>$('#main-container').css('background', backgroundFadeTo);</code> explicitly in the <code>updatePage</code> function (in the animate's callback) but don't do the same to <code>$(&quot;body&quot;)</code>? http://stackoverflow.com/questions/1220847/background-animation-problem-with-jquery Comment by Alconja on Background animation problem with jQuery Alconja 2009-08-07T04:43:14Z 2009-08-07T04:43:14Z I haven't been able to reproduce it either. But given that you can only get it to happen randomly, my guess is that there's a slight timing issue somewhere. Maybe you've got some code written sequentially that should really be using callbacks (say from one of the animations or ajax calls, etc), meaning that it works sometimes if everything loads a bit slowly, but if it happens fast then things might get out of synch. http://stackoverflow.com/questions/1242571/calling-controller-action-from-javascript/1242582#1242582 Comment by Alconja on calling controller action from javascript Alconja 2009-08-07T04:03:48Z 2009-08-07T04:03:48Z Oh. Unless you're trying to use my first example, but you've got your javascript declared in a different scope to wherever your <code>item</code> is. In which case the second version should still work (using your original <code>Html.ActionLink</code>). http://stackoverflow.com/questions/1242571/calling-controller-action-from-javascript/1242582#1242582 Comment by Alconja on calling controller action from javascript Alconja 2009-08-07T04:01:32Z 2009-08-07T04:01:32Z ...well that bit's your code, I just copied it from your question. http://stackoverflow.com/questions/1230749/default-ahover-overriding-ones-with-classes-ie6 Comment by Alconja on default a:hover overriding ones with classes ie6 Alconja 2009-08-05T01:50:26Z 2009-08-05T01:50:26Z It should show you in firebug what's overriding it (it'll be somewhere higher in the Style section) http://stackoverflow.com/questions/1226144/firebug-net-panel-logs/1226237#1226237 Comment by Alconja on Firebug Net Panel Logs Alconja 2009-08-04T12:39:33Z 2009-08-04T12:39:33Z Just had a look at that &quot;Firebug Net Panel History Overlay&quot; extension, since I hadn't heard of it... unfortunately it looks like it hasn't been updated in over a year &amp; doesn't work with the current versions of Firebug... unless you know where's there's a newer version? http://stackoverflow.com/questions/1204110/how-to-displayblock-a-tag-with-div/1204199#1204199 Comment by Alconja on How to display:block a tag with div Alconja 2009-07-30T03:59:36Z 2009-07-30T03:59:36Z Then maybe try adding back some of the hacks you had, but apply them to the <code>.wraptocenter a</code> instead of to the div itself...