if (!dojo._hasResource["dijit.form.InlineEditBox"]) { // _hasResource checks // added by build. Do // not use _hasResource // directly in your // code. dojo._hasResource["dijit.form.InlineEditBox"] = true; dojo.provide("dijit.form.InlineEditBox"); dojo.require("dojo.i18n"); dojo.require("dijit.form._FormWidget"); dojo.require("dijit._Container"); dojo.require("dijit.form.Button"); dojo.requireLocalization("dijit", "common", null, "ko,zh,ja,zh-tw,ru,it,hu,fr,pt,ROOT,pl,es,de,cs"); dojo .deprecated( "dijit.form.InlineEditBox is deprecated, use dijit.InlineEditBox instead", "", "1.1"); dojo.declare("dijit.form.InlineEditBox", [dijit.form._FormWidget, dijit._Container], // summary // Wrapper widget to a text edit widget. // The text is displayed on the page using normal user-styling. // When clicked, the text is hidden, and the edit widget is // visible, allowing the text to be updated. Optionally, // Save and Cancel button are displayed below the edit widget. // When Save is clicked, the text is pulled from the edit // widget and redisplayed and the edit widget is again hidden. // Currently all textboxes that inherit from dijit.form.TextBox // are supported edit widgets. // An edit widget must support the following API to be used: // String getDisplayedValue() OR String getValue() // void setDisplayedValue(String) OR void setValue(String) // void focus() // It must also be able to initialize with style="display:none;" // set. { templateString : "