-- Naimesh.Trivedi (Gmail) <[email protected]> wrote (on Saturday, 19 September 2009, 04:55 PM +0530): > Well I am using dojo in my zend application, I have used dojo 1.3.2 and copied > it in /public/js and calling control's directly then using via Zend digit so > that this new version controls works. > > a) Actually when my form loads, controls it flickers for a second as original > html style/width and then Tundra style applies to it which looks really > stupid.
This is typical, as creation of the dijits occurs *after* page load -- and often, Dojo templates and CSS will still be in the process of loading at this time, which is what leads to the delay. One way that you can remove the flicker is to create a custom build. Doing so will intern all templates into the actual Dojo code, as well as condense all the CSS for the requested theme into a single file -- and combined, these factors can eliminate any delays in display, and make the entire UI more snappy. > b) Another Error and prompt box style is shown as box when called from zend > application with dark gray background, black border and black text color but > in > a nice shape, if called from normal application form not Zend. No idea on this one; my guess is you have some custom markup? Could there be CSS conflicts? -- Matthew Weier O'Phinney Project Lead | [email protected] Zend Framework | http://framework.zend.com/
