1.#grid .k-tooltip {2. max-height: 400px;3. overflow-y: auto;4.}
Hello all,
I have been looking for a solution to allow user inserting a variable name into the editor (once submitted the value is searched into a hash-map and replaced on server side)
For this I wanted to forbid the user to edit the value (to avoid him involuntary edition).
The solution I found is to insert a span with "contenteditable='false' " attribute :
editor.exec("inserthtml", { value: " <span contenteditable='false'>+myValue+</span>" });