我試圖添加一些工具提示文本到ImgButton
。SmartGWT imgbutton工具提示
ImgButton imgButton = new ImgButton();
imgButton.setPrompt("text");
問題是呈現的HTML-Image元素包含「alt」屬性。
<img src="http://*/button.png" width="24" height="24" align="TEXTTOP" name="isc_Umain" alt="text" border="0" suppress="TRUE">
而這個alt屬性在IE瀏覽器中不能正常工作。它將alt屬性內容顯示爲工具提示。所以我有兩個放在彼此的工具提示。
About Img tag and alt attribute
我需要刪除從IMG標記的alt屬性在HTML或者我需要找出同時SmartGWT的構建及其組件這個alt屬性插入。