Code Monkey home page Code Monkey logo

Comments (4)

saleel avatar saleel commented on August 28, 2024

Hi there,

You are in full control of the item you want to present in the grid. You can define your own TouchableOpacity in renderItem and have your own onTap equivalent callbacks.

Similarly, delete functionality can be implemented on your end by adding a delete button and on clicking that you can remove the item from the items array. If this items is in your state and the same state variable is passed the grid as items prop, then the grid will re-render.

from react-native-super-grid.

gds3k3 avatar gds3k3 commented on August 28, 2024

Thanks for you fast response.

Already tried a TouchableOpacity around each item, it get triggered on initial render and never more.

				renderItem={item => (
					<TouchableOpacity 
						onPress={this.props.click(item.name)} 
						underlayColor="blue">
						<View style={[styles.itemContainer, { backgroundColor: item.code }]} >
							<Image
									style={styles.button}
									source={require('../assets/images/robot-dev.png')}
								  />						
							<Text style={styles.itemName}>{item.name}</Text>
							<Text style={styles.itemCode}>{item.code}</Text>
						</View>
					</TouchableOpacity>				
				)}

Sorry I am just starting with react/native, it is probably me doing something wrong.

Thanks you.

from react-native-super-grid.

saleel avatar saleel commented on August 28, 2024

Try onPress={() => this.props.click(item.name)}

onPress expects a function as the value. You are calling the function there, and onPress gets the return value from props.click and not the actual function.

props.click is executed for each item when the component is rendered initially, which is why you saw the click results on first load (even without clicking the item I suppose).

from react-native-super-grid.

gds3k3 avatar gds3k3 commented on August 28, 2024

Thats works. It can bubble the click correctly now.
Many thanks again!

from react-native-super-grid.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.