Click here to Skip to main content
15,905,877 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
C#
function loadData() {
    allTasks = CallAjax('/Plan/GetTasks');
    backlogTasks = getTasksByState(1);
    resolvedTasks = getTasksByState(2);
    closedTasks = getTasksByState(3);
    $("#listBacklog").ejListBox({
        dataSource: backlogTasks
    });
    ..................
    };

I want set like that, but it respond is $(...).ejListBox is not a function.

Thanks all,
Posted

1 solution

Follow the documentation\instructions for implementing the ejListBox plug in, they are usually on the site you got it from. You will be missing a script tag, or have the script tags in the wrong order\location.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900