0
我需要在celltable中製表。所以,我通過使用模板將TabIndex應用於TextInputCell。TextInputCell:Tab在IE9中無法正常工作
interface Template extends SafeHtmlTemplates {
@Template("<input type=\"text\" value=\"{0}\" tabindex=\"{1}\" />")
SafeHtml getSimpleEditCell(String value,int tabIndex);
}
public void render(Context context, String value, SafeHtmlBuilder sb) {
sb.append(template.getSimpleEditCell(value, tabIndex, width));
}
Tab和onChange
事件不僅在IE9正常工作。當我搜索這個問題時,我發現了一個link。所以我被困在這裏。我更新了一些關於變更事件的交易。所以這非常重要!有人有想法嗎?或者任何其他解決方案。