Hi,
Hope this will solves one of your problem.
// Enable TABBED navigation mode
widget.setNavigationEnabled(false)
// Enable CURSOR navigation mode
Type: Posts; User: raghava.chinnappa; Keyword(s):
Hi,
Hope this will solves one of your problem.
// Enable TABBED navigation mode
widget.setNavigationEnabled(false)
// Enable CURSOR navigation mode
Hi,
Curent Contact-SAPI support is not having the key/value pair for thumbanails/photos attached. May be in the next release they can support.
Thanks,
Raghava
Hi,
The response object from the XmlHttpRequest has these properties
// String version of data returned from server
XmlHttpResponse.responseText
// DOM-compatible document object of...
@Moderator: This is repeated entry, please delete this reply
Hi,
Thumb-rule while creating the widget-UI advised not to use multiple pages for multiple views in the application
Generally, will have each page for each view. Rather doing that way, divide...
This is due to Same-Origin-Policy with the Firefox browser.
Add these lines
// Enable Universal Browser Read
if (netscape.security.PrivilegeManager.enablePrivilege) ...
Hi shixiong,
If I understood your problem correctly, your program work like this.
// Ajax request to get the value from Internet server
A = getValueFromServer();
// continue add
Try this code, it may helps you.
// check the orientation, on every window.resize event occurs
window.onresize = checkOrientation;
function checkOrientation()
{
// Portrait mode...
Hi,
if you're facing issue with the AJAX requests handling in firefox.
option-1:
Get GreaseMonkey + XMLHttpRequest Bypass script hack
If this doesn't works for try next option
...