
dgrid Print Shim
Feb 2nd
If you need to print a dgrid, you can query the store and create an HTML table with JavaScript.
Create and work with the dgrid as usual, but add a second div below it which will contain the table.
<div class="no-print" id="grid"></div… more »

HTML5 input tag required and placeholder shim for IE
Jan 23rd
Two of the nice HTML5 attributes for input tags are required and placeholder.
http://www.w3schools.com/html5/att_input_required.asp
http://www.w3schools.com/tags/att_input_placeholder.asp
Unfortunately, IE doesn't support them. This code snippet… more »

Constructing targetted CSS
Dec 21st
I am working on a page with a responsive design. The page is really two pages, assembled with PHP. This allows the content and functionality to be reduced for smaller mobile devices, and enhanced for tablets and desktops.
In order to provide consiste… more »

eZ Publish - LiteSpeed - Conditional header
Nov 14th
I have an eZ Publish site, running in host access mode, with three subdomains, admin, mobile and down.
I don’t want the subdomains to be indexed by search engines, and I especially want to keep the admin interface out of the search engines.
Some… more »

Deny Access Based on Accept-Language Header
Sep 15th
It can be difficult to determine the source of a request to a server. You can use geolocation to lookup an IP address, one excellent service is IP2Location.
However, if the goal is to deny access to servers from outside the country, language may be… more »