Invalid postback or callback argument. Event validation is enabled usingin configuration
After googling alot I got some crazy answers like go to web.config and set enableEventValidation to true but this didn't solved problem. At the end it was simple. Just put your databinding code (in my case LoadData() function) inside IsPostBack like this.
if (!IsPostBack)
{
LoadData();
}
Happy coding...:)