I have several WebCurrencyEditors on my asp.net page. 2 of them are auto populated by javascript calculations. How can I fire the post back for OnValueChanged when the currency value changed based of a javascript function for another control?
My definition looks like:
<ig:WebCurrencyEditor ID="tbDevianceFromSanctionedPrice" runat="server" DataMode="Decimal" TabIndex="27" MinDecimalPlaces="2" MaxDecimalPlaces="2" HorizontalAlign="Right" Nullable="true" ReadOnly="true" OnValueChanged="tbDevianceFromSanctionedPrice_OnValueChanged" > <AutoPostBackFlags ValueChanged="Async" /> </ig:WebCurrencyEditor>
Hello Abby,
In order for a full postback to fire please change the AutoPostBackFlags to ON as follows:
<AutoPostBackFlags ValueChanged="On" />
If you have further questions please let me know, I will be glad to help.
Hello,
I'm just following up to see if you need any further assistance with this issue. If so please let me know.