AngularJs not working with dynamic html

Posted by user2541753 on Stack Overflow See other posts from Stack Overflow or by user2541753
Published on 2013-10-25T15:04:42Z Indexed on 2013/10/25 15:54 UTC
Read the original article Hit count: 209

In my cshtml file I have a form named 'ApplyMedicalMain' and I want to show a dynamically loaded division when the form is dirty but its not happening even though the form is dirty ...

Below is my code that i got in Firefox Inspect Element:

<form class="form_section ng-dirty ng-valid ng-valid-required" name="ApplyMedicalMain" method="post" action="/MVC/Quote/ApplyMedical">
<div id="Step1_PartialView" class="QuoteStep1">
<script type="text/javascript" src="/Scripts/Renderings/Presales/ApplyMedical.js">
<div name="Conditions" id="conditions_or_symptoms" ng-hide="ApplyMedicalMain.$dirty">
<div class="generic_error_message select">
<div class="error_icn_message"></div>
</div>

As you can see above, I have mentioned ng-hide for the division name='conditions' but it is not getting hidden even though the form has class 'ng-dirty'.And please note that the the division 'conditions' is loaded dynamically from other partial view. can someone help me ?

© Stack Overflow or respective owner

Related posts about asp.net-mvc

Related posts about angularjs