We allow users to specify custom symbols as part of the number formats they see in our software. We are using Kendo's formatting capability to incorporate these symbols as part of our format strings. For example, we might have a format string like:
var format = "\\$0.00\\/\\h\\r;(\\$0.00\\/\\h\\r)";
kendo.toString(-1.7, format); // ($1.70/hr)
Note the use of backslashes to escape literal characters in the format string. This seems to work well, except when the ? character is used. Here's an example:
var format = "\\?\\x0";
kendo.toString(100, format); // returns "x?100", but I would expect "?x100"
This definitely seems like a bug. I can't find any documentation (http://docs.telerik.com/kendo-ui/framework/globalization/numberformatting) explaining why the '?' character should receive special treatment at all, let alone when escaped.
I've also posted this as a StackOverflow question:
http://stackoverflow.com/questions/39977914/kendo-format-string-puts-literal-in-the-wrong-place
var ds = $("#selected_locations").data("kendoGrid").dataSource;var mod = ds.insert(0, { id: dataItem.id, Location: dataItem.Name, Reach: 10000});$("#selected_locations").kendoGrid({ dataSource: { schema: { model: { id: "id", fields: { Location: { type: "string", editable: false }, Reach: { type: "number", editable: false } } } }, type: "json", transport: { read: { url:"createCampaignData.php", dataType: "json", type: "GET", contentType: "application/json; charset=utf-8", data: { funct: "getGeoLocGrid", model: "geoLocation", form: <?php if(isset($id)) echo $id; else echo '0'; ?> } }, destroy: { type: "POST", data: { operation: "delete" } }, create: { type: "POST", data: {operation: "create"}, cache: false } }, autoSync: false, batch: true }, columns: [ { field:"Location" }, { field: "Reach", format: "{0:n0}" }, { title: "Action", command: "destroy" }], editable: true, scrollable: true, sortable: false, filterable: false, pageable: false });var newData = ds.data();newData[0].dirty = true;ds.data(newData);Once one file has been uploaded using the Upload control, the hove style of the control remains and it doesn't change.
For example, if the button is blue and the hover state is light-blue, it remains light-blue after the file-dialog box is opened. i.e. It maintains the hover light-blue color.
I have a kendo grid running with a command button
When I click the button, its appears to not be pulling the closest 'tr' but instead a random 'tr' and then the closest 'tr'
Code:
function showServiceDetails(e){
e.preventDefault();
var dataItem = this.dataItem($(e.currentTarget).closest("tr"));
alert(dataItem.layerSource);
}
I'm not getting the correct rows 'layerSource' instead I get another one, then the correct one???
Odd
I've attached a pic of the data
Any insights would be SOO helpful right now.
Cedric

Could someone please provide some guidance why am I seeing the pages list displayed differently in local (bullets) vs Demo (drop-up list).
Thank you!
Hi,
Is there a breakdown of all the KendoUI packages somewhere and what is needed for each component to work?
I'd like to know (for example) all the packages required when implementing the KendoGrid (eg, grid, toolbar, pdf, etc). So that my web pages only have to download the minimum about of data to function.
Thanks and Kind Regards,
Grant
Our users are experiencing an issue that I was able to recreate on Kendo demo page (https://demos.telerik.com/kendo-ui/spreadsheet/index)
All actions occur in the cells (not the function line):
1 - Within a cell, begin typing a function (for example: = average ), the dropdown appears and the function can be chosen
2 - Go to any other cell, type any letter and press Tab (not Enter). A function from the dropdown list is auto-populated & replaces the letter (or word). Type two words in a cell and hit tab - the second word is replaced by the function name; the same happens when a number then a word/letter is typed in a cell.
It does not happen when only a number is entered or a number is the last character typed in a cell. It also does not happen when Enter is hit instead of Tab.
Thanks
Can anyone help me how to filter a grid by entering a value in an input.
I want that because when the page loads show me all the records in the grid,
and I just want to show me the rows filtered with the input. That's possible?
I saw this example http://demos.telerik.com/kendo-ui/grid/toolbar-template
but in that example the grid brings me all records and i just want to show me the records only when i put a value on a text field.
I will wait for your answers.