Monday, September 8, 2014

Bind a Dictionary to a DropDownList

Dictionary<stringstring> openWith = new Dictionary<stringstring>();
 
// Add some elements to the dictionary. There are no  
// duplicate keys, but some of the values are duplicates.
openWith.Add("txt""notepad.exe");
openWith.Add("bmp""paint.exe");
openWith.Add("dib""paint.exe");
openWith.Add("rtf""wordpad.exe");
 
DDL.DataSource = openWith
    .Select(r => new KeyValuePair<stringstring>(r.Key, r.Value))
    .ToList();
DDL.DataTextField = "Key";
DDL.DataValueField = "Value";
DDL.DataBind();

call change() event handler if I select radio button programatically

$(function () {
    $('input[name=type]').change(function () {
        alert($(this).val());
    });
    $('input[value=SV]').attr('checked''checked').trigger('change');
});