Hi,
The increase/decrease icons in the select box don't appear centered after upgrading to latest 2017.1.118.
I attached some screenshots that show the new behaviour, I used telerik.com's demos and switched the version on the edit example.
Tested with all 3 major browsers.
Best regards,
Gil
Is it possible to simulate the multiselect tagTemplate in a combobox?
http://docs.telerik.com/kendo-ui/api/javascript/ui/multiselect#configuration-tagTemplate
Are you planning such a feature for the combobox?

We recently updated to 2017 R1 of Kendo UI, which included the new Web Font Icons. We noticed that the printer icon is now shown correctly in any browsers. See screenshots below.
Any advice or does Kendo UI need an update?
<button type="button" class="k-button actionButtonRight" data-bind="events:{click:onPrintClick}"> <span class="k-i-print"></span> <span data-l10n-id="udv005"></span></button>I have a CallDate and a CallTime field and I want to display them both in the same column.
I have searched google and the documentation but I can't find an explanation of how to do this.
Please can you advise.
At the moment I have
.Columns(columns => { columns.Bound(u => u.CallDate); columns.Bount(u => u.CallTime);}
I want a column called Call Date with both of these values joined together.
I have a very simple grid that I am adding a runtime (e.g. user clicks a button to add this grid). The OnConnected event of my hub never gets fired. Interestingly when I move the same code to the $(document).ready(function() it works fine. It appears the issue is with binding the client to the hub dynamically.
My code, the values of chat and hubStart are valid.
$('.controls').on('click', 'img', function (e) { loadLiveEvents()
}
function loadLiveEvents() {
var connection = $.connection;
var chat = connection.messageHub;
// Start the connection.
var hubStart = $.connection.hub.start().done(function() {});
var dataSource = new kendo.data.DataSource({
type: "signalr",
autoSync: true,
schema: {
model: {
id: "ID",
fields: {
"ID": { type: "number" }
}
}
},
transport: {
signalr: {
promise: hubStart,
hub: chat,
server: {
read: "readbasic",
update: "sendToGrid",
create: "sendToGrid"
},
client: {
read: "readbasic",
update: "sendToGrid",
create: "sendToGrid"
}
}
}
});
$("#myGrid").kendoGrid({
columns: [
{ field: "ID" },
],
dataSource: dataSource
});
}
