Hi,
Currently if we want to have a validator on the textbox on the rotator or repeater, based on this link:
http://www.telerik.com/help/aspnet-ajax/input-inputmanager-basics.html
how if we have two validator in the repeater e.g one is email textbox and one is decimal textbox,
currently i bind the radInput Manager on the code behind ,
i do find control of the textbox and add those textboxes on the rad input manager,
but it is only success add for the first textbox, the other textbox doesn't have validation.
Currently if we want to have a validator on the textbox on the rotator or repeater, based on this link:
http://www.telerik.com/help/aspnet-ajax/input-inputmanager-basics.html
how if we have two validator in the repeater e.g one is email textbox and one is decimal textbox,
currently i bind the radInput Manager on the code behind ,
i do find control of the textbox and add those textboxes on the rad input manager,
TextBox txtOrderNumber = (TextBox)rptC.Items[j].FindControl("txtOrderNumber");
RegExpTextBoxSetting RegExpBehavior1 = (RegExpTextBoxSetting)RadInputManager1.GetSettingByBehaviorID("RegExpBehavior1");
RegExpBehavior1.TargetControls.Add(new TargetInput(txtOrderNumber.UniqueID, true));
but it is only success add for the first textbox, the other textbox doesn't have validation.