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 ?

link|improve this question
What OS are you using? It sounds like it may be an issue with the type of linebreaks being used. It might be a bug in Dojo/Dijit that can be resolved. Also, have you tried any other Webkit browsers? – OverZealous Aug 2 '11 at 7:03
@OverZealous I am using 'Ubuntu 10.04 LTS'. But I observed this on MacOS too. I shall try this on Safari. Also I would like to mention one obvious thing that, if I use 'pre' tag instead of a 'div', behavior is same in both Firefox and Chrome as expected. – percy Aug 2 '11 at 7:31
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.