In a Combox, when you enter some characters, it will filter the list of items automatically for you when you are typing. For example, when you type "j", all items which contain "j" will appear in the list. Everything works so far until you need to type some character of Chinese with an input method. For example, when you try to input "脚" (which means foot in English), you need to input "jiao" (the Pinyin of "脚") within the input method. And something strange starts happening: the Combox will capture the first "j" and make it the first character in the Combox, and will still let "jiao" continue to get "脚", and the final content in the Combox is "j脚", but what we expect is "脚" only. It seems like a defect.
Good day, I have a list which is having elements, based on that list the grid will be obtained. I've a requirement of changing the order of elements in that list. So when i change the order of list and run the report, the grid is obtaining with the order of before list but not with the newly changed order. Can i reorder the Grid columns based on that list elements after changing the order of list? Thanks, Sai
While implementing virtual scrolling in kendo grid, I am not able to see loading symbol in my application. But in the demo i could see.For that what i need to do? Kindly help me.
Feedback from a client: We were able to get it to work. We had to url encode the @ symbol in the email address. Example bower install https://firstname.lasname%40walmart.com@bower.telerik.com/bower-kendo-ui.git Once this was done it worked. It might be a good idea to update this in the on-line documentation
Menu widget has disabled items but lacks icons, separators and checked items
sorting the cloumn in grid as per Value added in the text input
Ability to quickly filter and select item from dropdownlist by typing the first few characters of possible dropdown options and having the matched item be the selected item. This is already a normal function of regular dropdowns, and would make keyboard manipulation much faster.
Currently only an array of page size integers can be set in the pageable.pageSizes property. It would be really great to have an option for adding "All" within the dropdown somehow.
Kendo AutoComplete should support input type="number" so that OnScreen Keyboard appears on Numeric Screen when only want Numbers to be input (or at first). Currently it does not (as per support call) so normal alpha OSK appears first and User has to immediatley chnage to Numeric keys. (eg for numeric postcodes etc)
Basically I'm asking for [`optionLabel` from `DropDownList`][1]. I can't do it using the datasource, because my data is remote. [1]: http://docs.telerik.com/kendo-ui/api/javascript/ui/dropdownlist#configuration-optionLabel
please add touch support for tablets/phones to the scheduler and gantt widget, for moving events or tasks
When exporting data to pdf using the Kendo pdf toolbar please can all data be exported instead of only the data contained within the html viewable page (eg. when height is set using kendoGrid.height).
You should option to convert UTC time from database to specific Timezone with DST checking in telerik Reports. The problem is as below: We are taking user date time from aplication UI in CST and converting in to UTC in C# and saving it to SQL and for displaying also we are Converting From UTC to CST with DST checking in C# and showing in to Razor view. Its working perfectly. We have stored application wise timezone settings in our SQL. But to display any datetime in Telerik Report we need to convert from UTC to CST with DST checking. Currently there is no option available to convert it in Report. To resolve this issue we need some feature in reports.
I really like the new TreeList component of the recent release, however it would be great if you can add the ability to drag and drop a record and move it around the hierarchy.
I am able to generate PDF file from Org Chart. I am using Arabic word in Org Chart. My Arabic word is getting split in individual character and all characters are appearing left to right in PDF instead of right to left. My Arabic word is loosing actual meaning because of this reason. We are not facing this type of issues in your other reports where you have provided Save PDF option in drop down. Thanks & Regards, Rajeev
Currently the component is very limited to OLAP. Please implement PivotGrid with features like filtering and sorting to flat data, as well as is done in normal grids.
Currently to use the native mobile Date Picker I have to add if statement like so: @if (Request.Browser.IsMobileDevice) { @Html.TextBoxFor(model => model.DateTime, new {type = "date", @class = "k-textbox k-input", @onchange = "dataChanged()" }) } else { @(Html.Kendo().DatePicker() .Name("DateTime") .Events(e => e.Change("dataChanged")) .HtmlAttributes(new {style = "width: 120px;"}) .Value(Model.DateTime) ) } What's worse is now the data() method cannot be used to reference the Date Picker in JavaScript, thus, another if statement has to be used: if ($("#isMobile").val() = 1) { var dateTime = $("#DateTime").val(); } else { var dateTime = $("#DateTime").data("kendoTimePicker").value(); } It would be great if something like UseNative(true) could be used keeping the Kendo Date Picker API: @(Html.Kendo().DatePicker() .Name("DateTime") .Events(e => e.Change("dataChanged")) .HtmlAttributes(new {style = "width: 120px;"}) .Value(Model.DateTime) .UseNative(true) )
kendo tree list drag and drop function has only ui support.it's good if it will be customable.