|
$(function () {
// declaration
country = [
{ id: "bk1", text: "Algeria" }, { id: "bk2", text: "Armenia" }, { id: "bk3", text: "Bangladesh" },
{ id: "bk4", text: "Cuba" }, { id: "bk5", text: "Denmark" }, { id: "bk6", text: "Egypt" },
{ id: "bk7", text: "Finland" }, { id: "bk8", text: "India" }, { id: "bk9", text: "Malaysia" },
{ id: "bk10", text: "Norway" }, { id: "bk11", text: "Singapore" }, { id: "bk12", text: "Romania" }
];
$('#dropdown').ejDropDownList({
dataSource: country,
enableFilterSearch: true,
watermarkText: "Select a bike",
fields: { id: "id", text: "text", value: "text" },
search:"onfiltersearch"
});
$("#dropdown_popup").ejWaitingPopup({ showOnInit: false });
});
function onfiltersearch(argument)
{
var wpobj = $("#dropdown_popup").data("ejWaitingPopup");
var ddlobj = $('#dropdown').data("ejDropDownList");
wpobj.show();
$.ajax({
type: 'POST',
url: '@Url.Action("DataSource", "Dropdownlist")',
data: {
search: argument.searchString,
},
success: function (response) {
wpobj.hide();
$("#dropdown").data("ejDropDownList").option("dataSource", response);
ddlobj.showPopup();
},
});
} |
|
function onfiltersearch(argument)
{
var wpobj = $("#dropdown_popup").data("ejWaitingPopup");
var ddlobj = $('#dropdown').data("ejDropDownList");
wpobj.show();
$.ajax({
type: 'POST',
url: '@Url.Action("DataSource", "Dropdownlist")',
data: {
search: argument.searchString,
},
success: function (response) {
wpobj.hide();
$("#dropdown").data("ejDropDownList").option("dataSource", response);
ddlobj.showPopup();
},
});
} |