Managed Metadata
Posted by stieland - Feb 25 ’14 at 02:49
I am trying to work with Managed Metadata fields and have not been able to pick up the change event for a Managed Metadata field.
fd.field('RCategory').change(function() {
alert('Category Changed');
});
Never fires the alert. Do Managed Metadata fields work differently?
-
YuriyMedvedevModeratorMember for: 6 years 8 months 11 days
[#10]: Use the code:
fd.onsubmit(function() { if (fd.field('FieldName').control()._el().find('.ms-taxonomy .valid-text').length == 0) { alert('The field has not been populated'); return false; } return true;})
-
KatyMemberMember for: 8 years 10 months 20 days
[#11]: Works great, thank you!
Displaying 11 to 12 of 12 messages