The PageSizeComboBox of radgrid giving me null result either in ItemDataBound Event or any other event. I need to get the selected value of RadGrid PageSizeComboBox. What should I do to get PageSizeComboBoxhere is my code written in ItemDataBound event of Grid\[code\] if (e.Item is GridDataItem) { RadComboBox PageSizeCombo = e.Item.FindControl("PageSizeComboBox") as RadComboBox; }\[/code\]I need to get this control. I want to get it on my Button Click event also.Can any one help ?