Alconja
|
Registered User
|
|
|
Nov 16 |
comment |
Spring.NET & Constructor Interceptors No. Unfortunately the functionality just isn't in the current version (nor in the up coming 1.3), & I never found a better work around than what I mentioned above. |
|
Nov 5 |
accepted | implementation of composition and aggregation in C#? |
|
Oct 10 |
accepted | find referring page in asp.net mvc after a jquery redirect |
|
Oct 1 |
answered | Changing fill color of MovieClip Actionscript 3 |
|
Aug 25 |
comment |
Is there such a thing as too many $(document).ready handlers (IE)? Another tip with JavaScript code is to run it through something like JSLint to help pick up potential syntax issues. (jslint.org) |
|
Aug 25 |
answered | How to recognize a wrong from a correct design ? |
|
Aug 25 |
accepted | Is there such a thing as too many $(document).ready handlers (IE)? |
|
Aug 25 |
answered | Is there such a thing as too many $(document).ready handlers (IE)? |
|
Aug 22 |
accepted | a glitch in dragging sortable by handle in jquery ui |
|
Aug 21 |
awarded | ● Nice Answer |
|
Aug 21 |
comment |
Css fixed display not working in IE6 Not the best page to be linking to when arguing browser usage numbers... as they say themselves at the bottom: "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." |
|
Aug 19 |
comment |
Resharper run all unit tests in a project or solution at once . I use CTRL+T, CTRL+T to run tests based on context (current test/fixture); CTRL+T, CTRL+D to debug based on context; CTRL+T, CTRL+S to run tests for the solution & CTRL+T, CTRL+E to re-run the existing test session... I find holding CTRL & hitting TT or TS quicker & easier than typing out RUN (which needs two hands), but each to their own... (it is cool that they got the menu alt-keys to spell out RUN though). |
|
Aug 13 |
comment |
Background animation problem with jQuery :) Cheers. I just hope you can get it fixed... I know how weird/annoying/hard-to-reproduce browser specific bugs like this can be. |
|
Aug 12 |
comment |
Background animation problem with jQuery 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? |
|
Aug 11 |
answered | Web Deployment Project: Publish without Precompilation |
|
Aug 11 |
comment |
Why does Intellisense not work when using render blocks on an HTML attibute with double quotes? 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 (jetbrains.com/resharper) provides. |
|
Aug 7 |
accepted | calling controller action from javascript |
|
Aug 7 |
comment |
Background animation problem with jQuery Ah yes, I've seen it now (was using Fx3.5, but just tried it in Safari). Visually it looks like the #main-container'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?) |
|
Aug 7 |
comment |
Background animation problem with jQuery I believe I reproduced it once. It looked like the div.main-container changed colour properly, but the body hadn't... Could it have anything to do with the fact that you're doing: $('#main-container').css('background', backgroundFadeTo); explicitly in the updatePage function (in the animate's callback) but don't do the same to $("body")? |
|
Aug 7 |
answered | Background animation problem with jQuery |
|
Aug 7 |
comment |
Background animation problem with jQuery 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. |
|
Aug 7 |
revised |
calling controller action from javascript added 67 characters in body |
|
Aug 7 |
comment |
calling controller action from javascript Oh. Unless you're trying to use my first example, but you've got your javascript declared in a different scope to wherever your item is. In which case the second version should still work (using your original Html.ActionLink). |
|
Aug 7 |
comment |
calling controller action from javascript ...well that bit's your code, I just copied it from your question. |
|
Aug 7 |
answered | calling controller action from javascript |
|
Aug 6 |
answered | a glitch in dragging sortable by handle in jquery ui |
|
Aug 5 |
accepted | How to highligh the row and column of a table when over a cell using jQuery? |
|
Aug 5 |
answered | How to highligh the row and column of a table when over a cell using jQuery? |
|
Aug 5 |
comment |
default a:hover overriding ones with classes ie6 It should show you in firebug what's overriding it (it'll be somewhere higher in the Style section) |
|
Aug 4 |
comment |
Firebug Net Panel Logs Just had a look at that "Firebug Net Panel History Overlay" extension, since I hadn't heard of it... unfortunately it looks like it hasn't been updated in over a year & doesn't work with the current versions of Firebug... unless you know where's there's a newer version? |
|
Aug 4 |
answered | Firebug Net Panel Logs |
|
Aug 4 |
answered | Why do they make stuff so complicated? |
|
Aug 4 |
revised |
How to check that current type (object of Type) has needed interface (or parent type) clarified example |
|
Aug 4 |
answered | How to check that current type (object of Type) has needed interface (or parent type) |
|
Aug 4 |
answered | Tips for programming in 5 min segments? |
|
Jul 31 |
answered | jQuery find() only working once on AJAX result? |
|
Jul 31 |
revised |
JQuery / JCarousel: Using WrapInner and nth selectors to only wrap every 8th item adding explanation |
|
Jul 31 |
answered | JQuery / JCarousel: Using WrapInner and nth selectors to only wrap every 8th item |
|
Jul 30 |
accepted | CSS Set Table Cell Background Color Using Text Inside Table Cell |
|
Jul 29 |
revised |
CSS Set Table Cell Background Color Using Text Inside Table Cell typo |
|
Jul 29 |
answered | CSS Set Table Cell Background Color Using Text Inside Table Cell |
|
Jul 29 |
accepted | Get VirtualPath of a View using ViewContext |
|
Jul 29 |
comment |
Help with Javascript to JScript Conversion Although that being said, you can still give the .exe produced from jsc gibberish-aes.js to reflector which you mentioned is what you were planning on using it for anyway. Although looking at it, its a pretty ugly mess of anonymous methods & closures, so not sure if it'll be of much use to you. |
|
Jul 29 |
comment |
Help with Javascript to JScript Conversion Ok, scratch that... I get the error you report if I include the /target:library switch. |
|
Jul 29 |
comment |
Help with Javascript to JScript Conversion When I compile the linked .js file using jsc gibberish-aes.js (reports as compiler version 8.00.50727 for .NET version 2.0.50727), I get two different errors (gibberish-aes.js(834,13) : error JS1135: Variable 'totalChunks' has not been declared and gibberish-aes.js(882,25) : error JS0438: Object doesn't support this property or method). After fixing those, it compiled ok for me... |
|
Jul 29 |
comment |
Help with Javascript to JScript Conversion I don't have an answer, but I'm just curious why you can't just use HTTPS to deal with encryption between client & server? |
|
Jul 28 |
comment |
Why wasn’t there a lawsuit about JavaScript using the Java name? Given this is CW & in the interest of having one true answer, I merged in some other quotes. Hope you don't mind Jon... |
|
Jul 28 |
revised |
Why wasn’t there a lawsuit about JavaScript using the Java name? Added more detail & quotes |
|
Jul 28 |
revised |
Get VirtualPath of a View using ViewContext clarification |
|
Jul 28 |
answered | Get VirtualPath of a View using ViewContext |
