Bootgrid的搜索不起作用

时间:2015-10-16 00:19:48

标签: jquery asp.net ajax twitter-bootstrap jquery-bootgrid

我正在尝试运行Bootgrid的搜索但是当我在搜索字段中输入数据时仍然会加载。服务器端的webmethod返回自动序列化的DTO列表,因为数据显示正确。我到处寻找,文档,示例,我无法看到哪个可能是问题,我该怎么做才能使搜索工作?谢谢

This is the asp.net code

这是DTO我返回的列表。

Namespace Data.DTO
Public Class CarSearchDTO
    Private _id As Integer
    Private _brand As String
    Private _model As String

    Public Property id As Integer
        Get
            Return _id
        End Get
        Set(value As Integer)
            _id = value
        End Set
    End Property

    Public Property brand As String
        Get
            Return _brand
        End Get
        Set(value As String)
            _brand = value
        End Set
    End Property

    Public Property model As String
        Get
            Return _model
        End Get
        Set(value As String)
            _model = value
        End Set
    End Property
End Class

结束命名空间

1 个答案:

答案 0 :(得分:0)

问题是我有一个命令列,我不认为它不可搜索,因此当搜索在该列中查找时会出错。只需添加数据 - 可搜索=" false"在该栏中,它运作良好。