We are running our web page using https and some of the grid pages are executing as http. The results are it violates the cross domain restrictions that most browsers are enforcing. Is there a setting to propagate the source URL to be used throughout the grid including the https protocol?
Thanks
1 Answers
By default grid uses same protocol for ajax that is used when loading page.
You can also specify:
$opt["url"] = "https://…………………..page.php";
$g->set_options($opt);
This way, it will be forced to use that url for ajax calls.
Your Answer