b:get.field

<b:get.field />

Displays received content from b:get.

This tag is used inside <b:get> to display entries. getdata is replaced with the value defined in the name attribute of <b:get>.

To define the control from which the data is displayed this tag uses dot notation such as <b:get.topic/>.

Examples

Simple data request and display

Here we request all the data from the data model cars. Make of the car with a link to the car's page and the model and speed of the car is then placed inside a table.

<table>
	<tr>
		<th>Make</th><th>Model</th><th>Speed</th>
	</tr>
	<b:get from="cars" name="car">
		<tr>
			<td><b:car.make/></td>
			<td><b:car.model/></td>
			<td><b:car.speed/></td>
		</tr>
	</b:get>
</table>