Hi, I set my embedded bespin as below, which works good:
_editorComponent = new bespin.editor.Component('editor', {
language : my_language,
loadfromdiv : true,
set : {
fontsize : 10,
tabsize : 4,
highlightline : 'on'
}
});
and html part for this:
<div id...
I'm trying to implement a hook when text is edited in a bespin embedded instance. Ideally, I'd simply like to know when the instance has gained or lost focus to capture the user action.
...
Does anybody know of an ExtJS editor (like HTMLEditor) with syntax highlighting or does someone has some experience integrating Bespin or other Scripts into it?
...