Is it possible to disabling and enabling K2 drop down list by JQuery? Thank you in advance.
Page 1 / 1
Hello
Create a datalabel in ur smartform , Make sure to have literal property checked for this data label .
Note: In my scenario , my first textbox name = a
my second textbox name = b
Add expression to this datalabel , which has the following
<script type="text/javascript">
$('[name="a"]').keyup(function(event){
$('[name="b"]').removeClass("disabled") ;
$('[name="b"]').removeAttr("disabled");
});
</script>
on change on textbox named "a" , it will enable the second textbox "b"
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.