Get attr vals

From SDU
Revision as of 10:05, 1 October 2008 by Mitcr01 (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
To make corrections or additions to this article, select the edit tab above.
To discuss or ask questions about this article, select the discussion tab above.

Overview

Get values of attributes on the root object.

Usage

get_attr_vals(int count, [ string attr_path... ])

  • count - number of attributes to get. It must corresponds to the number of attr_path parameters
  • attr_path - name of the attribute with dot convention (you can ask for value also on subsidiary objects)

Result

You can found values in msg array on a triplicate position (first value is on msg[3], second on msg[6] and so on)

Examples

  • get first name, last name and email from CR's customer

<source lang="javascript"> send_wait (0, this, "get_attr_vals", 3, "customer.first_name", "customer.last_name", "customer.email"); cstName = msg[3]; cstSurname = msg[6]; cstEmail = msg [9]; </source>