タブにグリッドを表示する際に問題が発生しています。グリッドはタブ ストリップの上で正常に機能します。
タブにあるので、問題を修正する方法を知っている人はいますか?
そのかみそりのvbhtmlを使用したMVCプロジェクト
私がコンテンツを取得する方法は
     With Html.Telerik().TabStrip().Name("department-edit").Items(Sub(x)
                                                                     x.Add.Text("Test").Content(TabContacts().ToHtmlString)
                                                                     x.Add.Text("Info").Content(TabInfo().ToHtmlString()).Selected(False)
                                                             End Sub)
    .Render()
End With 
    @helper TabContacts()
        @<table class="Content">
            <tr>
                <td>
                    @Code 
                        With Html.Telerik().Grid(Model.DepartmentContacts)
                            .Name("departmentcontact-grid")
                            .DataKeys(Sub(keys) keys.Add(Function(x) x.Id))
                            .DataBinding(Sub(dataBinding)
                                                 dataBinding.Ajax().Select("List", "Department", New With {.departmentId = Model.Id})
                                         End Sub)
                            .Columns(Sub(cols)
                                             cols.Bound(Function(x) x.DisplayOrder1).Width(100).Centered()
                                             cols.Bound(Function(x) x.ContactName).Width(500).ReadOnly()
                                             cols.Bound(Function(x) x.ContactNumber).Width(100).Centered()
                                             cols.Bound(Function(x) x.ContactExt).Width(100).Centered()
                                             cols.Bound(Function(x) x.Email).Width(100).Centered()
                                             cols.Bound(Function(x) x.Location).Width(100).Centered()
                                             cols.Bound(Function(x) x.IsActive).Width(100).Centered()
                                             cols.Bound(Function(x) x.IsMainContact).Width(100).Centered()
                                     End Sub)
                            .Pageable(Sub(settings) settings.PageSize(10).Position(GridPagerPosition.Both))
                            .Render()
                        End With
                    End Code
                </td>
            </tr>
        </table>    
  End helper
ありがとう