Bootgrid の検索を実行しようとしていますが、検索フィールドにデータを入力すると読み込みが停止します。サーバー側からの webmethod は、データが正しく表示されるため、自動的にシリアル化される DTO のリストを返します。私はあらゆる場所、ドキュメント、例を見てきましたが、どれが問題なのかわかりません。検索を機能させるにはどうすればよいですか? ありがとうございました
これは、リストを返す 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
名前空間の終了