DataGrid & Form on Same Page Post Issue

Ask a Question related to ASP.NET Data Grid Control, Design and Development.

  1. #1

    Default DataGrid & Form on Same Page Post Issue

    I have a datagrid that does and edit/update/delete/cancel routine and then I
    have a form at the bottom of the page with an "Add" button to add a another
    record. This form as validation (e.g. required fields), so when I click on
    "Edit" in the datagrid and then "update" it, the form's validation summary
    gets executed. How can I update the datagrid without getting the form
    "posted", or at least not run the validation ?

    Paul


    Paul D. Fox Guest

  2. Similar Questions and Discussions

    1. Email form data AND post to a page
      Newbie here... Can anyone help me? I am able to email form data successfully via CFmail upon submit. I am able to post the data to a page after...
    2. Error on form post page doesn't display
      When I post to a CF template from a form and that CF template throws an error I get a HTTP 500 Internal server error instead of the CF Error. If I...
    3. How to mimic client-side form post to .php page
      I was wondering if there was a way I could write a script to change my user profile/info on a site using an html form inside a .php page without...
    4. GET / POST conflict in a multi-page form.
      Hi, Wonder if anyone can help with this problem: I am using an app with several pages, using a session to track vars between the pages, and...
    5. #24764 [Opn->Bgs]: Page Cannot Be Displayed when submitting form using POST method
      ID: 24764 Updated by: iliaa@php.net Reported By: hksim at rocketmail dot com -Status: Open +Status: ...
  3. #2

    Default DataGrid & Form on Same Page Post Issue

    Hi Paul,

    You might use following logic:

    In EditCommand (Go to Update state)
    disable validation
    (may also disable Add button)
    In UpdateCommand & CancellCommand (Return to normal state)
    enable validation
    (enable Add button)

    HTH

    Elton Wang
    [email]elton_wang@hotmail.com[/email]

    >-----Original Message-----
    >I have a datagrid that does and edit/update/delete/cancel
    routine and then I
    >have a form at the bottom of the page with an "Add"
    button to add a another
    >record. This form as validation (e.g. required fields),
    so when I click on
    >"Edit" in the datagrid and then "update" it, the form's
    validation summary
    >gets executed. How can I update the datagrid without
    getting the form
    >"posted", or at least not run the validation ?
    >
    >Paul
    >
    >
    >.
    >
    Elton Wang Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139