Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
895
Fire ValueChange Auto Post back on WebCurrencyEditor
posted

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>

Parents
No Data
Reply
  • 16310
    Offline posted

    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.

Children