Ticket #1110 (closed enhancement: fixed)

Opened 5 years ago

Last modified 5 years ago

SetHTML if not loading finished

Reported by: guest Owned by: guillaumed
Priority: low Milestone:
Component: Xinha Core Version:
Severity: normal Keywords:
Cc: gdo@…

Description

I'm using Xinha in Flex (Adobe) which use the AjaxBridge. I cannot easily control the setHTML call from Flex, so it can arrive too early.. To avoid handling event loading, I preferd to easily patch this with the following code in setHTML

Xinha.prototype.setHTML = function(html)
{
  if (this._doc != null) {
    if ( !this.config.fullPage )
    {
      this._doc.body.innerHTML = html;
    }
    else
    {
      this.setFullHTML(html);
    }
  }
  this._textArea.value = html;
};

Change History

Changed 5 years ago by guest

  • type changed from defect to enhancement

Changed 5 years ago by guillaumed

  • owner changed from gogo to guillaumed

Changed 5 years ago by guillaumed

  • status changed from new to closed
  • resolution set to fixed
Note: See TracTickets for help on using tickets.