maycolalvarez gracias por responder , disculpame estoy un poco confundido y no me funciona lo que me indicaste
estoy viendo la documentacion del plugin
http://vitalets.github.com/x-editable/docs.html en $().editable(options)
Name:value
Type:mixed
Default: element's text
Description:Initial value of input. If not set, taken from element's text.
segun el ejemplo que hay en el plugin se llenan los input con un array json
Código Javascript
:
Ver original<script>
$(function(){
$('#address').editable({
url: '/post',
title: 'Enter city, street and building #',
value: {
city: "Moscow",
street: "Lenina",
building: "15"
}
});
});
</script>
me corriges si estoy equivocado , hice lo que me indicaste y no me funciona
Código Javascript
:
Ver original$('#address').editable({
url: 'multiples.php',
title: 'Enter city, street and building #',
value:function() {
$.ajax({
url: "datos.php",
type: json,
sucess: function( resultado){
}
});
},
});
Código PHP:
Ver original<?php
$arr = array('city' => 'Moscow', 'street' => 'Lenina', 'building' => 15);