checkboxes are not working in IE9

Hi,

I have an application where a grid shows the messages to be posted for client review. Client approves or rejects by checking or unchecking the checkboxes given in grid for each row and a master checkbox in header. All is working fine for FF and google chrome but checkboxes are not working in IE9. When I load page first time all works fine when refresh and doing the same again is not working, not the database is affected and nor the status of checkboxes on the page.

However, when I clear the cache it again works one more time and then never. Same issue is for form submission, form submitted successfully but values not updated in the controls, when clearing cache it shows updated value. Saves well but donot update on browser.

Please let me know how to fix it.

Thanks

Hi,

Can any when assist this issue? Waiting!! as nothing got to solve this :cry:

Thanks

Unfortunately the issue cannot be reconstructed locally.
If issue still occurs - please provide any kind of sample of your code.

Which logic is used for data saving?

If you are using dataprocessor|connectors - they will use POST mode which must not be affected by cache. But if you are saving data by GET - data request can be taken from cache and do not hit the server.

In case of data loading, you can try to replace code like

grid.load(“some.php”)

with

grid.load(“some.php?uid=”+(new Date()).valueOf());

which will add unique element to each call and will prevent request caching.