mleibman / SlickGrid

A lightning fast JavaScript grid/spreadsheet
http://wiki.github.com/mleibman/SlickGrid
MIT License
6.81k stars 1.98k forks source link

Error when editors are called in column initialization #1029

Open Thasha opened 9 years ago

Thasha commented 9 years ago

Hello, I was trying a couple of examples provided in example section of slickgrid. While initializing columns along with options ,i have come across an error that says " Unable to get value of the property 'Text': object is null or undefined".Below is an example wherein i tried initializing a column.I have loaded slick.editors.js file in my application. The, editor: Slick.Editors.Text , when mentioned in column throws the above error. Am i missing any file or is it due to anyother issue? Could anyone please figure out and help me what might be the reason? var columns = [ { id: "title", name: "Title", field: "title", width: 120, cssClass: "cell-title", validator: requiredFieldValidator, editor: Slick.Editors.Text }]