Announcement

Collapse
No announcement yet.

Error while creating batchlist

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Error while creating batchlist

    Code:
    <div id="mm9_batchlist_MyList"></div>
    is inserted from Function Module_Customer_Content and confirmed from admin page source.

    Code:
    function MyBatchList( )
        MMBatchList.call( this, 'mm9_batchlist_MyList' );
    MMBatchList function fails to attach created batch list to <div> element.

    Error occurs in following code section of system routine.

    Code:
    function MMBatchList( parent_id )
        MMBatchList_NoFeatures.call( this, parent_id );
    
    function MMBatchList_NoFeatures( parent_id )
    .
    .
    .
    
        if ( document.getElementById( parent_id ) )
            {
                this.Attach( parent_id );
            }
    Because it fails to find <div> object to attach, it could not attach batchlist to <div> object.

    What is missing here?

    Thank you.
    Daniel Kim, Compu-Mate
    Developer

    #2
    Problem solved.

    Thanks.
    Daniel Kim, Compu-Mate
    Developer

    Comment

    Working...
    X