Hi Chris, Here is my understanding of what you want to do:
You have a textfield and you want to set value on it on the client side from an event handler of some other client side proxy. Is this right? If yes then you should have a reference to the client side proxy of ULCTextField i.e the UITextField available to you. Then you can get the underlying JTextField using the method getBasicTextField() and use setText() on it directly: uiTextField.getBasicTextField().setText(..); I hope this helps. Thanks and regards, Janak -------------------------- email: [email protected] http://www.canoo.com http://ulc.canoo.com ---------------------------- -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of chris idr Sent: 23 August 2010 16:24 To: [email protected] Subject: Re: [ULC-developer] changing display value on client only hi janak and others, I didnt mean to copy Vadims mail, sorry about that. the problem I am having is I have to setText on the ULC (server side object) to round trip and set the UI (client side object), but i dont want the round trip. I want to directly set the client side object as I have a lot of keystroke sensitive actions i need to do with do not warrant a round trip, but are important to the user. I want to set the UI object directly from an actions handler of some kind on the client side, and then when a round trip will happen anyway ie on enter or focus change i can send the new value back to the server to so the correct value gets set across. thanks chris wade Janak Mulani wrote: > Hi Chris, > > I am sorry I don't understand the question. > > You can use setText() on a ULCTextField to display it on the client side. > > Can you please tell me what your requirement is? > > PS: Was there a reason why you copied Vadim's mail in your post? Is your > question related to his post? > > > Thanks and regards, > > Janak > > -----Original Message----- > From: [email protected] > [mailto:[email protected]] On Behalf Of chris idr > Sent: 16 August 2010 11:52 > To: [email protected] > Subject: [ULC-developer] changing display value on client only > > Hi i want to change the display value on the client form field ie text > field, and wondered how this is possible? > > chris > > _______________________________________________ > ULC-developer mailing list > [email protected] > http://lists.canoo.com/mailman/listinfo/ulc-developer > > > _______________________________________________ ULC-developer mailing list [email protected] http://lists.canoo.com/mailman/listinfo/ulc-developer _______________________________________________ ULC-developer mailing list [email protected] http://lists.canoo.com/mailman/listinfo/ulc-developer
