Help! about onChange:'submit()'

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Help! about onChange:'submit()'

liang bing
Hi, All
I have many select lists like this:

                        html select
                                list: self list;
                                onChange: 'submit()';
                                selected: self selected;
                                labels: [ :value | value name ];
                                callback: [ :value | self selected: value ].

this runs on localhost:8080 well.

but when deployment on (eg.192.168.1.4);

submit does not work. the URL no response.

Could anyone give me a hint?

Thanks for your help!

Liang

I love Smalltalk
Reply | Threaded
Open this post in threaded view
|

Re: Help! about onChange:'submit()'

liang bing
the problem found.

  application deploymentLibarary load should be in order.


I love Smalltalk