[Not working] oCol is undefined !

[Not working] oCol is undefined !

quangndquangnd Posts: 2Questions: 0Answers: 0
edited March 2012 in DataTables 1.9
My script



$(document).ready(function () {

$('#articleTable').dataTable();
});




@Html.ActionLink("Thêm tin mới", "Create")






Chọn kênh thông tin


Tiêu đề


Tóm tắt


Nội dung


Ngày tạo tin


Ngày sửa


Đường dẫn ảnh

@*
Priority


Source

*@



@foreach (var item in Model)
{


@Html.ActionLink("Sửa", "Edit", new { id = item.ArticleId }) |
@Html.ActionLink("Chi tiết", "Details", new { id = item.ArticleId }) |
@Html.ActionLink("Xóa", "Delete", new { id = item.ArticleId })


@Html.DisplayFor(modelItem => item.Channel.FriendlyName)


@Html.DisplayFor(modelItem => item.Title)


@Html.Raw(item.Summary)


@Html.Raw(item.MainContent)


@Html.DisplayFor(modelItem => item.CreatedDate)


@Html.DisplayFor(modelItem => item.ModifiedDate)


@Html.DisplayFor(modelItem => item.ImageUrl)

@*
@Html.DisplayFor(modelItem => item.Priority)


@Html.DisplayFor(modelItem => item.Source)
*@


}



--
I tried Firefox and error is: "oCol is undefined". I searched on forum & google for suggestion but it's not success.


Looking for your help...

Thanks!

Replies

  • quangndquangnd Posts: 2Questions: 0Answers: 0
    I found this bug. Delete this post

    Thanks a lot :)
  • bmarquesnbmarquesn Posts: 1Questions: 0Answers: 0
    What did you do to solve this?
    I would be very grateful for the help
  • allanallan Posts: 63,133Questions: 1Answers: 10,399 Site admin
    @bmarquesn - run your table through the DataTables debugger and we'll take a look.

    Allan
This discussion has been closed.