Mike Blandford

630
Reputation
79 views

Registered User

Name Mike Blandford
Member for 1 year
Seen 2 hours ago
Website
Location Indianapolis
Age
2nd year Software Engineer
2h
answered SWFUpload on HTTPS not working
5h
answered Does anyone know where I might find a file based multi-way B-Tree Class for c#?
Nov
11
answered JavaScript: document.getElementById slow performance?
Nov
11
comment JavaScript: document.getElementById slow performance?
In IE, the redraw is immediate. I'm not sure about other browsers
Nov
11
comment JavaScript: document.getElementById slow performance?
Browser redraws definitely can be a performance problem. Even if you only set the style once per element, that's one browser redraw per element. I've actually optimized this before by removing a table from the dom, modifying a bunch of its cells, and then re-adding it to the dom so there would only be 1 redraw.
Nov
11
comment JavaScript: document.getElementById slow performance?
That link doesn't apply. It's using document.Images not document.getElementById
Nov
11
answered JavaScript: document.getElementById slow performance?
Nov
10
asked Silverlight background thread to measure height
Nov
7
accepted C# Silverlight WebClient get Content-Type of Response?
Nov
2
answered How to play mp3 stream using MeidaElement class from WPF?
Nov
2
comment Best approach to animate physics in Silverlight?
That's what I would do - it seems the easiest.
Nov
1
revised how to properly use quotes in javascript
deleted 386 characters in body
Nov
1
revised how to properly use quotes in javascript
added 330 characters in body; added 164 characters in body
Nov
1
answered how to properly use quotes in javascript
Oct
26
comment Silverlight changes the io.Stream to byte[]
Why do you want this? Are you trying to get an upload progress bar?
Oct
26
comment UpdateProgress and FileUpload problem
try using IE Developer Toolbar or Firebug
Oct
26
answered What We Most Need In a Language
Oct
26
answered What We Most Need In a Language
Oct
26
comment Print content of JavaScript object?
Might want to add if (o.hasOwnProperty(p)) inside the loop
Oct
23
answered As a Software Engineer, what would you look for in a Software Company before joining it ?
Oct
23
comment Strange problem with JavaScript code.
that depends on where you do it.
Oct
23
comment Strange problem with JavaScript code.
It would be document.getElementsByName("foo")[0]. "getElementByName" is not a function
Oct
23
answered Strange problem with JavaScript code.
Oct
21
revised Scope of JavaScript Variables
deleted 111 characters in body
Oct
21
comment Scope of JavaScript Variables
I tested this and it's correct.
Oct
21
answered Scope of JavaScript Variables
Oct
17
awarded  Yearling
Oct
16
comment Javascript BigDecimal library?
wow, BigNumber uses a "with" statement. First time I've seen that apart from reading about it in the "bad practice, never use" section of a js book. I like that that source is so small on BigNumber. If I decide to use BigDecimal I'd spend some time refactoring it. It looks like a lot of the 160k is comments anyway.
Oct
15
revised Most Efficient way of Filtering an Html Table?
added 368 characters in body
Oct
15
answered Most Efficient way of Filtering an Html Table?
Oct
14
accepted populate selectlist with json data in JQuery when the selectlist is loaded (not the document)
Oct
14
comment populate selectlist with json data in JQuery when the selectlist is loaded (not the document)
added as a new answer so i could put in code blocks
Oct
14
answered populate selectlist with json data in JQuery when the selectlist is loaded (not the document)
Oct
14
comment populate selectlist with json data in JQuery when the selectlist is loaded (not the document)
You should be able to go to /Controller/GetFileCategories in your browser and see what the JSON looks like. If you post that I can probably help
Oct
14
comment populate selectlist with json data in JQuery when the selectlist is loaded (not the document)
Does the ajax response change between clicks? If not, I would make the ajax call on document ready, store the response in a variable, and when the user clicks on the #moreFiles, then populate the select there.
Oct
14
comment populate selectlist with json data in JQuery when the selectlist is loaded (not the document)
Select elements don't have an onload event. You'll have to use a selector
Oct
14
revised populate selectlist with json data in JQuery when the selectlist is loaded (not the document)
added 42 characters in body; added 97 characters in body; added 4 characters in body
Oct
14
comment populate selectlist with json data in JQuery when the selectlist is loaded (not the document)
So does each select list make a separate ajax call or do they all get the data from the same one?
Oct
14
comment populate selectlist with json data in JQuery when the selectlist is loaded (not the document)
The idea is that when document ready fires, it makes the ajax call, and then in the callback it selects all the <select> elements on the page, clears them, and populates them with the callback data.
Oct
14
comment populate selectlist with json data in JQuery when the selectlist is loaded (not the document)
$(function(){}) is the same as $(document).ready(function(){}). So this hooks up everything in the ready handler, no need for $.fn extensions.
Oct
14
revised populate selectlist with json data in JQuery when the selectlist is loaded (not the document)
added 21 characters in body; added 112 characters in body
Oct
14
comment populate selectlist with json data in JQuery when the selectlist is loaded (not the document)
I assume your clear select selects all select elements and clears them and returns the jQuery result set
Oct
14
answered populate selectlist with json data in JQuery when the selectlist is loaded (not the document)
Oct
12
accepted Jquery - Focus on an input field in a form on pageload?
Oct
12
comment JavaScript - How do I call a function from a string name and pass an array object?
Yeah, if you define it as a global function then you use window[]. If you define it on an object prototype referred to by me, then you use me[]
Oct
12
accepted JavaScript - How do I call a function from a string name and pass an array object?
Oct
12
revised Detecting multiple simultaneous keypresses in C#
added 396 characters in body
Oct
9
comment JavaScript - How do I call a function from a string name and pass an array object?
window[get_formatFunction()] will work if the function is defined in global scope. It might have been defined as an object prototype.
Oct
9
answered JavaScript - How do I call a function from a string name and pass an array object?
Oct
9
answered Detecting multiple simultaneous keypresses in C#