Browse by Tags

Related Posts

  • Re: CustomValidator in UpdatePanel

    Hi! You have to know which TextBox tb that you should set the value to. The simplest way to achieve this is <code> int i = gv.RowIndex; TextBox tb = (TextBox)gv.Rows[i].FindControl(textBoxControlName); if(tb != null) { tb.Text = "-1000"; args.IsValid = true; } </code> I hope that helps.....
    Posted to ASP.NET AJAX UI (Forum) by Dev4 on 12-10-2006, 12:00 AM
    Filed under: GridView, validation, FindControl, BulkEditGridView, Custom validation
  • Validator in Gridview not working with UpdatePanel

    I'm new to web development in general, and have run into a problem with the UI I'm trying to design. I'm sure that I could lay out the UI in a different fashion to achieve the same ends, but am trying to maintain a simple one-page UI using AJAX for the simple task of entering one word description lookups...
    Posted to ASP.NET AJAX UI (Forum) by RHDech on 02-15-2007, 12:00 AM
    Filed under: GridView, validation, "Update Panel"
  • Issue in validating dropdownlist in gridview

    I'm working on .NET 2.0 I've a simple test webform with a GridView. The grid has a few bound columns, a template field with a drop down list (with hard coded values) and a asp:Button field. It also has a RequiredFieldValidator, to ensure that the user has chosen a value other than default, before...
    Posted to Data Presentation Controls (Forum) by newbeee007 on 01-14-2008, 12:00 AM
    Filed under: asp .net 2.0, ButtonField, DropDownList, gridview, requiredfieldvalidator, validation
  • gridview's select command and controls validation

    Hi, I am having a problem with the combination of gridview's select command and controls validation. I have enabled (row) selection for a gridview which automatically generates a (select) link control. I have also a textbox control contained in the gridview's template field with a validation...
    Posted to Data Presentation Controls (Forum) by viktors on 05-03-2008, 12:00 AM
    Filed under: gridview, validation, validation control, validation Controls, validation postbackoptions
  • Validate that a GridView has a selected item

    Is it possible to use a validator to ensure that a user has selected an item in a gridview? If I point a validator to a gridview it throws an exception at runtime. Any thoughts?
    Posted to Web Forms (Forum) by ilivewithian on 05-29-2007, 12:00 AM
    Filed under: gridview, .net, validation
Page 1 of 1 (5 items)