Reputation: 23
I am using jPicker to dynamically create pickers as and when needed. Is there a way to open it on creation? Something like $.jPicker.List[index].show();
Thanks for your help
Upvotes: 2
Views: 448
Reputation: 38077
I believe you can call the show method on the jPicker like this:
$("#someid").jPicker("show");
Upvotes: 0