im making a mention system like the one in facebook, right now I achieved it with a textarea, but now I want it to work with a contenteditable div so I can format the text within.
So right now what is does is when you press the "@" and a letter it searchs in a array the results containing that letter using the JQuery-UI autocomplete, when you select the result it displays the result in the div, but now i want to highlight the mention like facebook, so I put a:
<b style="background: #somecolor"></b>
So the mention was looking like this:
<b style="background: #somecolor">Mention</b>
So far so good, but when I want to keep writing, all the new text I wrote was going inside the <b></b> looking like this:
<b style="background: #somecolor">Mention all my new text</b>
Instead of <b style="background: #somecolor">Mention</b> all my new text
So all the new text was being highlighted, here is a picture:
http://dev.frinki.com/question/1.png
So this is the javascript code im using
$("#Conversacion").bind("keydown", function(event) {
if (event.keyCode === $.ui.keyCode.TAB && $(this).data("autocomplete").menu.active) {
event.preventDefault();
}
}).autocomplete({
minLength: 0,
source: function(request, response) {
var term = request.term,
results = [];
console.log(term);
if (term.indexOf("@") >= 0) {
term = extractLast(request.term);
if (term.length > 0) {
results = $.ui.autocomplete.filter(availableTagsFollowing, term);
} else {
//results = ['Start typing...'];
}
}
response(results);
},
focus: function() {
// prevent value inserted on focus
return false;
},
select: function(event, ui) {
var terms = split(this.innerHTML);
// remove the current input
terms.pop();
// add the selected item
terms.push('<b style="background:#E0FFC5">' + ui.item.label + '</b>');
this.innerHTML = terms.join("");
$('#mentionsHidden').val($('#mentionsHidden').val() + '@['+ui.item.value+':'+ui.item.label+']');
mentionsString = $('#mentionsHidden').val();
return false;
}
});
And this is the HTML Code
<div name="Descripcion" id="Conversacion" class="Conversacion" contenteditable="true"></div>
This is a picture of the Chrome's Inspector:
http://dev.frinki.com/question/2.png
I looked in facebook to see how it's done, this is a picture of the chrome's inspector in facebook:
3.png (Same domain and folder of the other two images, sorry about this, this is a new user and I can't post more than 2 links)
It's seems that facebook when you select a person to mention creates a new line into the span that it uses so the text is separated from the <b></b>.
Well i hope that someone can help me.
By the way, I'm terrible sorry for my english, I'm from south america.