I'm just getting started with vue.js 2.0. I've been using Telerik's Kendo UI and their MVVM framework, but I'd like to switch to vue.js. Does anyone know how I might go about creating wrappers to make kendo and vue.js work together? I've never done anything like this and not really sure where to start. Thank you for any guidance.
How do I hide the complete header row for a grid? I don't want any header/title to show for any column in the grid. Preferably, I want the whole header row to be gone. Is this possible and if so, how?
Thanks for your help!
Donna
Hi Team
I am migrating the project from the asp.net framework to asp.net core 3.1
While migrating UI I am getting an error
Dev Tools failed to load Source Map: Could not load content for https://localhost:5001/Client/vendor/telerik.kendoui.professional.2016.3.1118.commercial/js/kendo.all.min.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
any suggestion and help will be highly appreciated on how to proceed further on this.
Hello,
I'm unable to successfully follow the Getting Started with Kendo UI Wrappers for React guide. When I follow Microsoft's TypeScript-React-Starter guide using the standard create-react-app but with react-scripts-ts instead I receive typescript compiler errors from the kendo dependencies.
The first is the unused kendo module.
error TS6133: 'kendo' is declared but its value is never read.
If I add a workaround for that by adding an if (kendo) {} I get the following error
error TS2306: File 'node_modules/@progress/kendo-ui/index.d.ts' is not a module error
https://github.com/Microsoft/TypeScript-React-Starter
Hi,
Actually we used 2017.2.621 kendo version now. we need to upgrade latest version. what are the main file we need to use.
Here we use angular.js. is there any changes in external js and css file which mean angular.js like so on file.
Can you please help me out of this.
Thank you
Hi,
I am in a bit of a trouble and need help
I am trying to bind a Kendo UI Grid to an object on $scope instead of to kendo.data.dataSource. The grid shows the data (which is in the object) but if I change the data or add new row, the changes are not reflected in the $scope object. Why is that?
My real problem is, I want to show two grids top & bottom and when the user selects a row from top grid, the bottom grid should be populated with the details. However, these details are already fetched and kept in the DataSource of the top grid (hence no transport section for bottom grid) because I want to be able to save any changes in batches.
This is how I am binding my grids
Top Grid
<
div
kendo-grid
=
"mainGrid"
k-sortable
=
"true"
k-editable
=
"true"
k-selectable
=
"'row'"
k-filterable
=
"true"
k-resizable
=
"true"
k-scrollable
=
'{ "virtual":true }'
k-on-change
=
"selected = dataItem"
k-options
=
"mainGridOptions"
k-height
=
"165"
>
</
div
>
Bottom Grid
<
div
kendo-grid
=
"detailGrid"
k-editable
=
"true"
k-selectable
=
"'row'"
k-options
=
"detailGridOptions"
k-data-source
=
"selected.Details"
k-height
=
"125"
>
</
div
>
This is how I add record to bottom grid
$scope.detailGrid.dataSource.add();
Can you help me with this?