Advertisement
MD500_Pilot

Untitled

Sep 3rd, 2022 (edited)
825
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.09 KB | None | 0 0
  1. new gridjs.Grid({
  2.         columns: [
  3.           { id: 'id', name: 'Event ID', width: '130px', sort: false},
  4.           { id: 'aircraft', name: 'Aircraft', width: '130px', 'attributes': editableCellAttributes },
  5.           { id: 'training_under_part', name: 'Part', width: '120px', 'attributes': editableCellAttributes },
  6.           { id: 'event_type', name: 'Event Type', sort: false, 'attributes': editableCellAttributes },
  7.           { id: 'event_start_time', name: 'Start Time', sort: false, 'attributes': editableCellAttributes },
  8.           { id: 'event_date', name: 'Event Date', sort: false, 'attributes': editableCellAttributes },
  9.           { id: 'client', name: 'Client', sort: false, 'attributes': editableCellAttributes },
  10.           { id: 'notes', name: 'Notes', sort: false, 'attributes': editableCellAttributes },
  11.           { id: 'assigned', name: 'Assigned', sort: false, 'attributes': editableCellAttributes },
  12.           { id: 'instructor_accepted', name: 'Instructor', sort: false, 'attributes': editableCellAttributes },
  13.           { id: 'delete_link', name: 'Delete', sort: false },
  14.         ],
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement