Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Event after page loaded

    Hello Isomorphic,

    I´m looking for an event, that fires after the whole SmartClient code is loaded in the browser and the JavaScript code is executed. Something like in Ext
    Code:
    Ext.onReady(function() {
    	alert("View loaded");
    });
    Regards

    Thomas

    #2
    Code:
    isc.Page.setEvent("load", function() {/*callback*/});

    Comment


      #3
      Claudio, thank you very much!

      Comment

      Working...
      X