Child pages
  • QName
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 21 Current »

Refresh page Apr 25, 2024 17:27

Supported Clients
SmartClient WebClient NGClient

Property Summary
String localName Identifies the local name of the QName.
String uri Identifies the namespace of the QName, if applicable.

Property Details

localName

Identifies the local name of the QName.

Returns

Supported Clients

SmartClient,WebClient,NGClient

Sample

var Qnamevar = new QName('http://www.w3.org/1999/xhtml', 'author');
application.output(Qnamevar.localName);
application.output(Qnamevar.uri);

uri

Identifies the namespace of the QName, if applicable.

Returns

Supported Clients

SmartClient,WebClient,NGClient

Sample

var Qnamevar = new QName('http://www.w3.org/1999/xhtml', 'author');
application.output(Qnamevar.localName);
application.output(Qnamevar.uri);

  • No labels