CodeCharge Studio
search Register Login  

Web Reports

Visually create Web Reports in PHP, ASP, .NET, Java, Perl and ColdFusion.
CodeCharge.com

YesSoftware Forums -> CodeCharge Studio -> Tips & Solutions

 CCS and Dojo

Print topic Send  topic

Author Message
lvalverdeb

Posts: 299
Posted: 08/01/2006, 9:40 AM

For those interested in integrating Dojo (http://dojotoolkit.org) and CCS, please be aware that Dojo conflicts with CCS's window.onload event.

The work around as follows (HTML view):
  
//Code generated by CCS for window.onload  
window.onload = bind_events; // generated by CCS  

replace with
  
//window.onload = bind_events; // generated by CCS  
dojo.addOnLoad(bind_events);  

The following code also works:
  
//window.onload = bind_events; // generated by CCS  
dojo.require("dojo.event.*");  
dojo.event.connect(window, "onload", bind_events);  

Luis

_________________
lvalverdeb
CR, GMT-6
XAMPP/Ubuntu/CCS3.2/4
View profile  Send private message

Add new topic Subscribe to topic   


These are Community Forums for users to exchange information.
If you would like to obtain technical product help please visit http://support.yessoftware.com.

MS Access to Web

Convert MS Access to Web.
Join thousands of Web developers who build Web applications with minimal coding.

CodeCharge.com

Home   |    Search   |    Members   |    Register   |    Login


Powered by UltraApps Forum created with CodeCharge Studio
Copyright © 2003-2004 by UltraApps.com  and YesSoftware, Inc.