col.xyz.query.param - deprecated
This property has been deprecated in favor of the inline parameters method
Inject the cascaded values into the query used to build the content of a dynamic list.
Class | column |
---|---|
Property | col.xyz.query.param |
Formal specification | col.xyz.query.param = <cascading field identifier> |
Required | no |
Default | none |
Version | 1.5 |
Comment | |
Example | gd.columns=country, cityÂ
Â
col.country=CountryÂ
col.country.type=listÂ
col.country.query=SELECT name, country_id FROM country_tblÂ
Â
#Â
# Cascade the selected value to the city columnÂ
#
col.country.cascade=cityÂ
col.country.query.ds=mysqlÂ
#Â
# Use the second parameter of the country query in the city queryÂ
#
col.city=CityÂ
col.city.type=listÂ
col.city.query=SELECT name, city_id FROM city_tbl WHERE country_id={0}Â
col.city.query.param=1
col.city.query.ds=mysqlÂ
datasource.names=mysql ...Â
|
Reference |