QueryCurrentRow
Method Signature
QueryCurrentRow(query=[query])Arguments
Argument
Type
Required
Description
Default
Examples
Simple QueryCurrentRow Example
<bx:set myQuery = queryNew( "id,name", "integer,varchar", [
[
1,
"Rajesh"
],
[
2,
"Anil"
]
] ) >
<bx:loop query="myQuery">
<bx:if name == "Anil" >
<bx:output>#queryCurrentRow( myQuery )#</bx:output>
</bx:if>
</bx:loop>Simple currentRow Example
Additional Examples
Related
Last updated
Was this helpful?
