Thursday, 14 September 2017

Dropdownlist with Checkboxes in ASP.NET

Dropdownlist with checkboxes in asp.net more...


// required to make drop down list works with postback and update panel
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);
    function EndRequestHandler(sender, args) {
        //Binding Code Again
        $('.multi-select').SumoSelect({ okCancelInMulti: true, selectAll: true });
}

No comments:

Google Form using App Script

Create a Google Sheet with the following headers: First Name, Last Name, DoB Create a Google Form with the exact headers as Google Sheet he...