Skip to content Skip to sidebar Skip to footer

Cascading Drop Downs Repeatedly Populated

I have a three level cascading drop down Customer > Project > Task When I pick a customer I just want to pick that customers projects When I pick a project I just want to pic

Solution 1:

refreshProjectTaskFromProject() is called from with in the $.each. It needs to be outside of that loop.

Edit: Oh, and you're missing a semi-colon after the append().

Post a Comment for "Cascading Drop Downs Repeatedly Populated"