I've run up across a problem with ASP.NET AJAX (hooked up to WebServices directly) and accessing our site through a WebSeal junction.
Listing 11. On this page; http://www.ibm.com/developerworks/tivoli/library/t-ajaxtam/index.html explains that requests to pages which do not result in a content type of text/html are not sent with cookie...
Hello!
I'm seeking for solution how to isolate widget included by partial to main site. Issue appear when user access site with https. Ie 6,7 shows security confirmation dialog (part of website resources are not in secure zone).
First of all I download twitter widget on our side, also I download all CSS and pictures. Then I patched widg...
$('#com_form').submit(function(){
var ele = $(this);
$.post("includes/agenda_com.php",
{
texte : ele.find('textarea').val(),
id : ele.find('#agenda_id').val();
},
function(data){
if(data=='foo')
{
alert("Erreur ! votre commentaire n'a p...
hi,
in my web page i want to place the ajax Dropdownexteder. but it is not working fine this is my code:
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:Label ID="lbldrp" runat ="Server" Text ="MyDropDown"></asp:Label>
<asp:Panel ID="Myp...
Prototype stores the number of active AJAX requests in Ajax.activeRequestCount. Is there something similar in jQuery/Mootools etc or something that can be used from XMLHttpRequest?. Ideally I need a library independent method of detecting the number of active AJAX requests within a page. If not, a method for each library would suffice.
...
I'm implementing a service in WCF and need to have custom user authentication, by means of a username/password. This service is configured as a WebScript(JSON) service.
I would like to know if it's possible to obtain a security context so I don't have to include a hash or user/pass in every call. I know I can use a certificate for this,...
I am running into an issue with running javascript from an external javascript file inside of an UpdatePanel. I am trying to get a color picker working inside of a ListView. The ListView is inside of an UpdatePanel.
I am using this color picker.
Here is what I have narrowed it down to:
If I use the color picker on a textbox outsid...
Basically, I have something like this:
$.ajax({
type: "GET",
url: "my_url",
cache: true,
success: function(data) {
/* code here */
},
dataType: 'json'
});
This code is working in all tested browsers (IE7/8, chrome, safari, firefox) but in IE6 the success function is no...
Hello,
I want a horizontal reorderlist similar to ajaxcontrol toolkit reorderlist, issue with this list is that it shows only vertical data but i need horizontal data like in datalist repeated direction as horizontal i want to reorder two items with each other.
...
I reasearch modern Ajax Grids capable of grouping rows by fields (into collapsible sections), in a manner similar to ExtJs Grid grouping. Important requirements to such a grid is not only grouping, but grouping (sorting) by multiple fields, e.g. by country and gender. Ideally user needs to be able to select fields to group by (sort by) d...
Hello,
I am looking for some help autosaving tinyMCE. I want to save the content within tiny into its respective textarea after content has been updated. So that when I make an ajax call the content is in the textarea ready to be posted.
Currently I have this little bit of code but it only updates the text area when you press a butto...
Creating hover over window on thumbnails of a Flicker feed using CSS, Ajax, Javascript, in a Coldfusion environment.
...
Hello. I'm having issues with some jQuery code I have.
Using $.each I am looping through a few values and calling some php code. After this $.each loop is finished, I would like to load a div with certain content. I have tried loading the div after the $.each statement, but the load statement is still executed first, displaying the wro...
I use my PHP backend to detect Ajax like this:
$_SERVER['HTTP_X_REQUESTED_WITH'].
This gives me a reliable detection, making sure the request is Ajaxed.
How can I make sure the request came from my own domain, and not an external domain/robot?
www.example.com/ajax?true could allow anyone to make an Ajax call and cut the information.
I...
<asp:ScriptManager ID="ScriptManager1" runat="server">
<Services>
<asp:ServiceReference Path="WebService.asmx" />
</Services>
</asp:ScriptManager>
<script type="text/javascript">
WebService.GetUpdate("hhh",OnComplete, OnTimeout, OnError);
</script>
this code is working ...
I observed chunks like below sometimes on web pages. So i am curious to know what this really does? or why its written in such a way?
<script src="somefile.js?param1=one¶m2=two" />
i can only make out following few intentions behind it
Its not page URL (i mean .aspx/.php/.jsp etc.) so its not hacking kind of code where user can ...
Hello,
I am having "fun" with google maps and was after some assistance. Basically I have a small block of HTML/Javascript which can be loaded into a standard HTML page or into a div using Ajax. All I am attempting to do at present is get the map to appear. When the page loads as part of the HTML it is fine, appears, sings, dances and o...
What I am trying to Do is accessing Page Controls at Page_Load, and make a database query, and make controls visible or not visible.
Here is the Code
foreach (Control thiscontrol in ContentPlaceHolderBody.Controls)
{
try
{
if (thiscontrol.ID.Contains("TextBox") || thiscontrol.ID.Co...
How do I pass a a large string containing characters like '%' and '&'
to my php page through ajax post?
In other words how to javascript-encode them and php-decode them?
...
If I want to implement Ajax and have the back/forward button and also a unique URL for everything fully working, should I use Google Web Toolkit or really simple history?
Do they provide both these things?
It would be nice if someone with experience from these tools could share your thoughts.
EDIT: is there a difference between Google...