asp.net - RadGrid1.Items is null -


enter code here protected void btnshortlist_click(object sender, eventargs e) {     foreach (griddataitem item in rg_results.items)     {         checkbox chkselected = (checkbox)item.findcontrol("chkselected");         if (chkselected.checked == true)         {             applicant_status(item.cells[3].text.trim(), 1, 0);         }     }  } 

rg_results.items null , cannot enter in foreach loops note:i'm not using rad grid need data source event because conflict javascripts please me?

use rg_results.mastertableview.items instead of rg_results.items


Comments

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

visual c++ - Using relative values in array sorting ( asm ) -