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
120
I have getting Requested record cannot be found by key error in webdata grid version 13.1
posted

i have work with asp.net witn infragistics webdata grid

my problrm is that:

if i have implement CRUD operation in my local solution then it work correctly but if i have publish same code in server then webdatagrid give me the following error

Infragistics.Web.UI.GridControls.MissingRecordException: Requested record cannot be found by key.
Common Causes:
- The data key field(s) is being edited causing the record not to be found when trying to update.
- Not rebinding the grid when there are updates to be committed (assuming DataViewState is disabled in this case) – for instance if the grid is bound on !IsPostback.
- While a user is editing a particular row in the grid, another user deletes the record from the database. On posting back, the grid is rebound to the updated datasource which no longer contains the record, resulting in the exception.
- Changing completely or filtering the grid’s datasource before all CRUD operations are carried out – this is quite common when using other controls on the page to do this . This is partly due to the fact that control events such as SelectedIndexChanged for a dropdownlist or Click for a button fire before the updating events. Changing the grid’s source should in such cases be delayed for later (PreRender).
   at Infragistics.Web.UI.GridControls.EditingCore.OnAction(String actionType, Object id, Object value, Object tag)
   at Infragistics.Web.UI.GridControls.GridBot.LoadAdditionalClientState(Object state)
   at Infragistics.Web.UI.Framework.RunBot.HandleRaisePostDataChangedEvent()
   at Infragistics.Web.UI.GridControls.GridBot.HandleRaisePostDataChangedEvent()
   at System.Web.UI.Page.RaiseChangedEvents()
   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)

Parents
No Data
Reply
  • 2095
    posted

    Hello Nirav Golani,

    I would like to ask you for a sample, where the issue is isolated and can be observed. Otherwise have to guess what could be the reason.

Children
No Data