Hi Kendo,
I'm having rendering problem for Kendo grid with locked columns inside of Kendo window - the grid columns looks squashed together. See this plunk for problem demo.
In addition, on Kendo window restore, the grid gets squashed again - although I'm unable to reproduce it in the plunk. In my system, when I put a break point on the resize event function, I can see that when the kendo window is restored, my window content seems to be gone, and the window has a very tiny size.
help please!
ps. There are maximize, minimize event, but how come there's no event on restoring?
Ama
Hi,
I want to use a different template according to model for Detail Grid. I saw 2 links with similar expecting features for this. The first one didn't render anything and the second one render the template, but my AngularJs ng-show is not working. When I use the template 1 (I have 3 templates) directly (to see the results, it works). So, it is only when I use it in the directive that it does not work.
Any idea?
Thank you
Hi,
Is it possible to create the custom popup editor dynamically? I have a grid merging different objects would like like to change popup editor dynamically. Usually, I used this form and it works fine:
editable: { mode: "popup", template: kendo.template($("#allRequestEditGridTemplate").html()), confirmation:"@Html.Raw(@LocString["STR_DeleteConfirmation"])",},However, I would like use something like this and it does not work. I got correct template shown, but no update button....
edit: function (e) { var editWindow = this.editable.element.data("kendoWindow"); if(e.model.CategoryType == 1 /*Document*/) { editWindow.content($("#docEditTemplate").html()); } else if(e.model.CategoryType == 2 /*Piping*/) { editWindow.content($("#pipingEditTemplate").html()); }}
Thank you for your help
Hi
Please see screen attached. Any ideas why this may occur. I am looking for any pointers, as a starting point for my research.
Regards
<input type="checkbox" value="option1" data-question="1" data-min="1" data-max="3"><input type="checkbox" value="option2" data-question="1" data-min="1" data-max="3"><input type="checkbox" value="option3" data-question="1" data-min="1" data-max="3"><input type="checkbox" value="option4" data-question="1" data-min="1" data-max="3"><input type="checkbox" value="option5" data-question="1" data-min="1" data-max="3"><script type="text/x-kendo-template" id="template"> <div class="toolbar" style="float: left"> <label class="customers-label" for="customers">Filter details by customer:</label> <input type="search" id="customers" style="width: 150px"/> </div> <div class="toolbar""> <label class="shops-label" for="shops">Filter details by shop:</label> <input type="search" id="shops" style="width: 150px"/> </div></script>rowTemplate: kendo.template($("#rowTemplate").html()),toolbar: [{ name: "create" },{ name: "save" }, { name: "cancel" }],
Hi,
I read many thread talking about grouping not working with row template, but didn't find my problem with grouping and column template.
I have a simple grid (simplified version) here:
groupable: true, filterable: { extra: false }, toolbar: ["create"], columns: [ { command: ["edit", "destroy"], title: " ", width: "200px" }, { field: "Number", title: "Numéro", width: 140 }, { field: "Parent", title: "Parent", template: "#= Parent == null ? '' : Parent.Number #", editor: projectDropDownEditor, filterable: { extra: false, field: "Parent.Number" } } ],
Because my parent column is a column template based on an object with Number and Id, grouping is not working. Do you have any idea how to fix it?
Thank you for your help
