@(Html.Kendo() .DatePickerFor(p => p.CashReceipt.ReceivedOn) .HtmlAttributes(new { type = "text" }) )@Html.EditorFor(p => p.CashReceipt.ReceivedOn)<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script> <script type="text/javascript" src="/Scripts/modernizr-1.7.min.js"></script><script type="text/javascript" src="/Scripts/jquery.validate.min.js"></script><script type="text/javascript" src="/Scripts/jquery.validate.unobtrusive.min.js"></script><script type="text/javascript" src="/Scripts/knockout-2.0.0.js"></script><script type="text/javascript" src="/Scripts/kendo.web.min.js"></script><script type="text/javascript" src="/Scripts/kendo.aspnetmvc.min.js"></script><script type="text/javascript" src="/Scripts/knockout-kendo.min.js"></script>@(Html.Telerik().Upload()
.Name("attachments")
.Async(async => async
.Save("Save", "Home")
)
)
Thanks!
|
Requirements |
|
|
Kendo UI Suite and Version |
212.606? |
|
jQuery Version |
1.8 |
|
Supported Browsers and Platforms |
all |
|
Components/Widgets used |
Window, Panel, Editor |
How would I implement the following (which is in an original MVC telerik grid onChange event handler) in a Kendo grid? Basically I need to capture the cancel click event and determine if it was from an add or an update.
$(e.form).find(".t-grid-cancel").click(function () { if (e.mode == "insert") { var urlPath = '@Url.Content( @"~\CatalogAdministration\RemoveBlankInventoryItem?inventoryItemId=")'; urlPath += key; $.post(urlPath); }});$(e.form).find(".t-grid").data("tGrid").ajaxRequest({ inventoryItemId: key });On your own site (as well as ours) when you look at the styles in IE8 and IE7 , they are completely different. When using the styles, for example
<a
class="k-button"><span class="k-icon k-i-arrow-s"></span></a> next to say a kendo combobox, in IE7 the layout is completely messed up whereas in other browsers, including IE8, its OK.
Are there any hacks we can use to solve this problem
Hey I have some foreign key column to countries, like : columns.ForeignKey(p => p.CountryId,(IEnumerable)ViewData["CountriesLOV"], "id", "name"); In filter row it's open filter combobx with huge height with all ~ 180 countries.
How I can define maximum combo height? Serge