In a web page i have two select box, after select a value from first select box the second select box if fill by java script or may be Ajex. but in my UIWebView the second select box is not fill. so please help me. this is work well in safari web browser.
- (void)viewDidLoad {
[super viewDidLoad];
[myWebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:urlStr]]];
}
-(void)webViewDidStartLoad:(UIWebView *) portal {
[UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
}
-(void)webViewDidFinishLoad:(UIWebView *) portal{
[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
}
- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error
{
NSString *userInfo = [[error userInfo] objectForKey:NSURLErrorFailingURLPeerTrustErrorKey];
NSLog(@"Connection failed! Error - %@ %@",[error localizedDescription],userInfo);
UIAlertView *alerView = [[UIAlertView alloc] initWithTitle:[error localizedDescription] message:userInfo delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil,nil];
[alerView show];
[alerView release];
[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
}