views:

354

answers:

2

I'm using the excellent jEditable plugin for some in-place editing on my page. There is one spot I need a multiple select element. Is there a jEditable plugin that allows me to do this?

I've been trying to use the jEditable author's plugin API to create my own multiselect plugin, but no dice so far. There just doesn't seem to be quite enough documentation on what each function does in the API. And every single example plugin he provides appears to rely on other jQuery plugins. I just need a basic multiple select element...

A: 

I have been looking for the same as well. Trying to achieve that, but nothing seems to work.

By the way, I found this but this doesnt seem to work either - http://pastebin.com/cbDndv5h

Kalyan
A: 

The jeditable plugin do this:

$('.editable').editable('http://www.example.com/save.php', { data : " {'E':'Letter E','F':'Letter F','G':'Letter G', 'selected':'F'}", type : 'select', submit : 'OK' });

Klawztro