Removing check box from SharePoint List view

Have you ever thought that checkbox in each and every list item annoying in your list view? Do you want to remove them ? Yeah it can be done via sharepoint designer. 
 
Just open the page in Sharepoint Designer and do the following modifications.
 
<WebPartPages:XsltListViewWebPart runat=”server” IsIncluded=”True” GhostedXslLink=”main.xsl” …….”>
<XmlDefinition>
<View Name=”{xxxxxx-xxxx-xxxx-xxxx-xxxxxxx}”TabularView=”FALSE” MobileView=”TRUE” Type=”HTML” DisplayName=”All Items” Url=”….”>
 
 
*Tabular View is the property that needs to set as False.
 
Now the job is done.
 
Happy Share Pointing :-)