Skip to content
This repository was archived by the owner on Jan 19, 2024. It is now read-only.

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

ScrollRefresh

Used with SobjContainer component. Wraps child components with scroll component and on pull-to-refresh makes parent SobjContainer to refetch data from server

See Dreamhouse App for sample code

Usage:

Import statement:

import { SobjContainer, ScrollRefresh } from 'react.force.datacontainer';

SobjContainer component JSX code:

<SobjContainer id={accountId} type='Account'>
<ScrollRefresh>
<YourComponent />
</ScrollRefresh>
</SobjContainer>