jQWidgets Forums
Forum Replies Created
-
Author
-
Hello, I created a solution
function higlightRender(index, datafield, value, defaultvalue, column, rowdata) {var txt = instance.highlightTextValue;
if (txt) {var elm = $(defaultvalue);
var html = elm.html();var index = html.search(new RegExp(txt, “i”));
if (index >= 0)txt = html.substring(index, index + txt.length);
html = html.replace(new RegExp(txt, ‘ig’), ‘<span style=”background-color:yellow”>’ + txt + ‘</span>’);elm.html(html);
defaultvalue = elm[0].outerHTML;}
return defaultvalue;}
That’s did it, Thanks Dimitar
July 15, 2016 at 3:17 pm in reply to: Open auto-complete popup after entering two letters Open auto-complete popup after entering two letters #85789That’s very easy, really great, Thanks Christopher
October 14, 2015 at 7:46 pm in reply to: Drag&Drop cause issues to input range Drag&Drop cause issues to input range #76875Hi Dimitar, anything new?
October 8, 2015 at 2:34 pm in reply to: Drag&Drop cause issues to input range Drag&Drop cause issues to input range #76574Thanks Dimitar, Please let me know when you have a solution
September 2, 2015 at 1:24 pm in reply to: Drag&Drop cut off between different splitters Drag&Drop cut off between different splitters #75410Thanks very much! That’s solved my issue
September 2, 2015 at 12:59 pm in reply to: Drag&Drop cut off between different splitters Drag&Drop cut off between different splitters #75405Hi Peter,
I am sorry, but i don’t understand why it cannot be done, because functionality it works as expected but the only issue is the ‘cut off’
It must be a solution for a case like this, I only need to prevent the ‘Cut off’Thanks,
AkramSeptember 2, 2015 at 12:21 pm in reply to: Drag&Drop cut off between different splitters Drag&Drop cut off between different splitters #75399Hi Peter,
Thanks for your reply, do you have a plan to support this feature soon?
Thanks,
Akram -
AuthorPosts