Sir, Do you have pivot grid like feature in kendo grid Thanks
I would like to be able to add workfklow specific shapes like swimlanes to kendo diagram and being able to edit their texts.
When Adding a schedule item,a popup is opening but when opening popup i want to restrict popup based on css class name of clicked scheduled item how to get css class name of clicked scheduled item Sourcecode: @(Html.Kendo().Scheduler<FMCO.DataTransferObjects.Configuration.AppointmentModel>() .Name("scheduler") .Date(new DateTime(DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day)) .StartTime(new DateTime(DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day, 08, 00, 00)) .EndTime(new DateTime(DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day, 17, 00, 00)) .Editable(editable => editable.TemplateName("CustomEditorTemplate")) .EventTemplate("") .Events(e => e.Add("onAdd")) ) <script> function onAdd(e) { // i want here css class name of click item } </script> Please help me Thanks in advance
We have come across problems where on ann individual vie wit would be good to strip out all the CSS styling on a listview. To do this presently is very difficult to find what styles are applied and when we do remove them it causes problems else where. Ideally it would be nice just to have a attribute on the widget which tells the widget not to use the in built styling.
Currently when a new row is added to the grid, it will be inserted according to its initial values and the grid's sort order, but this means it may or may not be visible on the page the user is looking at. In this case the user gets no indication that a new row has been added and will have to page through the grid to find the new row.
First, it would be helpful if there was a way to apply a format for an entire column (except for, obviously, header and footer rows). This would prevent us from having to write a script that loops over every row to format every 3rd column (for example) to a specific format. In addition, it would be nice to be able to use Kendo formats for columns and have that automatically translated into Excel formats. In my case, I have to write a translation layer that, in my opinion, would be much simpler if it was incorporated into the back end. If this could even auto-format to match the format used in the grid display on the page, it would be even better.
When using numeric text box with AngularJS - the model value should be affected by using the arrows, just like it's affected by typing inside the control.
Many other libraries provide responsive widget like charts, graphs, Gantt charts, Tables and so on. For the widgets in Kendo that are not responsive, when will that happen?
The functionality of the RadTagCloud control in UI for ASP.NET AJAX would be a handy addition to the UI for MVC toolset.
Changing the min / max value of the progressbar isn't possible. For now, we have to destroy the progressbar and recreate a new one using the new min / max values.
Kendo UI supports PDF export. It would be great if you could add glyph mirroring support to it as well (https://github.com/mozilla/pdf.js/blob/master/src/core/bidi.js). PDF export of RTL languages such as Arabic and Persian need this trick to work properly.
For setters in general this shouldn't cause any trouble to return the widget so I could perform more things with it. For the get-set functions (like value() etc..), if I get a parameter this means I'm using it as a setter hence I might want to do something else with the widget later on... "Chainability" jQuery style. A small code snippet to illustrate: //the datePicker is already in place and has been initialized somewhere else //I would like to be able to do this: datePicker = $("#aDatePicker") //jQuery Selector .getKendoDatePicker() //retrieve the picker .setOptions(dpOptions) //set new options .value(aDate); //set the current date //Instead of this: datepicker = $("#aDatePicker").getKendoDatePicker(); datepicker.setOptions(dpOptions); datepicker.value(aDate); Regards Carlos A Luengas
Expand your Moonlight theme for use with the Mobile UI
My company currently uses KendoUI Professional (license) widgets quite extensively. And until very recently it was side-by-side with the Javascript Infoviz Toolkit (http://thejit.org) for just one reason: KendoUI had no Treemap widget. And now it has. But. The Infoviz treemap has neat Tooltip on mouse hover functionality, which our business users love greatly. Here's an example: http://philogb.github.io/jit/static/v20/Jit/Examples/Treemap/example1.html Could you please implement more events (there are two at the moment) for Treemap widget, so that it enables use of KendoUI Tooltip widgets?
Kendo grid angular is having option to rebind which works fine perfectly but the aggreates on the column footer are not updated when the k-options for the grid are changed. the sum is displayed as undefined next time when the value for the grid option is changed .
Let's say I'm using an autocomplete to choose a country: I know I can format the list with a template, but at the moment I can't have the inner value of the widget to be the ISO code and the input text value to be the description + ISO country code. For example, the user types "ita" in the input box, the list shows an element with "[flag] Italy". When the user clicks on that row, the input box changes to "Italy - IT", and the Autocomplete istance would return "IT".
After a bit of poking, I found that KendoUI has an internal dependency to jQuery. Hidden external dependencies to external framework, especially once with known compatibility issue between revisions, should be removed. This is even more vital when more than one of your competitors have web controls with no external dependencies.
http://docs.telerik.com/kendo-ui/api/javascript/kendo Optional namespace too look in when instantiating Kendo UI widgets. should be: Optional namespace to look in when instantiating Kendo UI widgets. Also, maybe you could give one example for each of the following: element String |jQuery |Element I think the code example is using "jQuery" '$("#view")'. It would be nice to know what a "string" and "Element" version would look like. Since I'm new I would be guessing how to put a "string" or "Element" version into the bind method.