javascript autocompletion for DSL. (e.g.: SQL)
- by chacko
I want to give the user a web-page where he can type some simple SQL.
select * from myTable.
What I would like is to have the autocompletion area to help typing:
sel
[selECT]
select * f
[select * fROM]
select * from
[select * fROM column1]
[select * fROM column2]
...
Anybody can suggest if there is a nice open source library for this ?
I am not really interested in the SQL (I will have to parse a DSL)
I am more interested on a powerful autocompletion text area widget.