This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 223727
Collapse All | Expand All

(-)a/web.client.rest/src/org/netbeans/modules/web/client/rest/wizard/JSClientGenerator.java (+2 lines)
Lines 607-612 Link Here
607
        myTmplList.append("<script type='text/template' id='");                 // NOI18N
607
        myTmplList.append("<script type='text/template' id='");                 // NOI18N
608
        myTmplList.append(generator.getTableHeadId());
608
        myTmplList.append(generator.getTableHeadId());
609
        myTmplList.append("'>\n<thead>");                                       // NOI18N
609
        myTmplList.append("'>\n<thead>");                                       // NOI18N
610
        myTmplList.append("\n<tr>\n");                                          // NOI18N
610
         
611
         
611
        if (generator.getModelGenerator().getIdAttribute() != null) {
612
        if (generator.getModelGenerator().getIdAttribute() != null) {
612
            String id = generator.getModelGenerator().getIdAttribute()
613
            String id = generator.getModelGenerator().getIdAttribute()
Lines 623-628 Link Here
623
            myTmplList.append("</th>\n");                                       // NOI18N
624
            myTmplList.append("</th>\n");                                       // NOI18N
624
        }
625
        }
625
        
626
        
627
        myTmplList.append("</tr>\n");                                           // NOI18N
626
        myTmplList.append("</thead>\n</script>\n");                             // NOI18N
628
        myTmplList.append("</thead>\n</script>\n");                             // NOI18N
627
    }
629
    }
628
630

Return to bug 223727