function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Sankar GaneshSankar Ganesh 

export to excel button not working properly

I installed the package for export to excel of red kite and I followed the steps for installation as mentioned in this link http://www.redkitetechnologies.com/apps/export-to-excel/ 
Its not working when we export all records.If I select a particular record to export then I have upto 20 or 50 records varies to each object but can't select more to export.
I have created the below visualforce page for export to excel button
<apex:page standardController="Account" recordSetVar="recordSet" extensions="RKExportToExcel.ExportToExcelController" readOnly="true" sidebar="false" showHeader="false">

	<c:ExportToExcelComponent exportController="{!exportController}" />

</apex:page>

All the other controller and component are package. Can any one face this issue before or how to export the records to excel in list view.