wbraganca / yii2-dynamicform

It is widget to yii2 framework to clone form elements in a nested manner, maintaining accessibility.
Other
436 stars 438 forks source link

set default value of dropDownList which is a part of dynamic Form #214

Open jainabhishek14 opened 7 years ago

jainabhishek14 commented 7 years ago

How to set default Value of dropDownList field I have tried

but nothing works

sokollondon commented 11 months ago

Solution

$(function () {
    $(".dynamicform_wrapper").on("afterInsert", function(e, item) {
        $(item).find("select[id$='-city_id']").val(4);
    });
});