HI am using combo filter in my dhtmlx grid. This field is a link . The combo filter is displaying the entire link url
how can i display only the text with out link .?
HI am using combo filter in my dhtmlx grid. This field is a link . The combo filter is displaying the entire link url
how can i display only the text with out link .?
Please, try to modify the link exCell.
Open the “dhtmlxgrid_excell_link.js”
And replace the string:
return this.cell.firstChild.innerHTML+"^"+this.cell.firstChild.getAttribute(“href”)+(target?("^"+target):"");
in the getValue function
with:
return this.cell.firstChild.innerHTML;
thank you very much