Hi All
I have a dropdown that binds with Database and here is the code:
var stat = db.tb_Status.ToList();
ddltype.DataSource = stat;
ddltype.DataTextField = "Status";
ddltype.DataValueField = "Status_Id";
ddltype.DataBind();
ddltype.Items.Insert(0, new ListItem("Select Vehicle Status"));
I managed to hide them initially like this:
$("[id*=btnAdd]").hide();
I want them to show depending on selected value on the dropdown.
Please Assist.
Midhun TpPosted Apr 11, 2017, 4:40 AM
Ramesh PalanivelPosted Apr 11, 2017, 5:04 AM
Sbonga MathobelaPosted Apr 11, 2017, 4:54 AM