active questions tagged ajax - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T01:38:35Zhttp://stackoverflow.com/feeds/tag/ajaxhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1878128/prototype-ajax-updater-div-with-different-buttons0prototype ajax updater div with different buttonsguillem2009-12-10T01:32:41Z2009-12-10T01:37:01Z
<p>hello!
I'm learning it, but i cant find what's wrong in this!
I want the <code>div2</code> to get data from the form in <code>div1</code>, called <code>"formulario"</code>.
I would like to know which item is selected and which button was clicked.</p>
<p>HTML:</p>
<pre><code><script src="utils/Scripts/prototype.js" type="text/javascript"></script>
<script type="text/javascript">
function sendf(formul, divi, php)
{
var params = Form.serialize($(formul));
new Ajax.Updater(divi, php, {method: 'post', parameters: params, asynchronous:true});
}
</script>
</head>
<body>
<div id="div1">
contenido div1
<form id="formulario" method="POST">
<select size="3" id="lista" onchange="sendf('formulario', 'div2', 'prodiv1.php');">
<option>elemento 1</option>
<option>elemento 2</option>
<option>elemento 3</option>
</select>
<input type="button" id="b1" value="bot1" onclick="sendf('formulario', 'div2', 'prodiv1.php');" />
<input type="button" id="b2" value="bot2" onclick="sendf('formulario', 'div2', 'prodiv1.php');" />
</form>
<div id="div2" style="background: blue;">
contenido div2
</div>
</div>
</body>
</html>
</code></pre>
<p>prodiv1.php:</p>
<pre><code><?
echo 'exec: prodiv1.php<br>';
print_r($_POST); //doesnt work: returns null array
echo serialize($_POST); //same
if (isset($_POST))
{
foreach ($_POST as $key=>$value)
{
echo $key.'=>'.$value."<br>";
}
}
echo "select: ".$_POST['lista'];
if (isset($_POST['b1'])) {echo 'click: boton1';} else {echo 'click: boton2';}
?>
</code></pre>
<p>I've tried a lot of things, and seen that it could be done with event observers, http requests and such, but what i need is quite easy, and probably there's an elegant way to solve it.</p>
<p>Thank in advance for any help!
Have a nice day.
guillem</p>
http://stackoverflow.com/questions/1871964/how-to-add-google-autocomplete-autosuggest-feature-in-rails-using-google-ajax-ap0How to add Google AutoComplete/AutoSuggest feature in rails using Google Ajax API ?Srinivas Iyer2009-12-09T06:26:09Z2009-12-10T01:09:14Z
<p>I have successfully integrated google ajax search with rails application .
Does Google Ajax Search Api provides api for autocomplete/autosuggest feature in rails application ? . Is there a way to integrate google search autocomplete feature in Rails ?</p>
<p>Any body worked on the same please share your experience . Thanks !!</p>
http://stackoverflow.com/questions/1877934/prototype-ajax-updater-div-with-different-buttons0prototype ajax updater div with different buttonsguillem2009-12-10T00:40:11Z2009-12-10T01:09:02Z
<p>hello!
i'm learning it, but i cant find what's wrong in this!
i want the div2 to get data from the form in div1, called formulario.
i would like to know which item is selected and which button was clicked.</p>
<p>main html file:</p>
<pre><code><script src="utils/Scripts/prototype.js" type="text/javascript"></script>
<script type="text/javascript">
function sendf(formul, divi, php)
{
var params = Form.serialize($(formul));
new Ajax.Updater(divi, php, {method: 'post', parameters: params, asynchronous:true});
}
</script>
</head>
<body>
<div id="div1">
contenido div1
<form id="formulario" method="POST">
<select size="3" id="lista" onchange="sendf('formulario', 'div2', 'prodiv1.php');">
<option>elemento 1</option>
<option>elemento 2</option>
<option>elemento 3</option>
</select>
<input type="button" id="b1" value="bot1" onclick="sendf('formulario', 'div2', 'prodiv1.php');" />
<input type="button" id="b2" value="bot2" onclick="sendf('formulario', 'div2', 'prodiv1.php');" />
</form>
<div id="div2" style="background: blue;">
contenido div2
</div>
</div>
</body>
</html>
</code></pre>
<p>the php file, prodiv1.php:</p>
<pre><code><?
echo 'exec: prodiv1.php<br>';
print_r($_POST);
echo serialize($_POST);
if (isset($_POST))
{
foreach ($_POST as $key=>$value)
{
echo $key.'=>'.$value."<br>";
}
}
echo "select: ".$_POST['lista'];
if (isset($_POST['b1'])) {echo 'click: boton1';} else {echo 'click: boton2';}
?>
</code></pre>
<p>i've tried a lot of things, and seen that it could be done with event observers, httprequests and such, but what i need is quite easy, and probably there's an elegant way to solve it...
i thank in advance any help!
have a nice day.
guillem</p>
http://stackoverflow.com/questions/915177/simulate-keypress-in-a-non-visible-webbrowser-object-c1Simulate keypress in a non-visible webbrowser object C#Artanis2009-05-27T11:17:31Z2009-12-10T00:16:59Z
<p>I'm currently working in an application that has to navigate a webpage and recollect data about products, prices, ... with webbrowser object in .net 3.5.</p>
<p>The problem is that the page has some fields with a suggest script in ajax, and I can't simply modify the innerText property because the script also saves codes in a hidden input field.</p>
<p>I need a way to simulate the typing in that field and then send the "Enter" key, or launch the ajax script and then send the "Enter" key, or any better ways to do this.</p>
http://stackoverflow.com/questions/1387802/ajax-queries-with-jquery0AJAX-queries with jQueryEken2009-09-07T06:22:39Z2009-12-10T00:00:01Z
<p>heya</p>
<p>I use jQuery/AJAX to send queries to MySQL. It works flawless in FF and Chrome, but in IE(7) you have to wait a couple of seconds before you change "option" in the select box. Or else no value returns. While in FF and Chrome you can do it immedadtly.
countrycodes value is set, but it dont always get to query.php.</p>
<pre><code><script type="text/javascript">
function shopQuery() {
var countrycode = $("#shopcountry").val();
if (countrycode !== "") {
$.post("query.php", {queryString: countrycode}, function(data) {
$("#shopbrand").html(data);
$("#shopbrand").show();
});
} else {
$("#shopbrand").hide();
}
}
$(document).ready(function(){
$("#shopbrand").hide();
$("#shopcountry").keyup(function() {
shopQuery();
});
$("#shopcountry").change(function() {
shopQuery();
});
});
</script>
<div class="container">
<label for="shopcountry">
<span class="label">Country:</span>
<select id="shopcountry" name="shopcountry">
<option value="">Choose a country</option>
<?php
while ($row = mysql_fetch_array($countries)) {
echo "<option value=\"".$row['countrycode']."\">".$row['country']."</option>\n";
}
?>
</select>
</label>
<div id="shopbrand" style="border:1px solid black;">
</div>
</div>
</code></pre>
<p>Hope you understand my english OK</p>
http://stackoverflow.com/questions/1877641/how-ajax-aplication-should-behave-when-javascript-is-disabled-common-practice0how AJAX aplication should behave when Javascript is disabled - common practice?spirytus2009-12-09T23:19:09Z2009-12-09T23:30:43Z
<p>I’m in the process of developing pretty basic web application, that is mostly so I could learn jQuery/ajax/php on the way (and have some fun). I want to make it as accessible to users as possible so it should work with Javascript disabled, validate to AAA and all that. With JS disabled would be of course without all the bells and whistles, but nevertheless should do the job. </p>
<p>I would like to make good use of Ajax, but I don’t fully understand how should I cope when JS is off. </p>
<p>So let’s say JS is on, user submits the form, clicks submit button and thru ajax, data is submitted to register.php (register.php is specified in forms action attribute). register.php returns data and jQuery displays appropriate message. All without reloading the page. </p>
<p>Now, if JS is disabled, submitting form to register.php won’t do much good. </p>
<p>The way I understand it, solution would be to create one php script for JS enabled, other for JS disabled. So by default form would have action attribute with <code>nonjs_register.php</code>, and if JS would be enabled, it would force the form to be submitted to <code>js_register.php</code> rather than default <code>nonjs_register.php</code>.
I can imagine that would be quite tedious to create two scripts pages for each user interaction with the application but that’s the only way I can think of at the moment. </p>
<p>I hope all that makes sense but please let me know if my explanation is not quite clear.
Now if anyone could explain to me what is the common practice to deal with that kind of problem that would be great.</p>
http://stackoverflow.com/questions/871007/exception-handling-in-ajax-calls0Exception handling in Ajax Calls.Bogdan Gusiev2009-05-15T21:49:40Z2009-12-09T23:00:01Z
<p>I have an application utilizing lots of AJAX requests (different actions are triggered via XHR requests). Some of those calls may result in exceptions. Each time I have to display an error message to the user. How can I organize error handling in this case?</p>
http://stackoverflow.com/questions/1877348/add-an-editor-control-dynamically-inside-of-a-repeater-using-ajax0Add an Editor control dynamically inside of a repeater using AJAXJoe Enos2009-12-09T22:23:40Z2009-12-09T22:54:52Z
<p>I'm looking for a way to add an Editor control (from the ASP.NET AJAX Control Toolkit) to each element of a repeater. It's working fine if I just include it in the ItemTemplate of the repeater, but my problem is that the markup it produces is massive, which slows down the page considerably (even with compression on).</p>
<p>I haven't had any luck adding the control inside the repeater item using an Update Panel - I think this is probably the preferred method, but dynamically adding a control inside an Update Panel inside of a Repeater Item isn't something I've had any success doing, and there don't seem to be any good examples of this that I can find.</p>
<p>The other alternative I considered was using PageMethods to render the control and send the HTML back to the page to let the javascript put it in the appropriate place, then deal with it, but it won't let me render the control - I get an InvalidOperationException of "Page cannot be null. Please ensure that this operation is being performed in the context of an ASP.NET request.". My guess is that all the javascript that's generated makes it so that I can't just render an Editor control on the fly.</p>
<p>Can you point me in the right direction for accomplishing this?</p>
<p>Thanks</p>
<p>EDIT: Another alternative, if it is possible, would be to put a normal Editor control in the markup of the page, then move it around inside of the repeater as needed, using javascript. I can do this with normal controls, but when I do it with an editor, it is not behaving nicely - the textbox appears, but won't let me click inside it. If you have any ideas on this one, I'd appreciate that as well. Here's the code for this:</p>
<pre><code><span id="spanHiddenEditor" style="display: block;">
<cc1:Editor ID="ed1" runat="server" Height="200" Width="400" />
</span>
<script type="text/javascript">
function createTextBox(idx) {
var span = $get("span1_" + idx); // this gets me the target location
var hiddenEditorSpan = $get("spanHiddenEditor")
var editorHtml = hiddenEditorSpan.innerHTML;
hiddenEditorSpan.innerHTML = "";
span.innerHTML = editorHtml;
}
</script>
</code></pre>
http://stackoverflow.com/questions/1876625/how-to-auto-update-a-django-page-only-when-required0how to auto-update a Django page only when required ?ssc2009-12-09T20:24:08Z2009-12-09T22:26:27Z
<p>As described in <a href="http://stackoverflow.com/questions/1836861/how-to-update-a-django-page-without-a-page-reload">http://stackoverflow.com/questions/1836861/how-to-update-a-django-page-without-a-page-reload</a>, I send periodic XMLHTTPRequests from the browser to the server using JavaScript to get those pieces of the webpage that changes during the course of my application.</p>
<p>However, most of the time, nothing changes; the server replies with the same response and the browser updates the webpage with contents that's already been there.</p>
<p>Obviously, the server should only reply if there is new data.</p>
<p>A thorough web research came up with <a href="http://ajaxpatterns.org/Periodic_Refresh#Lace" rel="nofollow">http://ajaxpatterns.org/Periodic_Refresh#Lace</a>, but dcoumentation is terse and I'm struggling to implement the concept in my Django project. I have a hard time believing this has not been done before.</p>
<p>Does anyone know any further resources I could use as guideline ?</p>
http://stackoverflow.com/questions/743449/trying-to-find-an-ajax-file-upload-solution-for-zend-framework-using-jquery1Trying to find an AJAX file upload solution for Zend Framework using jQuery...Andrew2009-04-13T09:33:17Z2009-12-09T21:34:12Z
<p>I'm trying to create an "upload file, and email as an attachment" form where the file starts uploading after it has been selected (like Gmail), before sending the email. I would also like to implement a progress bar to show the status of the upload.</p>
<p>There should be all sorts of examples out there, but I just can't find them! </p>
<p>Do you know of any examples, or tutorials, plugins, helpers, or have you done this yourself and would like to share some code samples?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1876886/casting-problem-of-star-rating0casting problem of star rating?Pankaj Mishra2009-12-09T21:07:54Z2009-12-09T21:07:54Z
<p>I have an application with ajax star rating but when i am assigning value to CurrentRating from datatable then it showing error of "Specified cast is not valid".</p>
<p>I am using this code.</p>
<pre><code><asp:TemplateField HeaderText="Rating" SortExpression="CustomerRating">
<ItemTemplate>
<asp:Label ID="Label2" runat="server" Text='<%#DataBinder.Eval(Container.DataItem, "CustomerRating")%>'></asp:Label></a>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<cc1:Rating ID="Rating1" runat="server" CurrentRating='<%# Bind("CustomerRating") %>'
StarCssClass="ratingStar"
WaitingStarCssClass="savedRatingStar"
FilledStarCssClass="filledRatingStar"
EmptyStarCssClass="emptyRatingStar"
>
</cc1:Rating>
</ContentTemplate>
</asp:UpdatePanel>
</ItemTemplate>
</asp:TemplateField>
</code></pre>
<p>Then its showing error <code>CurrentRating='<%# Bind("CustomerRating") %>' </code>.</p>
<p>I am taking refrence from these sites.</p>
<p><a href="http://forums.asp.net/t/1375683.aspx" rel="nofollow">asp.net forum</a>
<a href="http://www.codeproject.com/KB/webforms/MultiFeatureGridView.aspx?display=Print" rel="nofollow">Code Project</a></p>
<p>Same thing working on Code project.</p>
http://stackoverflow.com/questions/1876295/sychronous-ajax-call-via-jquery-returning-string0sychronous ajax call via jquery returning stringunknown (yahoo)2009-12-09T19:38:32Z2009-12-09T20:16:58Z
<p>I am making a jquery sychronous call to ajax -- with the return type set to "json" -- however the return data is comming back as a string. Is there something I'm doing wrong, or is there away to convert the string to an object?</p>
<pre><code>var ajax_response = $.ajax({url:"ajx_services", async:false, type:"post", data:{method: "getItem", item_no: $(ctx).val()}, dataType:"json"});
var data = ajax_response.responseText;
</code></pre>
<p>The ajax call is working, as I can see the results in the debugger, it is simply that the returned data is in a string.</p>
http://stackoverflow.com/questions/1876498/ajax-check-for-updates-sameoriginpolicy0Ajax, Check for updates, Same_origin_policySteven smethurst2009-12-09T20:07:22Z2009-12-09T20:11:47Z
<p>I have this HTML manual that gets installed with my application. This manual gets updated often (3-5 times a week) and I want to warn my users if the manual is out of date. </p>
<p>The first thing I thought of was to create a hot-linked image to my webserver that I could use to check the version that they where using and server an 'update' image or 'no update' image. but if the user does not have an internet connection the image would show up as a broken image. And I don't want that. </p>
<p>Next I looked in to using a bit of Ajax to make the request from my webserver. If the user didn't have a interenet connection the Javascript would be able to fail gracefully. But I have run in to a problem. Because the manual is stored as a local file on the users PC it is considered a cross domain request (<a href="http://en.wikipedia.org/wiki/Same%5Forigin%5Fpolicy" rel="nofollow">Same Origin Policy</a>) to make request from my webserver. </p>
<p>Any suggestions on what else to try?</p>
<p>I can not just include a hyper link in the start menu to the online version of the manual, As many of my users will not have an internet connection. </p>
http://stackoverflow.com/questions/1006380/should-i-use-json-or-ajax-for-response-data1Should I use JSON or AJAX for response data?Uffo2009-06-17T11:04:57Z2009-12-09T20:03:14Z
<p>Why JSON? I have done some tests today, and the request time for both JSON, or a normal AJAX request was the same. In the "normal request" I have returned the complete text+html tags, in the JSON request, logically I returned a "json return type" and I have created the HTML with client-side JavaScript.</p>
<p>I don't get it, why are the big sites (Google Reader etc), or even small sites using JSON? Or do I not understand when I should use JSON? </p>
http://stackoverflow.com/questions/1876327/ajax-many-simultaneous-validatorcalloutextenders0[AJAX] Many simultaneous ValidatorCalloutExtenders ?Tony2009-12-09T19:44:02Z2009-12-09T19:44:02Z
<p>Hi, let's consider the code below:</p>
<pre><code> <%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="asp" %>
<asp:ScriptManager ID="ScriptManager1" runat="server"/>
<br />
<asp:TextBox ID="txtUsername" runat="server"/>
<asp:RequiredFieldValidator SetFocusOnError="true" ID="rfvPassword" runat="server" ErrorMessage="Enter Password" ValidationGroup="login" ControlToValidate="txtPassword" Text="*" Display="None" />
<asp:ValidatorCalloutExtender ID="ValidatorCalloutExtender1" runat="server" TargetControlID="rfvUserName"/>
<br />
<asp:TextBox ID="txtPassword" runat="server"/>
<asp:RequiredFieldValidator SetFocusOnError="true" ID="rfvUserName" runat="server" ErrorMessage="Enter UserName" ValidationGroup="login" ControlToValidate="txtUsername" Text="*" Display="None" />
<asp:ValidatorCalloutExtender ID="ValidatorCalloutExtender2" runat="server" TargetControlID="rfvPassword" />
<br />
<asp:Button ID="Button1" runat="server" ValidationGroup="login" Text="Submit"/>
</code></pre>
<p>I'm trying to make a few things:</p>
<ul>
<li>E.g. the user left both TextBoxes blanked. How to make <strong>BOTH</strong> ValidatorCalloutExtenders appear? Only one ValidatorCalloutExtender shows.</li>
<li>While any TextBox is blank the page is <strong>NOT</strong> PostedBack is turned off. Is it possible to do that ?</li>
</ul>
http://stackoverflow.com/questions/1875914/java-ajax-framework-integration0Java Ajax Framework integrationasrijaal2009-12-09T18:39:01Z2009-12-09T19:41:15Z
<p>Hi,</p>
<p>I'm looking for a java AJAX framework which I can include into my existing webapp. I've found <a href="http://sweetdev-ria.ideotechnologies.com/sweetdev-ria-gettingStarted-3.3.5//" rel="nofollow">sweetDev RIA</a> . Are there such other frameworks which I could look into it?</p>
http://stackoverflow.com/questions/1871920/should-i-avoid-javascript-jquery-flash-ajax-silverlight-if-i-want-to-make-my1Should I avoid javascript , jquery, flash, ajax, silverlight if i want to make my site cross platform compatible and screen reader compatible?Jitendra2009-12-09T06:17:10Z2009-12-09T18:02:09Z
<p>Should I avoid JavaScript , jQuery, flash, Ajax, Silverlight if i want to make my site cross platform compatible (PC, iPHONE other mobiles, PDA) and Accessible(screen reader compatible)?</p>
<p>Should i only use xhtml css with server side language for wider accessibility?</p>
<p>and for PC pr MAC i made everything first for Firefox so for mobile which browser should i choose?</p>
http://stackoverflow.com/questions/1664011/how-do-i-handle-a-server-side-exception-during-an-ajax-call-from-jquery1How do I handle a server side exception during an Ajax call from JQuery?Jeff Martin2009-11-02T22:02:29Z2009-12-09T17:53:00Z
<p>I am calling a Page Method from JQuery as described here: <a href="http://encosia.com/2008/05/29/using-jquery-to-directly-call-aspnet-ajax-page-methods/" rel="nofollow">http://encosia.com/2008/05/29/using-jquery-to-directly-call-aspnet-ajax-page-methods/</a></p>
<p>This is all working fine. During testing I came across an error when my response from the Web Method was too large:
Error during serialization or deserialization using the JSON JavaScriptSerializer. The length of the string exceeds the value set on the maxJsonLength property.</p>
<p>I was able to do a bit of research on the maxJsonLength property and set it higher, however I would like to try to catch this exception serverside, before it is sent to the client during the Ajax call. How do I do this? </p>
<p>I have set a try/catch block within my method to no avail, it is happening outside my method (during JSON Serialization).</p>
<p>StackTrace looks like this: </p>
<pre>at System.Web.Script.Serialization.JavaScriptSerializer.Serialize(Object obj, StringBuilder output, SerializationFormat serializationFormat)
at System.Web.Script.Serialization.JavaScriptSerializer.Serialize(Object obj, SerializationFormat serializationFormat)
at System.Web.Script.Services.RestHandler.InvokeMethod(HttpContext context, WebServiceMethodData methodData, IDictionary`2 rawParams)
at System.Web.Script.Services.RestHandler.ExecuteWebServiceCall(HttpContext context, WebServiceMethodData methodData)</pre>
<p><strong>Update</strong> :<br>
The global and page level catches won't work for me (but will probably get the bounty at this point. Maintaining a global exception for something very specific to one page call seems like a poor design decision.) The point of me wanting to catch the exception is so I can trunkcate the text and still make a valid response to the javascript call.</p>
http://stackoverflow.com/questions/1875514/jquery-ready-event-not-fired-on-partial-page-load1jQuery ready event not fired on partial page loadMr AH2009-12-09T17:29:12Z2009-12-09T17:52:10Z
<p>Here's the situ: A page which contains html and using the jQuery libray and tabs jQuery UI plugin loads another page when some tab is clicked. The problem is that when the page/html is loaded/rendered (let's simplify this and say it's just doing something like $("#myDiv").load(url);), the ready event is not fired because of course the "window" has already loaded and fired the load event. This means that none of the jQuery things I want to do on load (partial load) of the page are executed. The UI.tabs plugin is designed to load pages into other tabs and we can assume that other pages may contain their own jQuery... so there should be some way around this.. </p>
<p>I can think of very horrible ways to get over the problem, like have a script block at the bottom of the page being rendered (loaded into a div) which does all things I would do when ready is fired (as you can assume the browser has rendered the page already if the script block is hit). This however is VERY bad practise. Any suggestions?</p>
http://stackoverflow.com/questions/1872965/get-vs-post-in-ajax1GET vs POST in ajax ?Xinus2009-12-09T10:23:19Z2009-12-09T17:17:37Z
<p>Why are there GET and POST requests in AJAX as it does not affect page url anyway? What difference it makes by passing sensitive data over GET in ajax as the data is not getting reflected to page URL .. </p>
http://stackoverflow.com/questions/684585/ajax-pagerequestmanagerparsererrorexception-error-in-asp-net-page0AJAX PageRequestManagerParserErrorException error in asp.net pageJimmy2009-03-26T05:05:07Z2009-12-09T15:36:13Z
<p>Hi,</p>
<p>I keep getting this error on asp.net page button click...how do i resolve this?</p>
<p>Microsoft JScript runtime error: Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, HttpModules, or server trace is enabled.
Details: Error parsing near '
<p>Thanks.</p>
http://stackoverflow.com/questions/1843017/sending-string-data-to-mvc-controller-using-jquery-ajax-and-post0Sending String Data to MVC Controller using jQuery $.ajax() and $.post()Mega Matt2009-12-03T21:24:15Z2009-12-09T15:20:28Z
<p>Hi all,</p>
<p>There's got to be something I'm missing. I've tried using $.ajax() and $.post() to send a string to my ASP.NET MVC Controller, and while the Controller is being reached, the string is null when it gets there. So here is the post method I tried:</p>
<pre><code>$.post("/Journal/SaveEntry", JSONstring);
</code></pre>
<p>And here is the ajax method I tried:</p>
<pre><code>$.ajax({
url: "/Journal/SaveEntry",
type: "POST",
data: JSONstring
});
</code></pre>
<p>Here is my Controller:</p>
<pre><code>public void SaveEntry(string data)
{
string somethingElse = data;
}
</code></pre>
<p>For background, I serialized a JSON object using JSON.stringify(), and this has been successful. I'm trying to send it to my Controller to Deserialize() it. But as I said, the string is arriving as null each time. Any ideas?</p>
<p>Thanks very much.</p>
<p><strong>UPDATE:</strong> It was answered that my problem was that I was not using a key/value pair as a parameter to $.post(). So I tried this, but the string still arrived at the Controller as null:</p>
<pre><code>$.post("/Journal/SaveEntry", { "jsonData": JSONstring });
</code></pre>
http://stackoverflow.com/questions/1874140/jquery-expression-in-parent-window-not-working-properly-from-popup-window-whats1jquery expression in parent window not working properly from popup window - whats wrong?kk2009-12-09T14:08:43Z2009-12-09T14:56:21Z
<p>i am refreshing parent window from popup window,then calling parent window jquery expressions not works.
But when i enable the alert call in closePopup function in the popup.php everything works fine.
- whats wrong with me?</p>
<p>file test1.html</p>
<pre><code><script type="text/javascript" src="jquerymin.js"></script>
<script type="text/javascript">
var visible_status=0;
function selectFn(sno){
if(sno==1){
$('#id2').hide();
$('#id1').show();
visible_status=1;
}else if(sno==2){
$('#id2').show();
$('#id1').show();
visible_status=2;
}
}
function popitup(url) {
newwindow=window.open(url+'?parent_status='+visible_status,'name','top=300,width=400,height=250');
if (window.focus) {newwindow.focus();}
return false;
}
</script>
<select name='optionw' onchange="selectFn(this.options[this.selectedIndex].value);">
<option value="">Select</option>
<option value="1">Div1</option>
<option value="2">All</option>
</select>
<div id='id1' style="display:none;">DIV1</div>
<div id='id2' style="display:none;">DIV2</div>
<button onclick="popitup('popup.php');">popUp</button><br>`
</code></pre>
<p>my popup.php file</p>
<pre><code> <script type="text/javascript" src="jquerymin.js"></script>
<script type="text/javascript">
var parent_status='<? echo $_GET[parent_status];?>';
function closePopup() {
window.opener.history.go(0);
//alert('going to call parent selectFn('+parent_status+')');
window.opener.selectFn(parent_status);
self.close();
}
</script>
...Here editing a part of the main page content...
<input type=button value=close_popup onclick="closePopup();">
</code></pre>
<p>after closing this popup i need ,</p>
<ol>
<li>main page to be reloaded ( to show the edited content)</li>
<li>to restore the div visible status as before clicking this popup.</li>
</ol>
http://stackoverflow.com/questions/1873787/button-click-function-not-working-on-ie0button click function not working on IE?Elliott2009-12-09T13:13:10Z2009-12-09T13:52:40Z
<p>Hi, I have the code below and everything works but the button click function on IE I have played around and still cannot seem to get it working.</p>
<pre><code>$(document).ready(function()
{
$("img").hide();
$("#logo").show();
document.getElementById("fname").focus();
$(".button").click(function()
{
postdata();
});
})
function postdata()
{
var parameters = 'fname=' + document.getElementById("fname").value + '&lname=' + document.getElementById("lname").value;
httpxml.onreadystatechange = stateck;
httpxml.open('POST', '../checking/submitcheck.php', true);
httpxml.setRequestHeader('Content-Type', "application/x-www-form-urlencoded");
httpxml.setRequestHeader('Content-Length', parameters.length);
httpxml.send(parameters);
function stateck()
{
if(httpxml.readyState==4)
{
if (httpxml.responseText.indexOf("Successful") >= 0)
{
$("#result").show("slow");
$("#result").html("Project request has successfully been sent");
$("#result").removeClass("result_error");
}
else if (httpxml.responseText.indexOf("Fail") >= 0)
{
$("#result").html("One or more errors have occured, please fix and submit again");
$("#result").addClass("result_error");
$("#result").show("slow");
}
}
}
}
</code></pre>
<p>Any idea?</p>
<p>Thanks =)</p>
<p>edit: submit button code</p>
<pre><code><input type="submit" name="button" class="button" id="button" value="Submit" disabled="disabled" onclick="return false;" />
</code></pre>
http://stackoverflow.com/questions/1761136/postback-a-linkbutton-in-a-grid-thats-under-an-updatepanel0Postback a linkbutton in a grid that's under an UpdatePanelJuvil John Soriano2009-11-19T05:41:53Z2009-12-09T13:51:12Z
<p>as my title says...</p>
<p>How do you make a LinkButton fire a POSTBACK (not ASYNCPOSTBACK) which is inside a GridView and is under an UpdatePanel?</p>
<p>My Scenario is this,</p>
<p>I have a grid. say table A, which populates a Linkbuttons with link to do Server.Transfer calls from Page1 to Page2.</p>
<p>I have a good reason why i am using a Server.Transfer because of previous page referencing methods and Response.Redirect doesnt fit at all.</p>
<p>normally it would work if i add the grid as a Postback trigger in the UpdatePanel like so</p>
<pre><code><Triggers><asp:PostBackTrigger ControlID="gvitem" /></Triggers>
</code></pre>
<p>but since I have another control inside the grid that needs to be do an AsyncPostback, that would not work also,</p>
<p>all that's lacking is have this line of code, do postback.</p>
<pre><code><asp:TemplateField HeaderText="Description" SortExpression="ShortDesc">
<ItemTemplate>
<asp:LinkButton ID="btndesc" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "ShortDesc")%>' CommandName="Edit" CommandArgument='<%# DataBinder.Eval(Container.DataItem, "Key") %>' />
</ItemTemplate>
</asp:TemplateField>
</code></pre>
<p>anyone have an idea?</p>
http://stackoverflow.com/questions/1873761/is-there-a-problem-that-i-cant-see-that-is-stopping-my-accordian-working-1Is there a problem that I cant see that is stopping my accordian working?sico872009-12-09T13:06:25Z2009-12-09T13:25:51Z
<p>Is there a problem in my JavaScript or HTML that is stopping my accordion from functioning correctly all the accordion classes get added, but I get no functionality.</p>
<p>===========</p>
<p>Think I have seen the problem that AJAX fires and shows me the content on screen but there is nothing in the markup...how can i solve this?</p>
<pre><code> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" dir="ltr">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>untitled</title>
<!-- meta tags: -->
<meta name="Author" content="author" />
<meta name="Description" content="desc" />
<meta name="Copyright" content="copyright" />
<meta name="Robots" content="robots" />
<meta name="Generator" content="generator" />
<meta name="Keywords" content="keywords" />
<!-- optionals: -->
<!-- <link rel="Shortcut Icon" href="/favicon.ico" type="image/x-icon" />-->
<script src="/media/javascript/jquery-ui/js/jquery.js" type="text/javascript"></script>
<script src="/media/javascript/jquery-ui/js/jquery-ui.js" type="text/javascript"></script>
<script src="/media/javascript/jquery-ui/js/jScrollPane-1.2.3.js" type="text/javascript"></script>
<script src="/media/javascript/jquery-ui/js/jquery.em.js" type="text/javascript"></script>
<script src="/media/javascript/jquery-ui/js/jquery.mousewheel.js" type="text/javascript"></script>
<script src="/media/javascript/jquery-ui/development-bundle/ui/ui.accordion.js" type="text/javascript"></script>
<!-- css: -->
<link rel="stylesheet" href="/media/css/reset.css" type="text/css" media="screen, projection" />
<link rel="stylesheet" href="/media/css/bang-screen.css" type="text/css" media="screen, projection" />
<link rel="stylesheet" href="/media/css/jScrollPane.css" type="text/css" media="screen, projection" />
<script type="text/javascript">
$(document).ready(function() {
//accordians for when the AJAX loads the content
// hides the main_menu as soon as the DOM is ready
// (a little sooner than page load)
$('#main_menu').hide();
// shows the slickbox on clicking the noted link
$('h3#show-menu a').click(function() {
$('#main_menu').toggle('slow');
return false;
});
//try and hide the left content when it is null
$("#left-content:empty").hide();
//style up the scroll bar
$('#left-content').jScrollPane();
//do some AJAX to call the method instead of the browser
$("a.navlink").click(function (ev) {
$(this).toggleClass("active");
ev.preventDefault();
var id = $(this).attr("id")
if ($(this).hasClass("active")) {
$("."+id).remove();
}
else {
//$(this).toggleClass("active");
var url = $(this).attr("href");
$.ajax ({
url: url,
type: "GET",
success : function (html) {
$("#accordion").append(html);
$('#accordion').accordion({
active: 0,
header:'h2'
});
//alert(accordion())
}
});
}
});
});
</script>
<!-- <link rel="stylesheet" href="/css/print.css" type="text/css" media="print" />-->
</head>
<body>
<div id="wrapper">
<h3 id="show-menu"><a href="#">menu</a></h3>
<div id="main_menu">
<p>Lorem ipsum dolor consectetuer adip sed diam nonummy nibh eusimod ut loreet dolore magna aliquam erat volupat. Utowisi enim ad minim ven ullamcorper suscipit loboratis.</p>
<ul>
<li><a class='navlink' id='Blog' href='index.php/home/category/blog/6'>Blog</a></li><li><a class='navlink' id='Inspiration' href='index.php/home/category/inspiration/7'>Inspiration</a></li> </ul>
</div><div id="left-content-holder">
<div id="left-content"></div>
</div>
<div id="right-content">
<div id="accordion"></div>
</div></div>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1873663/listing-ajax-data-in-search-engines0Listing ajax data in search engines ?Xinus2009-12-09T12:44:59Z2009-12-09T13:17:28Z
<p>Is there any way to allow search engines to list JSON or XML ajax data ? </p>
http://stackoverflow.com/questions/1872364/jquery-strange-behaviour0jQuery strange behaviourCristian Boariu2009-12-09T08:13:32Z2009-12-09T13:08:48Z
<p>Hi guys,
I have a rich:dataTable and there i have a rich column with a span.
When the page is loading this span takes some values like: true+false or true+true etc.</p>
<p>Depending on this value, i hide the tr containing this span with jQuery like:</p>
<pre><code><rich:jQuery query="ready(function() {
jQuery('#inbox:_inboxTable_').find('span[title=test]').each(function(i, o){
if (jQuery(this).text() == 'true+false' ){
jQuery(this).closest('tr').fadeOut();
}
});
})"/>
</code></pre>
<p>All it's working OK on Internet Explorer and Chrome but on Firefox is something strange:
- when the page is loading normally, the tr are hidden OK but when i do an ajax request (change the page number or size) ALL THE COMPONENTS from the page are faded out...</p>
<p>can u give me a clue?</p>
http://stackoverflow.com/questions/1872100/ajax-setjsonstructkey-issues-with-multiple-sets-of-data0AJAX, setJSONStructKey Issues with multiple sets of datanobosh2009-12-09T07:03:34Z2009-12-09T12:05:09Z
<p>I'm working to create an autosuggest and am having problems getting the data to display correctly for the JQUERY plugin.</p>
<p>I have a table full of <code>customers(customerID,fName,lName)</code></p>
<p>I need to create a JSON response like this: </p>
<pre><code>[{"id":"856","name":"House"},
{"id":"1035","name":"Desperate Housewives"},
{"id":"1048","name":"Dollhouse"},
{"id":"1113","name":"Full House"}
]
</code></pre>
<p>Right now my code in Coldfusion looks like this: </p>
<p><code>Query - sel_Customers.cfm</code></p>
<pre><code><cfset newAjax.setJSONStructKey(key="id", value="#sel_Customers.customerID#")>
<cfset newAjax.setJSONStructKey(key="name", value="#sel_Customers.fName#")>
</code></pre>
<p>This results in the response: </p>
<pre><code>[{"returnmessage":"The Ajax operation was successful.","name":"Howard","id":"1","returncode":"0"}]
</code></pre>
<p>Which displays only 1 record and not 3. Is there a way in Coldfusion to setup the JSONStructKey like required and pasted above?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/931908/what-is-the-difference-between-ajax-and-jquery-and-which-one-is-better2what is the difference between ajax and jquery and which one is better ?Sufian Alali2009-05-31T11:54:09Z2009-12-09T10:11:36Z
<p>I am confused about using ajax or jquery so I want to know what the differences are and which one is better such as performance and complexity .</p>