Hi,
I am facing problem of cell painting in wingrid. I am using IBindingList as datasource . If any update happens in binding list, particular cell should refresh with new value but it is not doing same behaviour. It happens only when I do any action like mouse move, mouse click , resize of window etc.
Please suggest, how can I remove this behaviour?
Neeraj,
Without being able to see what's going on in your project, I can't really guess what's going on. It's generally a good idea to test with the latest hotfix to see if there was an issue that has been resolved already. You could also contact Developer Support and have them look into the issue further if you don't want to post a small sample here online.
-Matt
when i am using same datasource with .net datagridview. it works fine.
datagrid is also working fine when any item add in binding list, new item add into grid. only problem is update.
-neeraj
From the sound of it, it seems like the type in your data source isn't notifying the BindingList (or the grid) that its contents have changed, so the grid doesn't know that it should update that cell. If you're using the BindingList<T> class, you could implement INotifyPropertyChanged on your type, since the BindingList knows to hook this type and will propogate the notification to the BindingManager.