Leonard-Li777 / antd-table-infinity

An infinite scroll component based on antd-table that supports virtual scrolling
Other
284 stars 47 forks source link

screen size of 1920 and above screen page scroll is not working #41

Open rohit-c247 opened 2 years ago

rohit-c247 commented 2 years ago

Hello i have used this package in the project. I am facing issues with the large screen table scroll not working on a large screen. please check the below code


<Table
          rowKey="CampaignId" // Important, otherwise scrolling page will be a problem
          loading={props.loading}
          onFetch={props.getCampaignList}
          pageSize={100}
          loadingIndicator={loadMoreContent}
          columns={columns}
          scroll={{ y: 750 }}
          dataSource={props.data}
          // bordered
           debug
        />