Searchbox Template"

From Documentation
(Searchbox template)
 
m ((via JWB))
Line 33: Line 33:
 
=Version History=
 
=Version History=
 
{{LastUpdated}}
 
{{LastUpdated}}
{| border='1px' | width="100%"
+
{| class='wikitable' | width="100%"
 
! Version !! Date !! Content
 
! Version !! Date !! Content
 
|-
 
|-

Revision as of 08:18, 11 January 2022


Searchbox Template


Similar to Listbox, you can render a searchbox with a template. However, notice that, unlike other components, searchbox doesn't allow any child component, so you have to render each item as a string, a <label> or a <html>. For example,

<searchbox model="${users}">
	<template name="model">
		Name is ${each}
	</template>
</searchbox>

<searchbox model="${users}">
	<template name="model">
		<label value="Name is ${each}"/>
	</template>
</searchbox>

<searchbox model="${users}">
	<template name="model">
		<html><![CDATA[
		Name is ${each}
		]]></html>
	</template>
</searchbox>

where we assume there is a list model (ListModel) called users such as:

ListModelList model = new ListModelList(new String[] { "Tony", "Ryan", "Jumper", "Wing", "Sam" });

Version History

Last Update : 2022/01/11


Version Date Content
9.0.0 September 2019 ZK-4380: Provide a Searchbox component



Last Update : 2022/01/11

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.