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.