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

Column resize doesn't work with ClientDetailTemplateId in Firefox and IE

8 Answers 256 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Cosmin
Top achievements
Rank 1
Cosmin asked on 14 Sep 2015, 12:21 PM

Hello,

I'm using Kendo Grid with resizable columns and ClientDetailTemplateId. When I want to resize a column the resize cursor is not appear anymore (in Firefox and IE - is working perfectly in Chrome or Safari) but if I remove the ClientDetailTemplateId all is working fine in all browsers. How can I solve this problem ? Also I use kendo ui version 2015.2.624.  I will put here a code snipped:

 

  @{Html.Kendo().Grid<​MyModel>()
                .Name("mymodel-grid")
                .Scrollable(s => s.Height(500))
                .DataSource(dataSource => dataSource.Ajax()
                    .Read(read => read
                            .Data("onDataBinding")
                            .Action("​MyActionResult", "​MyController"))
                    .PageSize(50)
                    .Sort(s => Papaya.Web.Misc.GridConfigurator.Sort<​MyModel>(s, Model.SortOrder))
                    .Filter(s => Papaya.Web.Misc.GridConfigurator.Filter<​MyModel>(s, Model.FilteredBy)))
                .Columns(columns => columns.LoadSettings(Model.GridColumns))
                .Resizable(r => r.Columns(true))
                .Reorderable(r => r.Columns(true))
                .Events(e =>
                {
                    e.DetailExpand("onDetailExpand");
                    e.Change("onSelected");
                    e.DataBound("onDataBound");
                    e.ColumnResize("onColumnResize");
                    e.ColumnReorder("onColumnReorder");
                    e.FilterMenuInit("filterMenuInit");
                })
                .ClientDetailTemplateId("expandTemplate")
                .Filterable(GridConfigurator.​MyModelFilter)
                .Pageable(GridConfigurator.Page)
                .Sortable()
                .Selectable()
                .EnableCustomBinding(true)
                .Render();
            }

 

<script id="expandTemplate" type="text/kendo-tmpl">
        <div id="expand-template-content"></div>
    </script>​

 

Thank you

8 Answers, 1 is accepted

Sort by
0
Pavlina
Telerik team
answered on 14 Sep 2015, 03:52 PM
Hello,

Could you please confirm that resizing problem exists when scrolling for the master Grid is enabled? You can also go through the forum thread below where a similar problem is discussed.
http://www.telerik.com/forums/resizable-columns-in-grid-with-detail-template

Regards,
Pavlina
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
0
Cosmin
Top achievements
Rank 1
answered on 14 Sep 2015, 06:01 PM

Hello,

 

Yes, I can cofirm to you that the problem persist even if the scrolling for the master grid is enabled. I saw the others threds from forum but I couldn't find a solution from those ones. The problem is that this strange behaviour is only in IE and Firefox, in Chrome and Safari is working perfectly.

 

Thank,

Cosmin

0
Cosmin
Top achievements
Rank 1
answered on 16 Sep 2015, 08:32 AM

Hello,

 

The problem is from Kendo Grid ? Do we need to create a workaround for when IE or Firefox is used or do you suggest any workaround or a fix ?

 

Thank you,

 

Cosmin

0
Pavlina
Telerik team
answered on 16 Sep 2015, 03:21 PM
Hello,

Could you test your project with the latest version and confirm that the issue in IE and Firefox still exists? Meanwhile we will create a sample project based on the provided code and will get back to you with our findings.

Regards,
Pavlina
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
0
Cosmin
Top achievements
Rank 1
answered on 17 Sep 2015, 11:20 AM

Hello,

 

I downloaded the latest version of Kendo UI for MVC and I updated the project with this version but the problem stil persist. Is not working on IE or Firefox!

 

Thank you,

 

Cosmin

0
Pavlina
Telerik team
answered on 19 Sep 2015, 12:59 AM
Hello,

I will forward this problem to our QAs so they can test it further and confirm that it is a bug. I will get back to you once I get additional information/confirmation about the problem. Thank you for your understanding in advance.

Regards,
Pavlina
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
0
Cosmin
Top achievements
Rank 1
answered on 20 Sep 2015, 09:54 AM

Hello,

 Ok, I will wait for a response. Thank you!

 Regards,

Calin Cosmin

0
Cosmin
Top achievements
Rank 1
answered on 27 Sep 2015, 03:59 PM

Hi Pavlina,

 There is something new this problem?

Regards,

Calin Cosmin

Tags
Grid
Asked by
Cosmin
Top achievements
Rank 1
Answers by
Pavlina
Telerik team
Cosmin
Top achievements
Rank 1
Share this question
or