
In the below code value is resetting to empty but the value is not setting afterwards.
OnDialogAcceptOffer:function(){
$("#offerStatus option:selected").each(function(){
$(this).prop("selected",false);
$(this).removeAttr("selected");
});
$("#offerStatus option:eq(3)").attr('selected',"selected");
$("#offerStatus option:eq(3)").attr('selected',true);
$("#offerStatus_Value").val("2");
$("#offerStatus_SelectedIndex").val("3");