Blame view
imports/client/views/org/admin/students/addStudent.js
1.6 KB
796a9c53f
|
1 2 |
import _ from 'lodash'; import { Meteor } from 'meteor/meteor'; |
15998a6af
|
3 |
import './student.css' |
796a9c53f
|
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
import React, { Component } from 'react'; import { Link,browserHistory } from 'react-router'; import { FormGroup,Panel,Table, ButtonToolbar,Modal, FormControl,Glyphicon,Button } from 'react-bootstrap'; import { AddStudentForm } from './addStudentForm'; const style = { margin: 12, }; export class AddStudent extends Component { constructor(props) { super(props); this.state = { show: false }; this.showModal = this.showModal.bind(this); this.hideModal = this.hideModal.bind(this); this.onUpdate = this.onUpdate.bind(this); }; showModal() { this.setState({show: true}); } hideModal() { this.setState({show: false}); } onUpdate(key, value) { this.setState({[key]: value}); }; render() { return ( |
796a9c53f
|
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
<ButtonToolbar> <Button bsStyle="primary" onClick={this.showModal}> Add Student </Button> <Modal {...this.props} show={this.state.show} onHide={this.hideModal} dialogClassName="custom-modal" > <Modal.Header closeButton> <Modal.Title id="contained-modal-title-lg">New Student</Modal.Title> </Modal.Header> <Modal.Body> <AddStudentForm /> </Modal.Body> <Modal.Footer> <Button onClick={this.hideModal}>Close</Button> </Modal.Footer> </Modal> </ButtonToolbar> |
796a9c53f
|
59 60 61 62 |
); }; }; |