inlineeditbox

Why does FF3 say "Permission denied to get property HTMLDivElement.tagName" ?

When I run this through FireFox 3: <script type="text/javascript" src="../resources/dojo-1.2.3-src/dojo/dojo.js" djConfig="parseOnLoad: true"></script> <script type="text/javascript" src="../resources/dojo-1.2.3-src/dojo/dijit.js"></script> <script type="text/javascript"> dojo.require("dojo.parser"); dojo.require("dijit.InlineEditBox"...

understanding logic of dijit css and styles

Hi, I am trying to use dijit.InlineEditBox. I have put the following code in my HTML, using the example in the dojo docs: <script type="text/javascript"> dojo.require("dijit.InlineEditBox"); dojo.require("dojo.parser"); dojo.require("dijit.form.TextBox"); function editableHeaderOnChange(id, arg){ alert("detail...

how to set a new value for a dijit.InlineEditBox

Hi All, i have problems to set a returned value to a declarative dijit.InlineEditBox the most near to a final solution was function(field,val,pid) { switch (field) { case 1: cell_name = "off_"+pid; break; case 6: cell_name = "saleprice_"+pid; break; default: break; } cell...