Tagged Questions
The shim tag has no wiki summary.
11
votes
7answers
14k views
iframe shimming or ie6 (and below) select z-index bug
uhm im not sure if anyone has encountered this problem
a brief description is on IE6 any <select> objects get displayed over any other item, even div's... meaning if you have a fancy javascript ...
7
votes
3answers
1k views
Windows: How to create custom appcompat shims (Application Fixes)?
Windows has the capability to apply shims to mis-behaving applications. Shims are used to intercept API calls and change it. For example, shims can be used to:
change the incoming paramters
lie ...
5
votes
1answer
336 views
What is the difference between a shim and a polyfill?
Both seem to be used in web development circles, see e.g. HTML5 Cross Browser Polyfills, which says:
So here we're collecting all the shims, fallbacks, and polyfills...
Or, there's the es5-shim ...
4
votes
2answers
74 views
How to provide ES5-shim?
ECMAScript Fifth Edition (released December 2009.) introduces a bunch of new methods (see this table for details). However, there still are older browsers out there which do not implement those new ...
4
votes
1answer
2k views
HTML5 shim fallback? [closed]
Possible Duplicate:
HTML5 in IE6 when JavaScript is disabled
I've heard a lot of talk about using HTML5 now and just relying on a javascript shim as a fallback for < IE8. But what ...
3
votes
2answers
436 views
Is there a way to hook or intercept CoGetClassObject and/or CoCreateInstance calls?
I'd like to intercept the COM CoCreateInstanceEx and/or CoGetClassObject functions to replace a class with a testing shim in a unit test. This will only be for a single CLSID; all others can go ...
2
votes
1answer
58 views
cross browser compare document position
DOM4 compareDocumentPosition
I want to implement compareDocumentPosition. Resig has made a great start at doing just this. I've taken his code and neatened it up
function ...
2
votes
3answers
421 views
Win32: Suggestions for manifested app's testing vs deployment
Starting with Windows Vista, Microsoft added a class of compatibility shims that will allow an application that assumes it has administrative file and registry access to continue to function.
In ...
2
votes
2answers
3k views
jQuery: Problem with windowed controls in IE6
I have a web page which contains a select box. When I open a jQuery Dialog it is displayed partly behind the select box.
How should I approach this problem? Should I hide the select box or does ...
1
vote
0answers
142 views
HTML5 placeholder shim - bugged in IE/FF
This will be a fairly long question. I'm in the middle of developing a modernized personal-use framework and (surprise) find an error in browsers with this:
The HTML5 Placeholder shim (raw code URL):
...
1
vote
1answer
79 views
Is there any benefit of using html5shim library over document.createElement('header')?
What is difference between using
<!--[if IE]>
<script>
document.createElement('header');
document.createElement('footer');
document.createElement('section');
...
1
vote
2answers
194 views
Masking a plugin (or applet) to show html content over it in Chrome on the Mac
For all other browsers that I've tried in both Windows and MacOSX (including Chrome under Windows) using an "iframe shim" works fine. However, I have not been able to get iframe shims to work over our ...
1
vote
0answers
172 views
What todo to force XP shim in Vista
In Vista, we can create a shimming .sdb file to force e.g. XP compatibility.
You can also do some stuff in a manifest file you embed in your executable.
Are there any command line options or ...
1
vote
1answer
487 views
User Defined Functions in Automation Addin behave differently Excel 2007
I have created an automation addin in C# .NET and have a shim dll for it. The
shim dll has all the User Defined methods in it that calls the appropriate
methods in the .NET assembly.
The problem ...
0
votes
1answer
86 views
Create a shim overlaying the entire page, but allowing mouseover events in the background
I need to create a shim for the entire page to capture click events, but the shim must not stop other events like mouseover etc on the other html elements on the page.
I have solution that sort of ...
0
votes
1answer
152 views
How to export an application and its SHIM in a MSI package…?
I have an application(.exe) and its SDB file, and now I want to bundle it into an MSI package for deployment as a installer. How can I create the msi package? Are there any tools? can it be done in ...
0
votes
2answers
509 views
Have you ever used IFrame Shims on UL tags?
I ahve a menu structure that uses UL and LI elements to drop down from a main menu. The problem i am having (of course) is in IE6 where the menu drops behind SELECT elements despite the z-index. I ...