Hello
I need to change the pager dropdown from left side to right side of the pagination section as below.
I am able to change that by applying some css, but the position of the dropdown changes whenever I zoom in or zoom out.
Is there any in-built function available without updating the css, so that the dropdown stick to the same position even-though I zoom in or zoom out?
Thanks in advance.
Vignesh

I am trying to disable the drag/drop within the treeview (as in the user wont be able to move any items anywhere inside the treeview). However I am not coming up with a solution for this issue.
I still want the user to be able to drag/drop an item that's inside the treeview over to my listview box as well as drag/drop it back to the treeview box.
So is it possible to disable the drag/drop feature inside the treeview when keeping the drag/drop from there to my listbox?


Hi
First of all, this one is build up on an earlier issue :
https://www.telerik.com/forums/update-single-cell-value-on-mvvm-jquery-grid-without-reloading-whole-grid#wHZHTCnTLk2Qy1ZKLvRsvQ
Dojo for the current issue is:
http://dojo.telerik.com/igIkIRoY/16
Issue with this one are lines 161-166.
I want to set the field types, to get the correct column filters, date filter with lte, gt, .. im this example.
Where the fields aren't the special issue here, it's the schema.model object they are in.
As soon as I set the "model", example breaks.
To test it, try dojo as it is and click the "Update date" button.
Nothing will happen.
As soon as you remove lines 161-166 (the model), everything is fine and clicking the button will update the cell in the grid.
I don't know the issue's coming from the special "update single cell value" or from somewhere else, I just cannot say why an empty model object in schema will break the update functionallity.
So hope you can bring a bit of light in the dark.
Greets Robin
Hello,
I alone of MultiColumnComboBox we can prevent adding custom values with change event follow your sample in ComboBox.
with "change code"
change: function(e) {
var widget = e.sender;
if (widget.value() && widget.select() === -1) {
//custom has been selected
widget.value(""); //reset widget
}
}Follow this sample work with anyone or the parent(Master) MultiColumnComboBox, but in case child(Detail) of MultiColumnComboBox, It's not working because if I selected parent MultiColumnComboBox first and then child MultiColumnComboBox wil show data follow selected list in parent. In this case ("change code") will prevent any data in child MultiColumnComboBox, as a result, any items in it cannot be displayed.
Please guide me for prevent add custom values in the child(Detail) of MultiColumnComboBox, if I use Cascading MultiColumnComboBox.
Thank.
I am using the Kendo UI JQuery timepicker with the defaults and the option dateInput: true. When no time has been entered the placeholder text reads, "hours:minutes AM/PM". This is too long to fit in the box and gets cut off at the letter "A". I would like to shorten it to something like "hh:mm am/pm". How would I do this?
$("#myTime").kendoTimePicker({
dateInput: true,
});Hi
I have a remote datasource that renders JSON values. I am trying to show the values in Kendo UI grid (jQuery).
While the data is being correctly retrieved from the WebAPI (it is a Telerik web service), the grid doesn't display any values.
Can you please advise what could be going wrong?
there is no error in the dev console.
JS Bin: https://jsbin.com/movetajuge/edit?html,js,output
Cheers
Abhishek
Please see the image marked. Looking for the same functionality at the parent element.
hello
I am using kendo grid to display data with AngularJS which uses serve pagination.
Currently it uses the existing icons provided by kendo for first page, last page, previous and next page icons.
I need to update the icons as per the below image.
I am able to update icon for previous (k-i-arrow-chevron-left) and next page (k-i-arrow-chevron-right), but I am unable to update for first page and last page icons.
Also currently it just shows the current page number as per below image.
But I need current page along with total number of page available between the icons as mentioned in first image.
Please let me know how to achieve the above mentioned points.
Thanks
Vignesh
I have a slider on a page set to a min/max of 0 and 100. The min/max of this slider is variable and changes depending on what a user has selected in a dropdownlist. For example, when the user selects an item in the dropdownlist, I change the slider's min/max value of 10 and 50 using setOptions.
var slider = $("#slider").data("kendoSlider");slider.resize();
This seems to work as the slider updates to the properties I set in setOptions. But after I do this, it doesn't consistently let me jump to a value in the slider. For example, if I try to click the slider line at 40, the slider won't move to it. Sometimes it will, sometimes it won't. If I drag the slider ball to a number it works fine, if I user the increase/decrease arrow buttons it works fine. But clicking on a number in the slider bar does not work.
- This jumping to a number in the slider works fine before I dynamically change the properties using "setOptions".
- This problem occurs regardless of what property in the slider I change using "setOptions".
Any ideas? Thanks.