This is a migrated thread and some comments may be shown as answers.

responsive grid not working

1 Answer 152 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Yagna Narayana
Top achievements
Rank 1
Yagna Narayana asked on 26 Jan 2017, 12:01 AM

Hi,

I am binding kendo grid on Ajax call and designed the grid as below. But this is not responsive . I have included all kendo bootstrap styles. But still grid columns are not responsive, Please advice.

 @(Html.Kendo().Grid(PInfo)
                                .Name("grdPdetails")
                                .Columns(columns =>
                                {
                                    columns.Bound(p => p.PId).ClientTemplate("<a href='" + Url.Action("PSummary", "Home") + "?PId=#= PId #'" + ">#= PId #</a>").Title("Edit").Width(75);
                                    columns.Bound(p => p.DataSource).ClientTemplate("#= DataSource ? DataSource : '' #").Title("Data Source").Width(150);
                                    columns.Bound(p => p.LastName).ClientTemplate("#= LastName ? LastName : '' #").Title("Last Name").Width(250)

 })
                                .HtmlAttributes(new { @class = "ra-section"})
                                .Scrollable(s => s.Enabled(true))
                                .Sortable()
                                .Pageable(pageable => pageable
                                    .Refresh(true)
                                    .PageSizes(true)
                                    .ButtonCount(5))
                                    .DataSource(dataSource => dataSource
                                                            .Ajax()
                                                            .PageSize(10)
                                )

)

1 Answer, 1 is accepted

Sort by
0
Tina Stancheva
Telerik team
answered on 30 Jan 2017, 03:46 PM
Hi Yagna,

Mistakenly this thread was marked as a spam which is why it wasn't posted until now. If you're still struggling with the Kendo UI Grid, I would recommend that you submit a support ticket as your trial includes a guaranteed response time of 72 hours for each support request.

Regards,
Tina Stancheva
Telerik by Progress
Try our brand new, jQuery-free Angular 2 components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
Tags
Grid
Asked by
Yagna Narayana
Top achievements
Rank 1
Answers by
Tina Stancheva
Telerik team
Share this question
or