Package org.apache.wicket.core.request

Examples of org.apache.wicket.core.request.ClientInfo


    @Override
    protected void onBeforeRender() {
        /* IE5/6 can't do li:hover, so we need some javascript, see below */

        if (!this.browserDetected) {
            ClientInfo ci = WebSession.get().getClientInfo();
            if (ci instanceof WebClientInfo) {
                ClientProperties properties = ((WebClientInfo) ci).getProperties();
                if (properties.isBrowserInternetExplorer()) {
                    if (properties.getBrowserVersionMajor() < 7) {
                        this.browserIsIe56 = true;
View Full Code Here

TOP

Related Classes of org.apache.wicket.core.request.ClientInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.