Dynamic templates in listview based on device in EJ2 JavaScript Listview control

8 May 20237 minutes to read

The Syncfusion Essential JS2 controls are desktop and mobile-friendly. So, you can use Syncfusion controls in both modes. The control templates are not always fixed. Applications may need to load various templates depending upon the device.

Integration

In the ListView control, template support is being used. In some cases, the control wrapper is always responsive across all devices, but the template contents are dynamically changed with unspecified (sample side) dimensions. CSS customization is also needed in sample-side to align template content responsively in both mobile and desktop modes. Here, two templates have been loaded for mobile and desktop modes. To check the device mode, a browser module has been imported from the ej2-base package.

var mob_template = '<div class="settings">'
        + '<div id="postContainer"><div id="postImg">'
        + '<img src=${image} /></div>'
        + '<div id="content">'
        + '<div id="info">'
        + '<div id="logo"> <div id="share">'
        + '<span class="share"></span> </div> <div id="comments"> <span class="comments"></span> </div>'
        + '<div id="bookmark"> <span class="bookmark"></span> </div></div></div> '
        + '<div class="name">${Name}</div>'
        + '<div class="description">${content}</div>'
        + '<div class="timeStamp">${timeStamp} </div>'
        + '</div>'
   
    var template = '<div class="settings">'
        + '<div id="postContainer"><div id="postImg">'
        + '<img src=${image} /></div>'
        + '<div id="content">'
        + '<div class="name">${Name}</div>'
        + '<div class="description">${content}</div>'
        + '<div id="info">'
        + '<div id="logo"> <div id="share">'
        + '<span class="share"></span> </div> <div id="comments"> <span class="comments"></span> </div>'
        + '<div id="bookmark"> <span class="bookmark"></span> </div></div> '
        + '<div class="timeStamp">${timeStamp} </div>'
        + '</div>'
        + '</div>'
      
    //Define an array of JSON data
    var dataSource = [
        { Name: 'IBM Open-Sources Web Sphere Liberty Code', content: 'In September, IBM announced that it would be open-sourcing the code for WebSphere...', id: '1', image: 'https://ej2.syncfusion.com/demos/src/listview/images/1.png', timeStamp: 'Syncfusion Blog - October 19, 2017' },
        { Name: 'Must Reads: 5 Big Data E-books to upend your development', content: 'Our first e-book was published in May 2012-jQuery Succinctly was the start of over...', id: '2', image: 'https://ej2.syncfusion.com/demos/src/listview/images/2.png', timeStamp: 'Syncfusion Blog - October 18, 2017'  },
        { Name: 'The Syncfusion Global License: Your Questions, Answered ', content: 'Syncfusion recently hosted a webinar to cover the ins and outs of the Syncfusion global...', id: '4', image: 'https://ej2.syncfusion.com/demos/src/listview/images/3.png', timeStamp: 'Syncfusion Blog - October 18, 2017'  },
        { Name: 'Know: What is Coming from Microsoft this Fall ', content: 'On October 17, Microsoft will release its Fall Creators Update for the Windows 10 platform...', id: '5', image: 'https://ej2.syncfusion.com/demos/src/listview/images/6.png', timeStamp: 'Syncfusion Blog - October 17, 2017'  }
    ];
   var wintemplate;
  if(ej.base.Browser.isDevice){  
        document.getElementById('List').style.width = '350px';
        wintemplate = mob_template;
      }
        else {
        wintemplate = template;
      }

    // Initialize ListView component
    var listObj = new ej.lists.ListView({ 

        //Set defined data to dataSource property
        dataSource: dataSource,

        //Map the appropriate columns to fields property
        fields: { text: 'Name', },
        
        //Set customized template
        template: wintemplate,

        //Set header title
        headerTitle: 'Syncfusion Blog',

        //Set true to show header title
        showHeader: true

    });

    //Render initialized ListView component
    listObj.appendTo('#List');
<!DOCTYPE html><html lang="en"><head>
    <title>Essential JS 2 for ListView </title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="Essential JS 2 for ListView UI Control">
    <meta name="author" content="Syncfusion">
    <link href="index.css" rel="stylesheet">
    <link href="https://cdn.syncfusion.com/ej2/25.1.35/ej2-base/styles/material.css" rel="stylesheet">
    <link href="https://cdn.syncfusion.com/ej2/25.1.35/ej2-lists/styles/material.css" rel="stylesheet">
    
    
<script src="https://cdn.syncfusion.com/ej2/25.1.35/dist/ej2.min.js" type="text/javascript"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>

<body>
    
    <div id="container">
    <div class="col-lg-12 control-section">

        <!-- ListView element -->
        <div id="List" tabindex="1">
    
        </div>
    </div>
</div>


<script>
var ele = document.getElementById('container');
if(ele) {
  ele.style.visibility = "visible";
}   
      </script>
<script src="index.js" type="text/javascript"></script>
</body></html>