Rank: Newbie Groups: Member
Joined: 7/11/2013 Posts: 2
|
Hello everybody
Actually I'm implementing a EO.Grid in my web site, but a have a problem when I trying to get the ChangedItems list. All in my page seems to be normal, I change the cells value, but when I check ChangedItems.Length property, returns 0. (I'm setting the FullRowMode param to false). Please, what am I doing wrong?
Thanks, Regards
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,195
|
Hi,
Check whether you are repopulating the Grid every time. Usually you should only populate the Grid on initial load (when Page.IsPostBack is false). If you repopulate the Grid every time, then everything is wiped out, including the ChangedItems collection, when you repopulate the Grid.
Thanks!
|
Rank: Newbie Groups: Member
Joined: 7/11/2013 Posts: 2
|
Exactly, thank you for your time.
|