Check documentation for the latest version of dhtmlxSuite setNote DHTMLX Docs

setNote

adds the note block under the specified input

void setNote(string name,string value,object note);
namestringthe name of an item
valuestringthe value of an item (for a radio button)
noteobjectthe note object

Example

myForm.setNote(name, {
    text: "Enter your project name here. The field is required.", width:300
});

Back to top