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
250
No AutoPostback
posted

I have a DropDownProvider for a WebDataGrid  that is working as expected, but am not getting a postback when the selection has changed

The WebDataGrid is within an UpdatePanel

Also, I would like to know how to preselect the value matching the target (the dropdown list initially has nothting selected even though the cell has a value in the list.  The second time the dropdown is selected (on a different row), it has the prevously selected value from the different row...)

Thank you!

     <EditorProviders>
      <ig:DropDownProvider ID="StatusProvider">
       <EditorControl ID="StatusEditor" runat="server" DisplayMode="DropDown"  TextField="TaskStatusText" AutoPostBack="true">
       </EditorControl>
      </ig:DropDownProvider>
      <ig:DropDownProvider ID="AssigneeProvider">
       <EditorControl ID="AssigneeEditor" runat="server" DisplayMode="DropDown" TextField="ASSIGNEENAME" AutoPostBack="true">
       </EditorControl>
      </ig:DropDownProvider>
     </EditorProviders>

Parents Reply Children