Code: Select all
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
I'm using 3.0.5 and getting this problem?stevemaury wrote:This is a known IE bug which is fixed in version 3.0.5. So just update.
Could you please post the exact solution? I'm having this problem, too (and I can't update yet). Thanks.KFCSmitty wrote:*edit* Nevermind, fixed it.
I keep reading this however I'm using version 3.0.5 and having this issue still? do i need to update the original version 3.0.5 I downloaded?stevemaury wrote:This is a known IE bug which is fixed in version 3.0.5. So just update.
Code: Select all
<textarea <!-- IF S_UCP_ACTION and not S_PRIVMSGS and not S_EDIT_DRAFT -->name="signature" id="signature" style="height: 9em;"<!-- ELSE -->name="message" id="message"<!-- ENDIF --> rows="15" cols="76" tabindex="3" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);" onfocus="initInsertions();" class="inputbox">{MESSAGE}{DRAFT_MESSAGE}{SIGNATURE}</textarea>
KFCSmitty, you are a GOD! This actually solved the berserk cursor problem in IE8! My hat's off to you. I really appreciate your help.KFCSmitty wrote:Hey, sorry. I had to change it in my template.
In your template directory change posting_body.html
\Styles\<StyleName>\template\posting_body.html
Look for the input box for the message..it should have {MESSAGE} in the code and replace that code with.
Code: Select all
<textarea <!-- IF S_UCP_ACTION and not S_PRIVMSGS and not S_EDIT_DRAFT -->name="signature" id="signature" style="height: 9em;"<!-- ELSE -->name="message" id="message"<!-- ENDIF --> rows="15" cols="76" tabindex="3" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);" onfocus="initInsertions();" class="inputbox">{MESSAGE}{DRAFT_MESSAGE}{SIGNATURE}</textarea>
Code: Select all
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
FWIW, this is still an issue (3.0.6).Paul wrote:Its a issue with IE8, if the above tag doesnt work, the only solution probarly is changing browser.