Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6596413
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:04:22+00:00 2026-05-25T18:04:22+00:00

On my application homepage, I built a ‘widgets’ system. The source of the widgets

  • 0

On my application homepage, I built a ‘widgets’ system. The source of the widgets is generated server side, and pushed to the client through Ajax.

Ext.Ajax.request({
    url: '/get-widgets',
    success: function( response ) {
        var boxes = Ext.decode( response.responseText );
        Ext.each( boxes, function( box ) {
            box.id = 'cell-' + box.cell;

            var element = Ext.DomHelper.append( 'canvas', {
                tag: 'div',
                id: box.id,
                cls: 'widget size-' + ( box.size || '11' ),
                children: [{
                    tag: 'div',
                    cls: 'title',
                    html: box.title
                }, {
                    tag: 'div',
                    cls: 'main',
                    html: box.body
                }]
            }, true );
        });
    }
});

The problem is, that some widgets have some inline Javascript in their body, that needs to be executed. This works perfectly in Firefox, but does not in Chrome.

Is there a flag or something you need to activate for the inline code to be executed?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T18:04:23+00:00Added an answer on May 25, 2026 at 6:04 pm

    Found out the Ext.Element::update() method features a flag to scan for and execute inline scripts. I changed my code as follows to utilize this method:

    var element = Ext.DomHelper.append( 'canvas', {
        tag: 'div',
        id: box.id,
        cls: 'widget size-' + ( box.size || '11' ) + ' ' + ( box.cls || '' ) + ' ' + ( box.type || '' ),
        children: [{
            tag: 'div',
            cls: 'title',
            html: box.title
        }, {
            id: box.id + '-body',
            tag: 'div',
            cls: 'main'
        }]
    }, true );
    
    Ext.get( box.id + '-body' ).update( box.body, true );
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I will make upload my application today to my homepage and wanna to have
I have a web application built with jQuery Mobile and PHP (CodeIgniter framework). Now
Given a web application built using Jboss seam with following details: dynamic web module:
I am designing a test application (Using NUnit) that will have to navigate (through
I have a two activity application. One is a HomePage. Another is a DataPage
I'm in the process of creating an application for the iPhone for a client
So here's my premise: A web application has a basic homepage that lets a
I have an application using JSF, which has a navigation bug. The homepage, which
I have a homepage application, it was used to launch individual applications, and the
I need to display a homepage in my iPad application. I have been reading

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.