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

Kendo UI Grid Cordova on windows 8.1 tablet

3 Answers 115 Views
Apache Cordova
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Jean-Yves Vinet
Top achievements
Rank 1
Jean-Yves Vinet asked on 24 Jun 2015, 02:50 PM

I use VisualStudio 2015RC + Cordova 4.3 + Kendo UI (2015-q1)  + Kendo Grid to do some test about developing an application to run on iOs and Windows 8.1

I did many tests, but when I run on windows 8.1, all the fields are concatenated on the first row of the grid. It's working with iOs, but not with Window 8.1. Until now, everything is working fine, but not the GRID.

Question: => Is the Kendo GRID can be used for a mobile application with Cordova on windows 8.1 platform OR it's a bug ?

Question: => Is someone had the same problem ?

example:

result with windows 8.1 on a tablet

Id         Name      Code
1Jyv232test45

 

result with iOs

Id         Name       Code
1          jyv             232
2          test           45

 

Thanks

 

Here is the example of the code. I took the example from another thread and the guy seems not to have the problem I have.

----------------------

index.html
    <div id="customer">
        <div id="grid"></div>
    </div> 

-----------------------

 -----------------------

index.js

function onDeviceReady() {

   var data = [{ CustId: 1, Name: "jean-yves" }, { CustId: 2, Name: "denis" }];
    var customerVM = kendo.observable({
         customers: new kendo.data.DataSource({
         data: data,
          pageSize: 10
       })
    });
    $("#grid").kendoGrid({
       columns: [
        { field: "CustId", title: "ID" },
                       { field: "Name", title: "Name" }
         ],
         dataSource: customerVM.customers,
         filterable: true,
         groupable: false,
         reorderable: true,
         resizable: true,
         sortable: {
           mode: "multiple",
           allowUnsort: true
         },
         height: "630px",
         selectable: "single",
         scrollable: {
            virtual: true
         }
  });
  kendo.bind($("#customer"), customerVM); 

}

 

3 Answers, 1 is accepted

Sort by
0
Tina Stancheva
Telerik team
answered on 29 Jun 2015, 03:19 PM
Hi Jean-Yves,

You posted your question under the AppBuilder forums but judging from your description you don't seem to be utilizing AppBuilder. You can check the browsers supported by the Kendo UI widgets in this article and you can also try the mobile configuration of the Kendo UI Grid widget to see if that will improve the behavior of the component on your device.

If you need more specific information, please post your questions under the Kendo UI Grid forum or submit a ticket so that the Kendo UI support engineers can address them. If you have any questions on your current support subscription, you can also reach out to a product specialist on sales@telerik.com as they can assist you with finding both the answers to your questions and a subscription that best fits your needs.

Regards,
Tina Stancheva
Telerik
 

Visit the Telerik Verified Plugins Marketplace and get the custom Cordova plugin you need, already tweaked to work seamlessly with AppBuilder.

 
0
Sebahattin
Top achievements
Rank 1
Iron
answered on 20 Jan 2016, 08:57 AM

Hi Jean-Yves,

 i have the same problem. Grid does not display correctly on Windows 8.1.

On windows 10 no problem.

May I know, if you have found a solution?

 

Thanks

0
Tina Stancheva
Telerik team
answered on 25 Jan 2016, 10:10 AM
Hi Sebahattin,

I would recommend that you describe your issue in the Kendo UI Grid forums where both the community and the Kendo UI support engineers can help you get to the bottom of this.

Regards,
Tina Stancheva
Telerik
 

Visit the Telerik Verified Plugins Marketplace and get the custom Cordova plugin you need, already tweaked to work seamlessly with AppBuilder.

 
Tags
Apache Cordova
Asked by
Jean-Yves Vinet
Top achievements
Rank 1
Answers by
Tina Stancheva
Telerik team
Sebahattin
Top achievements
Rank 1
Iron
Share this question
or