Here is a mock of my code: http://dojo.telerik.com/@spresnal/usOfI
What kind of modifications can be made that will reduce render time without heavily affecting the look of the page? Is there a way to do it without grid paging or increasing interval size? We are phasing out older libraries in favor of kendo, but the rendering time seems to be slower.
Hi i am having trouble in adding PAger. I have search function which is called from couple of location which is bring data using Jquery. Code working fine and displaying the data but unable to add the Paging.
var srchResuls = function () {<br> var pg = 1;<br> $("#srchgrd").data("kendoGrid").dataSource.query({<br> page: pg,<br> pageSize: 2<br> });<br> $.ajax({<br> url: "Docktst.aspx/Getserachres",<br> type: "post",<br> dataType: "json",<br> contentType: "application/json; charset=utf-8",<br> <br><br> success: function (result) {<br> searchResults = result;<br> }<br> }).done(function () {<br> var dataSource = new kendo.data.DataSource({<br> data: searchResults.d,<br> <br> <br> schema: {<br> model: {<br> id: "DOCK_ACTIVITY_ID",<br> fields: {<br> DOCK_ACTIVITY_ID: { type: "number", editable: false },<br> LOC_ABBR: { type: "string", editable: true, filterable: { multi: true, search: true } },<br> // BatchId :{ editable: true, nullable: true },<br> SHIPPER_ACCT_NBR: { type: "number", editable: false },<br> ORDER_ID: { type: "number", editable: false },<br> VESSEL_VIN: { type: "string" },<br> CUSTOMER_PT: { type: "string" }<br><br><br> }<br> },<br><br> pageable: {<br> <br> pageSize: 2,<br> buttonCount: 1<br> },<br><br> serverSorting: true,<br> sort: { field: "DOCK_ACTIVITY_ID", dir: "desc" },<br><br> parameterMap: function (data) {<br> return JSON.stringify(data);<br> }<br><br> }<br> });<br>Hello,
I want to unbind close button in kendoWindow. So when user clicks button: X nothing happens. Is it possible?
Iam looking for that solution as I want to add my custom handler on closing kendoWindow. Iam aware of close event, but still I want to handle it on my own.Once again I find myself at the mercy of another flaky Telerik control, this time it's the chart component and the totally inadequate documentation (as usual).
Imaging this simple configuration (or so I thought!!!)
Why is the months axis in the wrong order despite the order clause?
<div id="chart3"></div>
<script>
var data = [
{ "MonthName": "Jan", "MonthNum": 1, "Status": "Approved", "Value": 1 },
{ "MonthName": "Jan", "MonthNum": 1, "Status": "Completed", "Value": 2 },
{ "MonthName": "Jan", "MonthNum": 1, "Status": "Requested", "Value": 1 },
{ "MonthName": "Feb", "MonthNum": 2, "Status": "Requested", "Value": 1 },
{ "MonthName": "Mar", "MonthNum": 3, "Status": "Booked", "Value": 1 },
{ "MonthName": "Apr", "MonthNum": 4, "Status": "Completed", "Value": 1 },
{ "MonthName": "May", "MonthNum": 5, "Status": "Completed", "Value": 1 },
{ "MonthName": "Jun", "MonthNum": 6, "Status": "Completed", "Value": 1 },
{ "MonthName": "Jul", "MonthNum": 7, "Status": "Approved", "Value": 1 },
{ "MonthName": "Aug", "MonthNum": 8, "Status": "Requested", "Value": 1 },
{ "MonthName": "Sep", "MonthNum": 9, "Status": "Requested", "Value": 1 },
{ "MonthName": "Oct", "MonthNum": 10,"Status": "Approved", "Value": 1 },
{ "MonthName": "Nov", "MonthNum": 11,"Status": "Booked", "Value": 1 },
{ "MonthName": "Dec", "MonthNum": 12,"Status": "Completed", "Value": 1 }
];
$("#chart3").kendoChart({
dataSource: {
data: data,
group: {
field: "Status"
},
sort: {
field: "MonthNum",
dir: "asc"
}
},
series: [{
type: "column",
field: "Value",
categoryField: "MonthNum"
}]
});
</script>
Hello, I have a bug with the Kendo UI Map.
While panning the map, some tiles will not render and stay white. This does not happen when zooming.
The same happends when exporting to PDF using kendo drawing PDF API, but with a higher frequency of white tiles than normal usage.
I am using openstreetmap as map provider.
See attached image for an examle of the error.
Grateful for any help!
/Simon
when the user clicks on a piece of the donut, I would like to have some text (via template) show up in the donut hole. Is this possible and if so, how?
Thanks,
--Ed