mleibman / SlickGrid

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

Editor not opening on single click. #1101

Open Apoorvsunger opened 8 years ago

Apoorvsunger commented 8 years ago

Hello,

I have a slickgrid with text editor as a column.Upon clicking for the first time, the editor doesnot appear. Again after a delay of 1-2 seconds when I click the cell, the editor doesnt come. But when I DblClick the cell, the editor pops up and then all other editors in rows opens up on single click. Also upon first time grid fill up, when I try to open the editor, it opens up, But the same editor doesn't open when I focus out from grid and again click the editor. Any help would be appreciated.

Regards, Apoorv.

6pac commented 8 years ago

Does this happen for you on one of the example pages (so we have a test case to try)? Is it a custom editor, or the built in one? What browser are you using?

Apoorvsunger commented 8 years ago
  1. No not happening with the example pages.
  2. No this isn't a custom editor, its an existing TextEditor but ya, I have applied style property to it. this.init = function () { $input = $("")
  3. BROWSER: IE11
6pac commented 8 years ago

these kind of things are hard to diagnose without a test page we can use to reproduce the behaviour. what i would do is start with an example page that is close to what you have and apply your customisations one small step at a time, testing each step. eventually you'll wind up with your actual page and it will either work, or you'll have identified which modification has caused the trouble.

Apoorvsunger commented 8 years ago

ya ok I'll figure it out. :)

thanks for the support.