---
title: "Re-load jqgrid data based on the asp combobox selection"  
description: "Re-load jqgrid data based on the asp combobox selection"  
author: "Manoj Bhatt"  
published: 2014-08-25  
updated: 2014-08-25  
canonical: https://www.mindstick.com/forum/2123/re-load-jqgrid-data-based-on-the-asp-combobox-selection  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 1 minute  

---

# Re-load jqgrid data based on the asp combobox selection

Is it possible to [reload](https://www.mindstick.com/forum/224/title-reload-assembly-to-extend-with-new-types) jqgrid onchange of asp [combobox](https://www.mindstick.com/articles/57/display-record-according-to-combobox-selection-in-csharp-dot-net)?

[Am trying](https://answers.mindstick.com/qa/36834/which-two-programming-languages-should-i-master-in-if-i-am-trying-to-get-into-google-or-facebook) to get [dropdown list](https://www.mindstick.com/forum/760/dropdown-list-open-hide-behind-another-dropdown-list-on-ie-7) change like this :

$("#txtGroupLevel").change($("#table").jqGrid({

postData: { groupId: $("#txtGroupLevel [option](https://www.mindstick.com/forum/159391/jquery-get-selected-option-from-dropdown):selected").val() },

Is this the [right](https://www.mindstick.com/articles/12766/check-whether-you-are-doing-digital-transformation-right-or-not) way to do? even though [am unable](https://answers.mindstick.com/qa/95314/how-do-i-access-a-group-link-in-telegram-if-i-am-unable-to-access-the-link) to get the [selected value](https://www.mindstick.com/forum/525/get-selected-value-of-datagridviewcomboboxcolumn) from dropdown.

Kindly assist.

## Replies

### Reply by Sumit Kesarwani

Hi Manoj, \
try this:\

```
 $(function () {       
$("#txtGroupLevel").change($("#table").trigger("reloadGrid"));    });postData: { groupId: $("#<%= txtGroupLevel.ClientID
%>").val() }
```


---

Original Source: https://www.mindstick.com/forum/2123/re-load-jqgrid-data-based-on-the-asp-combobox-selection

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
