Contact Support
Template Support
15 Dec 20172 minutes to read
The data-ej-imageTemplateId attribute is used to customize the image of Tile with template feature by setting the id. The “data-ej-captionTemplateId” attribute is used to customize the text of Tile with template feature by setting the id.
Refer to the following code examples.
<div id="tile"></div>
<div id="imageTemplate">
<div id="appimage">
</div>
<div class="tileMargin">
<span class="caption">Google Search</span><br />
<span class="description">The world’s information</span><br />
<span class="sub">Free</span>
</div>
</div>
<div id="captionTemplate" class="title">Windows Store</div>
Add the following code inside the script tag.
$("#tile").ejTile({ tileSize: "wide", imageTemplateId: "imageTemplate", captionTemplateId: "captionTemplate" });
Add the following code into sample.
<style>
#appimage {
background-image: url("http://js.syncfusion.com/UG/mobile/content/google.png");
background-position: center center;
background-repeat: no-repeat;
background-size: 50% auto;
display: table-cell;
width: 45%;
}
.tileMargin {
display: table-cell;
padding-top: 25px;
}
.e-tile-template {
display: table;
height: 100%;
width: 100%;
}
</style>