Morning Djordje,
>> I implemented AutoComplete one of my form. It works nice but I have a little tiny problem. After selecting one of AutoComplete value I could not catch embed point after that. Even if I declared more field assignments nothing happend.
You should get a normal "field completed" event - which calls the normal server side code when an auto-complete item is selected.
The only place I've seen with a problem is where you type the whole field correctly, but then select the (presumably only) auto complete record left. In JavaScript this doesn't generate a Change event, which is a bit of a pain. The work-around I had for this broke other code, so that was removed and the problem is on the "to do" list.
>> How can I catch where to put code after choosing value from AutoComplete?
Normal embed point (Server side code - validate::fieldname routine) should be fine.
>> When I disable "Send every keypress to server" it works as I expected but no char validation is possible.
I'm not 100% sure what you mean by the last part - explain that a bit more please.
Incidentally if you have auto-Complete on then the key presses are going to the server, but are being intercepted by the auto-complete code. I don't think "every key press" and "auto-complete" are both able to work without interfering with each other - but let me know more about what you are trying to do and I can always see if it's possible.
cheers
Bruce