Hello,
I have a pb to extrat information from array wich is returns by the method: getCol.
This is my cod in my javascript page.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<div class="sfcode">var $tb = $("#liste_produit").getCol('eta_actif',true);<br /> $.ajax({<br /> type: "POST",<br /> url: $url_aj,<br /> data: "typ_requete=enr_grid&tb="+ $tb,<br /> success: function(contenu){<br /> alert(contenu);<br /> },<br /> error: function(objet,type){<br /> alert('error: ' + type);<br /> }<br /> });<br /> </div> |
the result is like this: [{id:1,value:val1},{id:2,value:val2},{id:3,value:val3},{id:…,value:..}]
How
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top