0

我在这里有一个小提琴:http: //jsfiddle.net/marktait/YETGp/

它被设计为使用 jQueryMobile - 首次显示时很好。但是当我单击 Add Room 按钮时,它会添加一个新行,但 jQuery Mobile CSS 并未应用于新行。

是否有将格式添加到 DOM 中的新元素?

HTML 是:

<div class='liveExample'> 

    <table width='100%' border="1">
        <thead>
            <tr>
                <th width='25%'>Room Type</th>
                    <th width='25%'>Occs</th>
                <th class='price' width='15%'>Price</th>
                <th class='quantity' width='10%'>Quantity</th>
                <th class='price' width='15%'>Subtotal</th>
                <th width='10%'> </th>
            </tr>
        </thead>
        <tbody data-bind='foreach: lines'>
            <tr>
                <td>
                    <select data-bind='options: $root.RoomCategories, optionsText: "TypeName", optionsCaption: "Select...", value: category'> </select>
                </td>
                <td data-bind="with: category">
                    <select data-bind='options: Occs, optionsText: "occ", optionsCaption: "Select...", value: $parent.product'> </select>
                </td>
                <td class='price' data-bind='with: product'>

<span data-bind='text: formatCurrency(ratetocharge)'> </span>
                </td>
                <td class='quantity' data-bind="with: category">
                    <select data-bind="visible: $parent.product, options: ko.utils.range(0, TypeCount), value: $parent.quantity"></select>
                </td>
                <td class='price'>
                    <span data-bind='visible: product, text: formatCurrency(subtotal())' > </span>
                </td>
                <td>
                    <a href='#' data-bind='click: $parent.removeLine'>Remove</a>
                </td>
            </tr>
        </tbody>
    </table>
    <p class='grandTotal'>
        Total value: <span data-bind='text: formatCurrency(grandTotal())'> </span>
    </p>
    <button data-bind='click: addLine'>Add room</button>
    <button data-bind='click: save'>Submit booking</button>

</div>

添加新行的 KnockOut 是:

// Operations
self.addLine = function() {
self.lines.push(new CartLine())
};

谢谢你的帮助,

标记

4

1 回答 1

3

您应该在这里查看文档

当您向页面添加内容时,您需要通知框架。在表格行的情况下(根据您的内容猜测),您需要在其上触发 create 事件。

$('.line_selector').trigger('create');

不幸的是,我没有淘汰赛的经验,所以我无法指导你应该在哪里打这个电话。

于 2013-01-10T11:26:32.220 回答