Subversion Repositories SmartDukaan

Rev

Rev 34021 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 34021 Rev 34023
Line 97... Line 97...
97
                            <td>
97
                            <td>
98
                                <div class="form-group">
98
                                <div class="form-group">
99
                                    <select id="catalog_id" class="form-control">
99
                                    <select id="catalog_id" class="form-control">
100
                                        <option value="" readonly selected>-- Select Catalog --</option>
100
                                        <option value="" readonly selected>-- Select Catalog --</option>
101
                                        #foreach($row in $catalogs)
101
                                        #foreach($row in $catalogs)
102
                                            <option value="$row.getId()">$row.getBrand() $row.getModelName() $row.getModelNumber()</option>
102
                                            <option value="$row.getId()">$row.getDescription()</option>
103
                                        #end
103
                                        #end
104
                                    </select>
104
                                    </select>
105
                                </div>
105
                                </div>
106
                            </td>
106
                            </td>
107
                            <td>
107
                            <td>
Line 133... Line 133...
133
                            <td>
133
                            <td>
134
                                <div class="form-group">
134
                                <div class="form-group">
135
                                    <select id="catalog_id" class="form-control">
135
                                    <select id="catalog_id" class="form-control">
136
                                        <option value="" readonly selected>-- Select Catalog --</option>
136
                                        <option value="" readonly selected>-- Select Catalog --</option>
137
                                        #foreach($row in $catalogs)
137
                                        #foreach($row in $catalogs)
138
                                            <option value="$row.getId()">$row.getBrand() $row.getModelName() $row.getModelNumber()</option>
138
                                            <option value="$row.getId()">$row.getDescription()</option>
139
                                        #end
139
                                        #end
140
                                    </select>
140
                                    </select>
141
                                </div>
141
                                </div>
142
                            </td>
142
                            </td>
143
                            <td>
143
                            <td>
Line 240... Line 240...
240
                    allSelectedText: 'All Selected',
240
                    allSelectedText: 'All Selected',
241
                    enableFiltering: true,
241
                    enableFiltering: true,
242
                    enableCaseInsensitiveFiltering : true
242
                    enableCaseInsensitiveFiltering : true
243
                });
243
                });
244
            });
244
            });
245
 
-
 
246
        });
245
        });
247
 
246
 
248
        $('#super-catalog').DataTable();
247
        $('#super-catalog').DataTable();
249
 
248
 
250
    });
249
    });