asp.net mvc - Hide a Checkbox in mvc4 without using style -
i want set visibility of checkbox false without using style in mvc3.
@html.checkboxfor(model => model.eng, new { @id = "chkenergy1", @value = "true", @class = "chkenergy",@visible=false }).i have given not working
@html.checkboxfor(model => model.eng, new { @id = "chkenergy1", @value = "true", @class = "chkenergy",@style = "display:none;" }).
Comments
Post a Comment