Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know there's a "select" event but is not working.

This is my code:

$("#Asignacion_Movimiento_OrdenCompra").autocomplete(
        "/Asignaciones/ObtenerOrdenesCompra",
        {
            extraParams: { Serial: function () { return $("#Asignacion_Movimiento_Material").val(); } },
            delay: 200,
            select: function (event, ui) {
                alert(this.value + " - " + ui.item.value);
                ObtenerDatosAdicionales();
                return true;
            }
        }
    );

I also tried adding:

result: function (event, data, formatted) {
                alert(data);
                ObtenerDatosAdicionales();
                return true;
            }

But nothing happens...

How can I get the value of the selected item by the user?

Thx.

share|improve this question

3 Answers

You are looking for the result. See here for documentation.

Like so:

$("#Asignacion_Movimiento_OrdenCompra").autocomplete({
 /* your options here*/
}).result(function(event, data, formatted) { // result is a separate function
    alert(data);
});
share|improve this answer
I added the result handler (see edit above) and nothing happens... – tina Jan 13 '11 at 20:47
@tina - see edits. – Josiah Ruddell Jan 13 '11 at 20:51
yep! thx !!!!!!!!!!!! – tina Jan 13 '11 at 20:51
@tina - welcome! glad to help. – Josiah Ruddell Jan 13 '11 at 20:56

I know this thread is a bit old, but at http://www.phpfreaks.com/forums/index.php?topic=324203.0 I found a working example for select:

select: function(event, ui) {
var selectedObj = ui.item;
alert(selectedObj.value); }
share|improve this answer
up vote -6 down vote accepted

Done!

I added the following to my $(document).ready function:

$('#autocompleteField').result(function (event, data, formatted) {
        alert(data);
});

Thank you!

share|improve this answer
19  
You should have accepted @Josiah Ruddell's answer instead of posting the same... – Tim Büthe Nov 30 '11 at 9:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.