html textField with aria settings

I am currently working on a project where all of my forms are based on the integrated html.startForm form setup for coldbox. I have hit a slight stop up in that I am unable to assign any aria settings to my form controls. It appears to be due to the setting name containing a dash in it which all aria settings are. Would there be a potential work around for this? I am trying the following code…

`

#html.textField(

name=“materialNo”,

bind=prc.material,

label=“Material Number:”,

required=“required”,

size=“50”,

class=“form-control”,

wrapper=“div class=controls”,

labelClass=“control-label”,

groupWrapper=“div class=form-group”,

aria-describedby=“materialnoHELP”

)#

Create a 6-digit ID number.

`

Try to place double quotes.

“aria-describedby”=“materialnoHELP”

Thanks, that did the trick!