Actually we tried teh options there.
The text you have pointed me states:
Carriage return: You can choise if insert the <BR> tag or the <P> tag on the return button
But the display panel displays a choice of standHTML and use BR tag. Both force BR tags. We added several on a page with standardHTML and it only displayed BR with a return. This is a bug.
Also I did find a work around for Windows computers but not MAC.
Adding this JavaScript will do it only for Windows
public int PreHandleEvent(int inEvtDispID, IHTMLEventObj pIEventObj) { switch (inEvtDispID) { case ComSupport.DISPID_KEYPRESS:
if (!pIEventObj.shiftKey && pIEventObj.keyCode == 13) { SendKeys.Send("+{ENTER}"); return HRESULT.S_OK; } } break; } |
|
|