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
515
ValidatorCallout
posted

I Want to use validatorcallout extendor with Infragistic webdataedit controls

can any one tell me how i can use it , because i tryed it but error massage popup at wrong place

Parents
No Data
Reply
  • 24497
    posted

    Hi,

    I looked at implementation of AjaxControlToolkit.ValidatorCalloutBehavior and found that it relies on "target" html element which should be <input> and which id (elt.controltovalidate) is assumed to be equal to the ClientID of control on server.

    That means that target can be only a simple control like asp:TextBox which renders its single <input> element with expected id. In order to support built-in dot-net validators, the WebTextEdit uses hidden element with id equal to ClientID. The id of actual visible <input> is different and it may depend on other properties (like enabled/disabled spin buttons).

    Unfortunately WebTextEdit and any its extension is not compatible with ValidatorCalloutBehavior.

Children