Check documentation for the latest version of dhtmlxSuite dhtmlxScheduler DHTMLX Docs

dhtmlxScheduler

get_id

returns id of the item.

<cfset dataItem.get_id()>

Parameters:

  • none.

See also:

get_index

returns an index of the currently selected item (for example, in grid, it will be an index of row ).

<cfset dataItem.get_index()>

Parameters:

  • none.

get_value

returns value of a field.

<cfset dataItem.get_value(name)>

Parameters:

  • name - name or alias of the field.

See Also:

set_id

sets id of the item.

<cfset dataItem.set_id(value)>

Parameters:

  • value - id of the item. See also:

  • get_id

set_options

assigns options collection to the column.

<cfset dataItem.set_options(name,options);>

Parameters:

  • name - the name of the column
  • options - an array of options or a connector object

skip

ignores the current item while rendering output. Allows to define custom filtering rules.

<cfset dataItem.skip()>

Parameters:

  • none.

set_value

sets value of a field.

<cfset dataItem.set_value(name, value)>

Parameters:

  • name - name or alias of the field
  • value - value of the field in question

See Also:

Back to top