This is a migrated thread and some comments may be shown as answers.

Need Compare Field validator inside radgrid

1 Answer 73 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Pams
Top achievements
Rank 1
Pams asked on 09 Jun 2011, 12:20 AM
Hello,
I have two problems.

1> I need to have compare field validatory inside radgrid ( to confirm password)

2>  When user changes password text (inside edit form), We need to show additional confirm password textbox to reenter the password.

Any help would be appreciated

Thanks,
AV

1 Answer, 1 is accepted

Sort by
0
Mira
Telerik team
answered on 13 Jun 2011, 12:24 PM
Hello Pams,

Straight to your questions:
  1. Please examine this help topic to see how to add validators to the edit fields.
  2. In order to implement the desired functionality I recommend that you show the second textbox when the value of the first one is changed:
    function txt1ValueChanged(sender, eventArgs) {
        var txt2 = $find(sender.get_id().replace("RadTextBox1", "RadTextBox2"));
        txt2.set_visible(true);
    }

I hope this helps.

Regards,
Mira
the Telerik team

Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

Tags
Grid
Asked by
Pams
Top achievements
Rank 1
Answers by
Mira
Telerik team
Share this question
or