The Navigator object contains information about the visitor's browser name, version, and more.
1
vote
2answers
5k views
How to get jqGrid reload to go to server?
We use the jqGrid navigator reload button on a grid with loadonce set to true.
The reload button currently does NOT go back to the server to get the data - how can we get the reload to go to the ...
1
vote
1answer
2k views
jqGrid navigator - how to specyfy settings globally?
I'm using Navigator with jqGrid and I'm repeating over and over settings such as:
savekey: [true, 13],
closeOnEscape: true,
closeAfterAdd: true
How can I define these settings globally to all my ...
5
votes
4answers
3k views
Determine whether client browser has java installed and can launch applets
I am developing an .aspx page which will ultimately launch an applet after the user clicks on a button (I am using the <applet> tag). So, I would like to detect if java is enabled/installed on ...
2
votes
1answer
2k views
Flex - how to make a tabbed panel
My app has 3 categories of buttons, I want to have a tabbed panel I can use to switch between the 3 categories like in this example:
My app is a mobile app though so I can't use mx components. When I ...
5
votes
2answers
3k views
Android - Distance between two Cities
I need in my Android Application the Distance and the Driving Time between Two cities.
Is there a possibility to calculate this things for example via Google Navigator or Google Maps? (the driving ...
1
vote
2answers
6k views
Launching Google Maps and Navigator from Android App
I have an android application which allows the user to open up google maps or navigator to show a certain address. This functionality was working in the past, but now I get the following error and ...
5
votes
2answers
6k views
why Does “navigator.userAgent” in javaScript returns the String “Mozilla” when tried in a google chrome borwser?
Im developing a javaScript code and I want to determine the version and brand of the client's browser, here's the piece of code I'm using to do so :
var browserName ;
function BrowserCheckin ()
{
...
2
votes
1answer
1k views
html navigator “User denied Geolocation”
I have an issue with window.navigator, I'm getting error code 1, "User denied Geolocation" whenever I run the following code as a local html file:
...
2
votes
1answer
1k views
where is the RESOURCES folder in the new xCode4.2
I can't seem to find the Resources folder in the new xCode4.2 project navigator
where do i put the image resources for my app icon in this new xCode4.2?
Here is a screenshot:
0
votes
1answer
573 views
Saving variables outside of navigator.geolocation.getCurrentPosition? (javascript)
I'm trying to play with the scope of js to pull a variable out of navigator.geolocation.getCurrentPosition
var lat;
function callback (position) {
lat = position.coords.latitude;
}
...
1
vote
2answers
1k views
What's the point of the javascript navigator.javaEnabled function?
The navigator object has a javaEnabled function that indicates if the browser has javascript support.
This seems to be a little odd:
If JS is indeed enabled the function
will return true, well ...
0
votes
0answers
277 views
spoofing JS Navigator Object response in the WebBrowser Control?
I'm trying to figure out how to change the info returned by the JavaScript navigator object such as AppName. I can't find any info on where JS actually gets this info from so I have no idea how to ...