Hi there. I have an odd situation that only occurs on a particular win 10 machine that I have found so far. My development machine is fine in any browser and a win 10 machine here is also OK. This is a client machine that is of course saying my software is not stable.
What I am doing is I have a IWRegion in cell 0 with 2 IW image buttons on it (delete button is image_app\DeleteIcon.png). The user is just clicking on the delete button and then I am invoking the native grid delete function. The row deletes from the grid fine but then the buttons shift up like if the render process just stops.
The code in the button is below:
BudgetGrid.JQGridOptions.SetSelection((Sender as TIWIMageButton).Tag, True); // To Select the row
SelRow:= inttostr((Sender as TIWIMageButton).Tag);
if (SelRow = '') then
WebApplication.ShowMessage('Please select a budget row before clicking the delete button.')
else
BudgetGrid.JQGridNav.ShowDeleteDialog(SelRow);
Any ideas what we can do to stabilize this odd situation? I was thinking maybe placing AjaxReRender() somewhere maybe to kick ajax but unsure where to place that command when using the grids native delete function or if this is even the right approach.
In the cell design I have the control position as jqpoLeftBottom. I cannot seem to insert a picture here of what the screen looks like after the delete to see the buttons in cell0 shifted up. I will see if I can add after I post this. It is like the bottom position command I am using just stops working. Just all theories since I cannot see anything wrong in my code and it works on other machines just fine. My fear is if he is having this issues others may too out there when implemented.
Cheers!