Check documentation for the latest version of dhtmlxSuite getColumnNode DHTMLX Docs

getColumnNode

returns the DOM node of the specified column

HTMLElement getColumnNode(string|number pId,number index);
pIdstring|numberthe parent item's id, i.e. the id of the existing item which has a subform with columns ("null" for the top item)
indexnumberindex of newcolumn
HTMLElementthe column's DOM node

Example

myForm.getColumnNode(pId,index);

Details

for radio buttons you must specify the pId parameter as an array with 2 elements:

  • id - the radio button's id
  • value - the radio button's value
Back to top