Iam design ExtJs Combo and bind from database
var AddEditPeopleStoreCompanyLocation = new Ext.data.JsonStore
({
id: 'AddEditPeopleStoreCompanyLocation',
fields: ['DID', 'Name'],
url: '@Url.Content("~/Admin/GetCompanyLocations")',
//data: [["1", "Head Quaters"], ["2", "Main"]],
root: 'EntityArr',
idProperty: 'KID',
totalProperty: 'ArrayLength',
remoteSort: true,
autoDestroy: true,
autoLoad: true
});
my requirment is when i cilk on save button i have find out selected value of combo in controller for this iam using
public void InsertOrUpdateContactDetails(FormCollection FC)
{
//
}
so how to get selected value of combo in this above function thanks in advance