R
Roshawn Dawson
Hi,
I have a repeater control. This control will render a number of
textboxes on the page. Each textbox has its onblur event wired to a
JScript function. Here's a sample:
<asp:textbox onblur="blip(this,<%# Container.ItemIndex %>)"
text="<%#Container.DataItem("Quantity")%>" />
The binding expression included within the JScript function is giving me
trouble. That is, when the repeater is rendered on the page, the
binding expression passed as a param to the JScript function is not
invoked. Instead, it appears as is.
Is there something that I'm doing wrong?
Thanks,
Roshawn
I have a repeater control. This control will render a number of
textboxes on the page. Each textbox has its onblur event wired to a
JScript function. Here's a sample:
<asp:textbox onblur="blip(this,<%# Container.ItemIndex %>)"
text="<%#Container.DataItem("Quantity")%>" />
The binding expression included within the JScript function is giving me
trouble. That is, when the repeater is rendered on the page, the
binding expression passed as a param to the JScript function is not
invoked. Instead, it appears as is.
Is there something that I'm doing wrong?
Thanks,
Roshawn