Hi,
I use tabindex in the following code segment but it's ignored. Is there a way to get it to work?
Thanks.
<tr>
<td colspan=2>
<div style='position:relative;top=0px;left=0px;height:250' width=100%>
<textarea name="Body" tabindex="105" style='visibility:hidden;position:absolute;top:0px;left:0px'></textarea>
<script type="text/javascript">
var idGenerator = new RTEIDGenerator(0);
var editor = new RTEEditor(idGenerator);
editor.SetStationery(false);
editor.Instantiate();
editor.SetHTML(<%= "\"" + editorValue + "\"" %>);
</script>
</div>
<input type=hidden name=Format id=Format value="html">
</td>
</tr>
I use tabindex in the following code segment but it's ignored. Is there a way to get it to work?
Thanks.
<tr>
<td colspan=2>
<div style='position:relative;top=0px;left=0px;height:250' width=100%>
<textarea name="Body" tabindex="105" style='visibility:hidden;position:absolute;top:0px;left:0px'></textarea>
<script type="text/javascript">
var idGenerator = new RTEIDGenerator(0);
var editor = new RTEEditor(idGenerator);
editor.SetStationery(false);
editor.Instantiate();
editor.SetHTML(<%= "\"" + editorValue + "\"" %>);
</script>
</div>
<input type=hidden name=Format id=Format value="html">
</td>
</tr>