Package datasoul.servicelist

Examples of datasoul.servicelist.ServiceListTable


    /** Creates new form ImportServiceItemForm */
    public ImportServiceItemForm() {
        initComponents();
        DatasoulMainForm.setDatasoulIcon(this);
        serviceListTable = new ServiceListTable();
        tableServiceList.setModel(serviceListTable);
        setColorRender();
    }
View Full Code Here


        StringBuilder sb = new StringBuilder();

        getHeader(sb);
       
        sb.append("<h2>");
        ServiceListTable slt = ServiceListTable.getActiveInstance();
       
        sb.append(slt.getTitle());
        sb.append("</h2>");
       
        sb.append("<table class='objtable'>");
       
        for (int i=0; i<slt.getRowCount(); i++){
            ServiceItem si = slt.getServiceItem(i);
            if (si instanceof TextServiceItem){
                sb.append("<tr class='objhdr' onclick='showHide(data"+i+");'><td>");
                sb.append(si.getTitle());
                sb.append("</td></tr>");
                sb.append("<tr id='data"+i+"' class='objcontent'><td>");
View Full Code Here

TOP

Related Classes of datasoul.servicelist.ServiceListTable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.