AJAX Toolkit and Chrome/Safari Issues
Hi all,
Wondering if someone has come across this issue.
I am using the ajax toolkit to display a modal popup window in which the user can select from a list box value(s) and the submit from the modal popup.
In IE and FF, the user can select as many of the list box items as they want after the popup window, no problem. But in Chrome and Safari, the user can't select the items. They can see the modal popup, they can scroll down the list box, they can click submit, but none of the list items can be selected.
Has anyone encountered this and if so, were you able to resolve the issue?
Thanks,
J
Re: AJAX Toolkit and Chrome/Safari Issues
Can't say that i have but if it is an Ajax problem maybe there is some issue with the webkit of safari(anyhow Safari?Whoever uses safari deserved to be punished with problems).Try importing this on a js file:
Code:
Sys.Browser.WebKit = {}; //Safari 3 is considered WebKit
if( navigator.userAgent.indexOf( 'WebKit/' ) > -1 )
{
Sys.Browser.agent = Sys.Browser.WebKit;
Sys.Browser.version = parseFloat( navigator.userAgent.match(/WebKit\/(\d+(\.\d+)?)/)[1]);
Sys.Browser.name = 'WebKit';
}
Re: AJAX Toolkit and Chrome/Safari Issues
Honestly as much as I do like Apple products, I'm less concerned about Safari than I am with Chrome. Any suggestions for Chrome?
Re: AJAX Toolkit and Chrome/Safari Issues
This should work for chrome also if it works at all.
Re: AJAX Toolkit and Chrome/Safari Issues
I put that code into my master page as javascript and it didn't like it. Kept telling me Sys is undefined
Re: AJAX Toolkit and Chrome/Safari Issues
Put it in a js file and scr it to the page.