Grid style after inplace update

2012-02-12 Thread Михаил Слободянюк
Hi! I use JQuery-UI for styling Tapestry. In JS modify styles presetted on Grid. But after inplace update styles resetted. I wroute method in my page void onInplaceUpdateFromGrid(String zone){ ajaxResponseRenderer.addCallback(new JavaScriptCallback() { public void

detect textfield text change

2012-02-12 Thread sommeralex
Hi! I need to detect live text-changes in a textfield (so without pressing a submit button). How can i do this with tapestry? alex -- View this message in context: http://tapestry.1045711.n5.nabble.com/detect-textfield-text-change-tp5477793p5477793.html Sent from the Tapestry - User mailing

Re: detect textfield text change

2012-02-12 Thread Chris Mylonas
With javascript On 13/02/2012, at 10:55 AM, sommeralex wrote: Hi! I need to detect live text-changes in a textfield (so without pressing a submit button). How can i do this with tapestry? alex -- View this message in context:

Re: Component abstraction

2012-02-12 Thread Giulio Micali
You can do something like this: public class Crud { ... // all your code @Inject private ComponentResources resources; @Inject private Block yourBeanEditorBlock; /** * A Block from the page to render instead of the normal BeanEditor. */

Re: detect textfield text change

2012-02-12 Thread Giulio Micali
In tapestry jumpstart site there was an example of the zoneupdater mixin, i think that it's already present in the 5.3 version. Cheers, Giulio

Re: detect textfield text change

2012-02-12 Thread Taha Hafeez Siddiqi
Try jeditable plugin if you are using tapestry-jquery Sent from my iPhone On Feb 13, 2012, at 7:40 AM, Giulio Micali giulio.mic...@gmail.com wrote: In tapestry jumpstart site there was an example of the zoneupdater mixin, i think that it's already present in the 5.3 version. Cheers,

Re: Component abstraction

2012-02-12 Thread Михаил Слободянюк
Nice! It's work!