Click here to Skip to main content
15,885,546 members
Home / Discussions / JavaScript
   

JavaScript

 
AnswerRe: Redirecting to the URL after Submit Pin
Nathan Minier7-Mar-19 1:39
professionalNathan Minier7-Mar-19 1:39 
GeneralRe: Redirecting to the URL after Submit Pin
simpledeveloper7-Mar-19 8:29
simpledeveloper7-Mar-19 8:29 
GeneralRe: Redirecting to the URL after Submit Pin
simpledeveloper7-Mar-19 10:52
simpledeveloper7-Mar-19 10:52 
GeneralRe: Redirecting to the URL after Submit Pin
Nathan Minier11-Mar-19 1:15
professionalNathan Minier11-Mar-19 1:15 
GeneralRe: Redirecting to the URL after Submit Pin
simpledeveloper12-Mar-19 6:32
simpledeveloper12-Mar-19 6:32 
GeneralRe: Redirecting to the URL after Submit Pin
simpledeveloper13-Mar-19 6:24
simpledeveloper13-Mar-19 6:24 
QuestionToggling two Radio buttons depending upon enum values in Angular 2.0 Pin
simpledeveloper27-Feb-19 13:38
simpledeveloper27-Feb-19 13:38 
QuestionAJAX,how to get more values from $.ajax({}) function in a Zend Controller Pin
serenimus25-Feb-19 8:49
serenimus25-Feb-19 8:49 
Hallo to the comunity,

That ist the problem, Im trying to send two values/variables fron my view (opciones.phtml), to my controller/action through an Ajax function. I get it with only one parameter, but with two I dont get it!!Mad | :mad:

I`ll thank any help

this is my html:


HTML
guardar
<span class="badge btn-success" id="resultado"></span>


this is my javascript function, inside I invoke the ajax function..


<script type="text/javascript">


function saveNombre(){

var nombre=document.getElementById("nombre").value;
var codc=<?=$this->codcli?>;


if(nombre!==""){


$.ajax({
type:"POST",
data:dataString,
dataType:{nombre:nombre,codc:codc},
cache:false,
url:"<?=$this->basePath("alta/areapersonal/updatenombreclienteajax")?>",
success:function(datos){
$("#resultado").html(datos);

}
});


}else{
return null;
}


}






here you find the data recepcion from view/ajax,in the controller/Action
if you send only one parameter, from ajax function, you can easily "clean" the value
with the PHP function trim();

but in this case, I,m try to send two values, customer code and Name, I need to include this
to parameters in a function to update the name of the customer, but I dont´t konw hoe to extract from
$datosCliente,

some Idea?, thanks !!


public function updateNombreClienteAjaxAction(){

if($this->request->isxmlHttpRequest()){

$datosCliente= $this->request->getContent("data");



}else{
var_dump("Error action Ajax");
}

}
QuestionHow to identify if string is a phone number, Email address or a web address in Javascript? Pin
Member 1397526717-Feb-19 14:51
Member 1397526717-Feb-19 14:51 
SuggestionRe: How to identify if string is a phone number, Email address or a web address in Javascript? Pin
Richard MacCutchan17-Feb-19 22:05
mveRichard MacCutchan17-Feb-19 22:05 
AnswerRe: How to identify if string is a phone number, Email address or a web address in Javascript? Pin
Blikkies27-Feb-19 2:28
professionalBlikkies27-Feb-19 2:28 
QuestionAssignment help? Pin
Member 141452369-Feb-19 12:49
Member 141452369-Feb-19 12:49 
AnswerRe: Assignment help? Pin
Richard MacCutchan9-Feb-19 22:51
mveRichard MacCutchan9-Feb-19 22:51 
AnswerRe: Assignment help? Pin
ZurdoDev27-Feb-19 3:50
professionalZurdoDev27-Feb-19 3:50 
QuestionJavaScript Environment Pin
Member 141438347-Feb-19 21:44
Member 141438347-Feb-19 21:44 
AnswerRe: JavaScript Environment Pin
Richard MacCutchan7-Feb-19 22:31
mveRichard MacCutchan7-Feb-19 22:31 
QuestionJavaScript in Microsoft Visual Studio Pin
Member 141438347-Feb-19 21:43
Member 141438347-Feb-19 21:43 
AnswerRe: JavaScript in Microsoft Visual Studio Pin
Richard MacCutchan7-Feb-19 22:29
mveRichard MacCutchan7-Feb-19 22:29 
QuestionSimple Modal Dialog Pin
Bram van Kampen31-Jan-19 11:58
Bram van Kampen31-Jan-19 11:58 
AnswerRe: Simple Modal Dialog Pin
Richard Deeming8-Feb-19 1:09
mveRichard Deeming8-Feb-19 1:09 
QuestionCalling Web api from Angular Service and Component Pin
simpledeveloper29-Jan-19 7:07
simpledeveloper29-Jan-19 7:07 
QuestionFor loop query Pin
Member 1413327128-Jan-19 22:54
Member 1413327128-Jan-19 22:54 
QuestionRe: For loop query Pin
Richard MacCutchan28-Jan-19 23:35
mveRichard MacCutchan28-Jan-19 23:35 
AnswerRe: For loop query Pin
ZurdoDev30-Jan-19 2:08
professionalZurdoDev30-Jan-19 2:08 
AnswerRe: For loop query Pin
Suresh Madhavaraju11-Feb-19 3:20
Suresh Madhavaraju11-Feb-19 3:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.