Re: [web2py] Re: How to pass html text field value to the controller function?

2012-08-29 Thread Amit
Thanks Anthony to provide the solution in my old post, let me try then will let you know whether it is working or not. On Wed, Aug 29, 2012 at 7:50 PM, Anthony wrote: > See https://groups.google.com/d/msg/web2py/z8-jyLTy-_w/0fJ34fL8JysJ. > > Anthony > > > On Wednesday, August 29, 2012 6:18:57 A

Re: [web2py] Re: How to pass html text field value to the controller function?

2012-08-29 Thread Richard Vézina
Here the code to use a regular drop down and avoid use of autocomplete plugin dependency. In controller : conditional_field_trigger_selected_event_js = '$("select[name=FIRSTFIELDNAME]").change(function() {var val = $(this).children(":selected").attr("value");$(this).trigger($(this).attr("id") + "_

[web2py] Re: How to pass html text field value to the controller function?

2012-08-29 Thread Anthony
See https://groups.google.com/d/msg/web2py/z8-jyLTy-_w/0fJ34fL8JysJ. Anthony On Wednesday, August 29, 2012 6:18:57 AM UTC-4, Amit wrote: > > Hi, > I have to send textfield value from html to controller function, how to > achieve it, please see the code below : > > >onClick = 'window.locat