Tag Archives: javascript

Solved: IE encounters ERROR_INTERNET_INCORRECT_HANDLE_STATE when opening a popup window

One of our engineers asked me to take a look at a bizarre problem in an application.  When accessing the application using IE8, they would click a link that opens a popup window.  Rather than the popup window loading, the … Continue reading

Posted in Uncategorized | Tagged , , | 3 Comments

HTML Shortcut: Dynamically populate a select list drop down when it is first clicked

e were recently making some modifications to a configuration options page.  The page was set up a type of table, where each record had its own row, and each column represented a different type of data that could be edited.  … Continue reading

Posted in Uncategorized | Tagged , , , | 2 Comments

HTML Shortcut: Dynamically switch to RTL mode based on the opener #localization #l10n

As we were working on adapting one of our applications to support right-to-left (RTL) languages like Hebrew and Arabic, we tripped over an issue with a static HTML document. Changing a page to by RTL is pretty easy.  You can … Continue reading

Posted in Uncategorized | Tagged , , | Leave a comment

Solved: Printing using CTRL+P stops working in IE8 on Windows 7 after modifying security settings

Many of our customers are large, global organizations with hundreds of thousands of employees and thousands of locations.  With such a vast infrastructure, their IT organizations take great pains to keep their computers stable and secure.  While in theory only … Continue reading

Posted in Uncategorized | Tagged , , , | Leave a comment

Performance: Yes, time-taken in IIS includes network time

I’ve written previously about many of the useful types of analysis you can perform using the time-taken field in your web logs.  However, I would be remiss for not pointing out some limitations of the data it provides. When poring … Continue reading

Posted in Uncategorized | Tagged , , , | 1 Comment

Performance Tuning: Clear hidden form variables to avoid unnecessarily large post backs #browser #html #javascript

To create rich web applications, it is fairly common to encode data in JSON on the server and then manipulate it using javascript on the client.  For example, when creating a rich Datatable in YUI, rather than rendering the data … Continue reading

Posted in Uncategorized | Tagged , , , | 4 Comments