Hi,
I have a link in a column (using the "template" option) within a child grid, which on clicking will redirect to a new page. When I click the back button on the browser, I would like to have the grids in the state that they were in. I found an option for the main grid using setOptions and getOptions. But how do you manage the state of the child grid?
For example, if I have the second row of the main grid expanded which in turn has a child grid which is in the third page, when I return back, I want the second row of the main grid to be expanded and the child grid should be in the third page. Is this possible?
Thanks,
Arun Kumar

{ "SalesSummary": { "ProNetSales": { "SubHeader": "Proj Net Sales", "Monday": 2800.00, "Tuesday": 3450.00, "Wednesday": 3100.00, "Thursday": 0, "Friday": 0, "Saturday": 0, "Sunday": 0, "WTD": 9350.00, "PTD": 54470.00 }, "ActualNetSales": { "SubHeader": "Actual Net Sales", "Monday": 2983.19, "Tuesday": 3728.17, "Wednesday": 3783.34, "Thursday": 0, "Friday": 0, "Saturday": 0, "Sunday": 0, "WTD": 10494.70, "PTD": 58022.00 } },"Transactions": { "Proj": { "SubHeader": "Proj", "Monday": 225.00, "Tuesday": 350.00, "Wednesday": 270.00, "Thursday": 0, "Friday": 0, "Saturday": 0, "Sunday": 0, "WTD": 845.00, "PTD": 4644.00 }, "Actual": { "SubHeader": "Actual", "Monday": 263.00, "Tuesday": 365.00, "Wednesday": 289.00, "Thursday": 0, "Friday": 0, "Saturday": 0, "Sunday": 0, "WTD": 917.00, "PTD": 4827.00 } } }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