Currently setting up a remote data source for resources. If I bind the same server side field for sorting as for the field I use for the dataTextField, I get an undefined label. If I have no "value" field then the labels reappear properly.
I can work on a Dojo example if needed.
I am using AngularJS with restangular for routing in the transport section.
resources: [ { name: "Equipment Number", field: "unit_number", dataTextField: "unit_number", title: "Equipment Number", dataSource: { transport:{ read: function (e) { dispatchFactory.equipment("read") .then(function (result) { console.log(result.data); e.success(result.data); }); } }, schema: { model: { id: "EquipmentModel", fields: { value: {from: "unit_number"}, //unit_number: {from: "unit_number"} } } } } }]
we build a SharePoint Hosted App with the Scheduler Controler. Now we want to display only the Scheduler as AppPart on another site. AppPart means here only in an IFrame. But the problem is that we got JavaScript Access denied errors because the Scheuler is trying to access for example the window object and some size properties.
Do you have any ideas to solve that?
regards,
Chris
I'd like to dynamically create my menus from an Angular $http/$resource call as they will be dynamic based on the user's profile. However, I can't seem to get the Menu object to respond to anything I put into ng-repeat.
Here's my test case:
http://dojo.telerik.com/@pacific202/uSiqa/2
The first one is a working menu with text and url's displayed properly. The other three are various combinations of menus I'd like to build.
Any tips on this?
Scenario: you wish to export a page with a grid and a chart to PDF.
I created a sample dojo based on existing Telerik samples: http://dojo.telerik.com/OsOpu/3
Goals:
1. Use full browser width when viewing the grid & chart in the browser. (works)
2. Adapt to A4 page width in the PDF (works for grid, not for chart which is truncated).
I am aware of the export specific css options, however this does not solve the problem for the chart.
A workaround is to fix the chart width to solve the PDF issue, but then the full browser width is not used.
Temporarily changing the width of the chart is a workaround, but then the user sees the change in width.
Any suggestions are welcome.
Can i do the below functionalites with gantt grid
Export to PDF
Export to Project
Export to Excel
Ability to filter by task names
Ability to highlight critical path on button click
is there Undo / Redo taks changes support with gantt chart.
please help me.
how can i do???
Greetings,
I'm using a Kendo Grid with server paging and filtering, as we are handling big data, our data source only contains a limited number of records based on the page number and the number of records to be displayed.
with the grid, I'm using row filtering.
as the grid data-source doesn't contain all the possible values, the filter auto-complete doesn't show all the correct possible option, so I changed the columns.filterable.cell.dataSource to get those needed values through an ajax call that returns distinct values.
That worked fine but as I'm handling big data, the filter became slow and even freeze (I'm testing on a table that has about 25000 record and it's not the biggest one).
What I want to do is using the columns.filterable.cell.minLength to limit the number of records returned in the auto-complete but I wasn't successful as the filter data-source gets called when I load the grid and not when I start setting the filter value, I tried used a template function but without any success.
Is there a better approach to make the cell datasource read the value when the user start typing the filter, and with consideration to the value being input?
Thanks,
Hi,
we're using a custom TimelineWeekView with vertical resources - representing people. Adding events is done by dragging & dropping a visual onto a day-column. An event is then created for a pre-selected person on the column's day. Then we sync the data-source, reload the data-source and finally obtain the newly added event and select it programmatically.
Now, how to scroll that event into view? Apparently, just selecting the event programmatically does not scroll it into view. Since the event is located in the person-resource's row, we would actually like to scroll to that resource's row.
How can we scroll an event or a vertical resource into view programmatically in this scenario?
Regards
Kasimier Buchcik