We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

check box appears at right of the entries.

I would like to have the checkbox to the left of every entry.  Is this possible?  thank you.

2 Replies

AP Arun Palaniyandi Syncfusion Team May 12, 2017 09:57 AM UTC

 
Hi Lawrence,  
  
Thanks for contacting Syncfusion Support.       
      
Yes, it is possible to set the check box to the left of every entry. We can achieve this functionality manually by customizing the CSS of the ListView by using its cssClass property. Please include the below custom CSS in your ListView to get the change.  
  
<script> 
 
        $("#defaultlistbox").ejListView({ 
                      enableCheckMark: true, 
                     cssClass: "customclass",  
                      width: 400 
}); 
 
    </script>   
 
 <style> 
 
     // to make the checkbox in left 
 
   .customclass .e-list .e-lv-checkdiv { 
            float: left; 
        } 
     // to adjust the list text after the checkbox 
 
   .customclass .e-list.e-state-default > .e-chevron-right_01 .e-list-text { 
            padding-left: 10px; 
        } 
    </style>
  
  
  
   
 If the shared details and sample do not meet your requirement, please send us more information to help us provide a solution       
       
Regards,       
Arun P.    



PN Preethi Nesakkan Gnanadurai Syncfusion Team May 15, 2017 04:23 AM UTC

From: lawrence.greenberg@judicialdialog.com [mailto:lawrence.greenberg@judicialdialog.com]
Sent: Friday, May 12, 2017 9:21 AM
To: Syncfusion Support <support@syncfusion.com>
Subject: RE: Syncfusion support community forum 130422, check box appears at right of the entries., has been updated.
 

Thank you, Arun

Loader.
Up arrow icon