I am trying to use "dijit.InlineEditBox" on a page to allow user to change a field on the page. The issue I am facing here is it's behavior in Chrome and Firefox is different. I am using the following code.
new dijit.InlineEditBox ({
editor: "dijit.form.Textarea",
autoSave: false ,
editorParams: { maxLength : editorMaxLength },
noValueIndicator: noValueIndicatorText
},
nodeId);
In Firefox after the page-load, if the div that I am converting to inline edit box, has line-breaks it converts them into html "<br>" tag and renders the text, which I think is the correct behavior. But in chrome this fails. The text is shown without the line-breaks in Chrome. When I tried to debug, I found that input text to "_setValueAttr" method in Firefox is with line-breaks ( text inside the div of HTML source of the page as is) and in Chrome is without line-breaks.
In Chrome, if I change the value after the page load, i.e. if I put line-breaks in the value in the editor, it renders properly after saving ( adds line-break in the display). But again after te page load it fails to show the line-breaks.
Am I missing something here ? Or is this the Chrome issue ? Or do I have to have the text inside a 'pre' tag ?