---
title: "RadGrid PageSizeComboBox is not finding"  
description: "RadGrid PageSizeComboBox is not finding"  
author: "Anonymous User"  
published: 2014-09-01  
updated: 2014-09-01  
canonical: https://www.mindstick.com/forum/2214/radgrid-pagesizecombobox-is-not-finding  
category: "c#"  
tags: ["c#", ".net", "radgrid", "RadGrid PageSizeComboBox", "PageSizeComboBox is not finding"]  
reading_time: 1 minute  

---

# RadGrid PageSizeComboBox is not finding

The PageSizeComboBox of radgrid [giving](https://yourviews.mindstick.com/view/80639/regifting-is-far-better-than-giving-away-a-bouquet) me [null](https://www.mindstick.com/forum/33922/how-to-use-null-coalescing-operator-in-c-sharp) [result](https://www.mindstick.com/blog/12011/advantages-of-getting-result-oriented-seo-from-an-agency) either in ItemDataBound Event or any other event. I need to get the [selected value](https://www.mindstick.com/forum/525/get-selected-value-of-datagridviewcomboboxcolumn) of RadGrid PageSizeComboBox. What should I do to get PageSizeComboBox

here is my code written in ItemDataBound event of Grid

if (e.Item is GridDataItem)

{

[RadComboBox](https://www.mindstick.com/forum/2212/how-to-add-radcombobox-to-cell-in-a-table-row-cell) PageSizeCombo = e.Item.FindControl("PageSizeComboBox") as RadComboBox;

}

I need to get this control. I want to get it on my [Button](https://www.mindstick.com/articles/63/how-to-add-button-in-datagridview-in-csharp-dot-net) [Click event](https://www.mindstick.com/forum/424/how-to-call-form_paint-event-on-button-click-event) also. Can any one help ?

## Replies

### Reply by Sumit Kesarwani

Hi jay,

try this:

\

if (e.Item is GridPagerItem)

{

GridPagerItem pagerItem = (GridPagerItem)e.Item;

RadComboBox PageSizeCombo = (RadComboBox)pagerItem.FindControl("PageSizeComboBox");

// Access ComboBox here

}


---

Original Source: https://www.mindstick.com/forum/2214/radgrid-pagesizecombobox-is-not-finding

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
