in my appplication page , rich:suggestionBox is producing by deafut " spacer.gif " image
(
<iframe id="flHomeFlightTabRepeatDept:0:suggestFromCity_iframe" style="position:absolute;display:none;z-index:200;" src="/b2c/a4j_resourceorg/richfaces/renderkit/html/images/spacer.gif.xhtml">)
so i have searched in google regarding "spacer.gif " ,
i got below link " https://community.jboss.org/message/591201?_sscc=t "
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
I checked the SuggestionBoxRenderer.java sourceCode.
writer.startElement("iframe", component);
writer.writeAttribute("src", getResource("/org/richfaces/renderkit/html/images/spacer.gif").getUri(context, null), null);
writer.writeAttribute("id", component.getClientId(context) + "_iframe", null);
writer.writeAttribute("style", "position:absolute;display:none;z-index:" + zIndex + ";", null);
writer.endElement("iframe");
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
can anybody tell me how to remove "spacer.gif" image from <rich:suggestionBox > ??????????????????????????????