This forum is closed to new posts and responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:

HCL Software Customer Support Portal for U.S. Federal Government clients
HCL Software Customer Support Portal



Feb 22, 2011, 8:11 PM
2 Posts

Not working in Chrome or Firefox on Ubuntu

  • Category: Forum design
  • Platform: All
  • Release: 8.5.2
  • Role: Developer
  • Tags: Browsers
  • Replies: 4
I found that I can't log-in using chrome and that with Firefox 3.6 I can't create a response after I have logged in.
 
The Views also show up differently for each.
 
I had to resort to using FireFox on Windows to write this.
Feb 22, 2011, 8:07 PM
13 Posts
Re: Not working in Chrome or Firefox on Ubuntu
 works on win 7, though i seemed to have that issue with the beta forum for a long time, even worked on a vm.  I guess you cant blame Microsoft for this one ;-)
Feb 22, 2011, 8:32 PM
11 Posts
iPad can logon but not edit rich text field
 Log on is OK but this field (rich text) is impossible to edit on the iPad. 
Writing this on Safari on Mac. Is the Safari browser on iPad different from on the Mac? 
Feb 22, 2011, 8:34 PM
13 Posts
Re: iPad can logon but not edit rich text field
iPads can not use any rich text field, as rich text fields are actually a iframe, and you can get focus on an iframe via touch.  I dont know of any mobile touch browser that can do this, but maybe someday soon.
 
The fix is to detect the browser and present a text field instead to mobile browsers and set the richtext source to that on save 
Feb 24, 2011, 12:27 PM
6 Posts
Chrome - not supported
Chrome is currently not supported.
 
However, client side login is working for us, from client js.

var oData = {};
    dojo.xhrGet({
        url: _sClearSessionURL,
        load: function (data) {
        },
        error: function (error) {
        }
    });
    var oData = new Array();
    oData['username']= document.getElementById(_sUsernNameField).value;
    oData['password']= document.getElementById(_sPasswordField).value;
    oData['redirectto']= '\/icons\/view.gif';
    dojo.xhrPost({
        url: _sServerLoginURL,
        content: oData,
        handleAs: "text",
        load: function (data) {
            if( String(data).substring(0,3) == "GIF") {
              ....
            } else {
                if ( String(data).indexOf(_sInvalidReply) != -1) {
                  ...
                } else if ( String(data).indexOf(_sEmptyReply) != -1) {
                    ...
                } else {
                    ...
                };
            };
        },
        error: function (error) {
         ...
        }
    });

This forum is closed to new posts and responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:

HCL Software Customer Support Portal for U.S. Federal Government clients
HCL Software Customer Support Portal