The full text of the link is showing up in #combo_Filter rather than just the text. Is there a workaround for this for example:
the combo filter is showing for a link column:
401A14^ClientDealerDistributionList.aspx^_blank
Is there a way just to show the text of the link only?
Please, try to add the following code:
eXcell_link.prototype.getTitle=eXcell_link.prototype.getContent
This is having no effect.
Do I have to compile the code?
sematik
#6
Unfortunately the only way is to modify the dhtmlxgrid_excell_link.js
find the next srting:
return this.cell.firstChild.innerHTML+"^"+this.cell.firstChild.getAttribute("href")+(target?("^"+target):"");
and replace it with:
return this.cell.firstChild.innerHTML;