I need a tabbing in celltable. So, I have applied a tabIndex to TextInputCell by using template.
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));
}
The TAB and onChange event are not working properly only in IE9. When I was googling about this problem, I found one link. So I am stuck here. I have updated some transaction on change event. So It is very important! Do anybody have an idea? Or any alternative solution for that.
it is solved by removing tab index property from tag. This is working properly in all the browser.
If tabindex property is removed or assigned tabindex value is 1000 to all
<input>,<select> or <checkbox>tags. tabbing is working as expected in celltable.