Hello,
since 2015 Q3 i cannot set the title in a show-before function.
With 2015 Q2, it works as expected.
Kind regards
I have a template that returns the name of the template when loaded.
<div><ul id="inspectionlist"></ul></div>
<script id="attachment-template" type="text/x-kendo-template"> <table class="instable"> <tr class="insrow"> <td class="inscell1"><label>#: RiskAssessment #</label></td> <td class="inscell2"><label>#: AreaDescription #</label></td> <td class="inscell3"># if (HasAttachments) { # <a data-role="button" data-click="onClick">VIEW</a> # } #</td> </tr> </table></script>
var ourList = e.view.content.find("#inspectionlist"); ourList.kendoListView({ template: 'attachment-template', style: "inset", dataSource: new kendo.data.DataSource({ type: 'everlive', transport: { typeName: 'dbo_Inspection' }, schema: { model: { id: Everlive.idField, fields: { 'RiskAssessment': { type: 'number' }, 'AreaDescription': { type: 'string' }, 'HasAttachments': { type: 'boolean' }, 'StatusDescription': { type: 'string' }, 'CompanyId': { type: 'number' } } } }, serverFiltering: true, filter: { logic: "and", filters: [ { field: 'CompanyId', operator: 'eq', value: sessionStorage.CompanyId }, { field: 'StatusDescription', operator: 'eq', value: 'Open' } ] }, serverSorting: true, sort: { field: 'AreaDescription', dir: 'asc' } }) });What returns looks like the following:
attachment-templateattachment-templateattachment-templateattachment-templateattachment-templateattachment-templateattachment-templateattachment-templateattachment-templateattachment-templateattachment-templateattachment-Can I assume I have something wrong with the template and if so could someone point it out.
Thanks
Hi,
When i set the "filter" option in the DropDownList, the dropdown closes as soon as i click it !
​You can see the issue here jsFiddle
Commenting the filter​ line solves it, but i need the search
Thanks.
The valueAxis is a percentage value.
Is it possible to give the whole chart a red background color for the region below the 20% range?
I have been trying to figure out this bug for several hours now and just can't seem to figure out what the issue is. I am using the Kendo UI Grid to display some items. The pager at the bottom works perfectly fine on any screen resolution above 1024px. But once it hits or goes below 1024px, the actual button to select the page your on drops down a line below the rest of the buttons.
I have inspected element on it and tried to change a ton of different style properties for it but none seem to work. I have attached screenshots to this thread. The first attachment is of it working properly on screens greater than 1024px wide. The second attachment is of it broken when the screen resolution is <= 1024px.
Hopefully someone has run into this problem before and can help me out. It's driving me insane!
Hi,
For applying translation for calendar, how can we translate the month and week names using messages
kendo.ui.<Widget-name>.prototype.options.messages =
$.extend(true, kendo.ui.<Widget-name>.prototype.options.messages,{"<message-name>": "<translation",//...});
Why I am preferring messages is I already have names translated files in my project, planning to use the same instead of having duplicate sources.
could any one please help me, Thanks in advance.
Regards,
Ramesh
I would like to use KendoUI Professional in a node-webkit.js application (aka nw.js)
I did see kendo-ui-core in npm how would I get the licensed version(professional) into a node-webkit application?
Thanks,
Pete
Hi,
I get no lines in my chart and figured out, that the datasource type may be the issue.
Am I right, that I need plain data without the aspnetmvc-ajax wrapping (Data, Total, Errors, AggregateResults) for use with a chart?
It is working in that way. I just need clarification if I need separate serverside controllers for grid/chart in my project.
Thank you!
br, Chris