CodingForums.com

CodingForums.com (http://www.codingforums.com/index.php)
-   Ajax and Design (http://www.codingforums.com/forumdisplay.php?f=55)
-   -   Ajax.updater problem (http://www.codingforums.com/showthread.php?t=157334)

sudhakarkva 01-28-2009 04:23 PM

Ajax.updater problem
 
Hi Friends,

My Problem is to send the value of one ajax updater to next ajax updater

this is my ajax code

new Ajax.Updater('pubListCount', 'DeletePublication.action', {
onSuccess: function() {

setSelectedTo(false);
new Ajax.Updater('resultContainer', 'ManagePaginationPublications.action', {
onComplete: function() {
document.getElementById('workingStatus').style.display = 'none';
var topElement = document.getElementById("cout");
var bottomElement = document.getElementById("bottomCout");
topElement.innerHTML = "<span class='text-no-border'>" + totalSelected + " item(s) deleted from the List </span>"
bottomElement.innerHTML = "<span class='text-no-border'>" + totalSelected + " item(s) deleted from the List </span>"
}, parameters:Form.Methods.serialize(document.forms["publicationForm"])
});
}, parameters:Form.Methods.serialize(document.forms["publicationForm"])
});


In the above code there are two updaters of ajax

when i call first ajax i am setting value say like "setName("Sudahkar")" in the action class
now my problem is how to send the this value name to next ajax updater as parameter there is any way...

in the next ajax call i am making the action call and in that also i have setters and getters for "Name" so i need to set this name there how..

urgent frinds

is there any other way i can improve my code plx tell me friends..
bye

thx for help..

ohgod 01-28-2009 05:33 PM

ok.... explain why you're using recursive updaters for me?

sudhakarkva 01-29-2009 04:23 AM

no friend actually
it was my old base code so i cant change that ..

so can you please tell me how to do.


All times are GMT +1. The time now is 08:25 AM.

Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.