rialto.url


Name space rialto.string
FILE rialtoEngine\javascript\core\baseRialto.js
NAME rialto.url
INHERITS
VERSION 0.86
update
DESCRIPTION methods to manipulate url



CONSTRUCTOR


Example:
this is an abstract object and all the method must be call using the rialto.url prefix

PUBLIC METHODS


Method Arguments list Return value Inherits To redefine
getArrayParameter Array no no
getObjectParameter Object no no
getSearch String no no
getUrl String no no

getArrayParameter

return an array with each parameter is an array with his name and his value.For example if in the url you have name=smith&age=28, the return array will be [['name','smith'],['age',28]]
Parameters:

getObjectParameter

return an object with parameter name as propertie with his value for example if in the url you have name=smith&age=28 the return object will be {name:'smith',age:28}
Parameters:

getSearch

return the parameter of the curent location (param1=value1&param2=value2)
Parameters:

getUrl

return the complete url of the curent location
Parameters: