Opened 11 years ago
Closed 9 years ago
#11834 closed defect (wontfix)
dojox.mobile.app.SceneController & dojox.form.FileUploader
Reported by: | demonister | Owned by: | Shane O'Sullivan |
---|---|---|---|
Priority: | high | Milestone: | tbd |
Component: | DojoX Mobile | Version: | 1.5 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
I wanted to use dojox.form.FileUploader? in dojox.mobile.app, but it turned out that FileUploader? is not initialized, because FileUploader? checks whether there onShow is in getHiddenWidget and if it is it clings to it initialization events
var w = this.getHiddenWidget(); if(w){ var __c = dojo.connect(w, "onShow", this, function(){ dojo.disconnect(__c); this[createMethod](); }); }else{ this[createMethod](); }
But in the case of dojox.mobile.app.SceneController? there is an event, since it inherited from dijit._Widget in which "abstract method" onShow, but it is not overridden in dojox.mobile.app.SceneController? / dojox.mobile.View that leads to the fact that the event onShow is not occurs.
Note: See
TracTickets for help on using
tickets.
dojox/mobile/app is deprecated in favor of dojox/app, and presumably will be removed in 2.0, so seems like we should mark this as wontfix.