Jump to content

gbh100

Members
  • Posts

    4
  • Joined

  • Last visited

Profile Information

  • Gender
    Male

gbh100's Achievements

Newbie

Newbie (1/4)

0

Reputation

  1. I had this same issue. I located the record in the underlying dataset and it was selected in the grid, however the selection was not showing unless it was in the top rows. How do you make the grid show the current record.
  2. gbh100

    dbGrid refresh

    Here is the code: procedure TfrmEditTeam.grdBattersDblClick(Sender: TObject); begin frmPlayerEdit(True, qryBatters_ID.AsInteger).ShowModal; qryBatters_.Refresh; end; As you can see there is not much to see here. The frmPlayerEdit is an editing form with its own instance of the table being edited. The table is refreshed after the change and does get the updated information as the VCL version works. I have tried closing and opening the table and that has the same results. When I double click another or even the same row to initiate another edit I see the underlying grid update before the new edit window is drawn. It seems that the mechanism notifying the web client of a change is not aware of any changes to notify the client about.
  3. gbh100

    dbGrid refresh

    The edit is not actually done on the grid, but rather a modal window is used to perform the edit. After the modal window edit is completed I use a dataset.refresh to try and get the updated information. It works fine in the Win32 application. The dataset is actually a query and I also tried closing the query and re-querying which also works fine in the Win32 app but not in the Web version. Is there a way to force the web screen to update? I'm sure the underlying dataset has the new information in both cases but the web screen is unaware of the changes.
  4. gbh100

    dbGrid refresh

    I have an application where I open a window to edit information contained in a grid. After the line has been edited in the other window I refresh the table in the host grid and the changes are shown. this works fine in the Windows App but when I run it in a browser (IE9) the change doesn't show until I go to edit the same line again. Is there something I have to do to refresh the web version of the grid? Is this a bug or just my being lame?
×
×
  • Create New...