I've been on a new job so I'm not tremendously familiar with SilverStripe ... using it here is my first experience with it. That being said, I'm having a problem that I hope is super-simple that somebody can help me with, because I'm not having any luck solving it.
We have a form that has ~8-10 input fields and two of them aren't populating the CSS class in the div that wraps the div that contains the text area. For instance, we have this html rendering on our servers:
<div >
<div id="MemberBio" class="field textarea "><label class="left" for="Form_EditProfileForm_MemberBio">Talk about your previous work experience, your life, or both</label><div class="middleColumn"><textarea id="Form_EditProfileForm_MemberBio" name="MemberBio" rows="5" cols="20"></textarea></div></div>
</div>
but when we run the identical code base locally, we're getting
<div class="MemberBio">
<div id="MemberBio" class="field textarea "><label class="left" for="Form_EditProfileForm_MemberBio">Talk about your previous work experience, your life, or both</label><div class="middleColumn"><textarea id="Form_EditProfileForm_MemberBio" name="MemberBio" rows="5" cols="20"></textarea></div></div>
</div>
That MemberBio class in the div makes all the difference (without it the layout is pretty messed up) in this and I'm not having a ton of luck figuring out where this is generated. If anybody has any ideas, or can at least ask me questions that will steer me in the right direction, I would really appreciate it!
Thanks,
Sam