I have an issue with the placement of the popup edit command when used in conjunction with locked column(s).
Basically this works fine but only if the edit command is placed on the right-most column in the grid. However I would like to have the edit button on the extreme left (so in the first column).
When I do this it looks fine initially, however, when locking a column, the column doesn't stack up to the right of the command column as I was expecting - it snaps to being the first column. This then moves the command along one column to the right which is not ideal.
Before:
Command | Col 1 | Col 2
After locking Col 2:
Col 2 | Command | Col 1
How can I keep the command column always positioned in the first column?

Hi Team,
Need small input here. We are adding rows to the kendo Grid dynamically. Where in the rows gets added successfully, the row count on the page navigation buttons are not coming up properly.
When we are reloading the kendo grid with different set of data, the following issue were observed.
When we click on ">>" or "<<" the total count displayed in the right bottom corner was wrong the records in the newly
added data are getting disappeared. Could you please help me to resolve this issue.
The sample is available in the following Dojo - http://dojo.telerik.com/OWoce/4
Steps to reproduce:
1. Go to the above URL.
2. Click on "add" button.
3. You can see the newly added record on the top.
4. When you click on the ">>" you will observe the total count dispayed is wrong and the newly added record will be
hidden until you click on one of the page number.

Hello Team,
I implemented Virtual Scrolling in Grid and it is working as expected.
Now my Scenario is when I add the row to Grid it should move the Grid scroll to bottom of Grid.
I tried few setting but no luck
Attaching the Scenario Screen (here I added 7 rows but it not show last few row with
Scroll). If I see with Inspect Element it show all TR (for my case 7)
Fyi, We are adding rows on button click
Please suggest the way to implement it and let me know for any further query..
Thanks & Regards,
Nitesh Sahu, Contact No :+91 9350030884

As a paid subscriber, I have access to the professional source code. However, there's a line in the grid.js file that calls .kendoFilterCell(), but I can't find kendoFilterCell in the source files.
The line I'm referring to is in kendo.grid.js on line # 4974 and looks like this:
$('<span/>').attr(kendo.attr('field'), field).appendTo(th).kendoFilterCell(settings);


how can I access aggregate in the requestEnd event?

The ListViewTag class serialises the entire data object, even if those fields aren't used in the ListView. I'm using a Hibernate entity which uses a list of objects from a many-to-many relationship and I only want to retrieve these when I need them. When the Serializer class tries to serialise the object then Hibernate tries to populate the list but it can't because there is no database session open.
Is there any way fields can be ignored by the com.kendoui.taglib.json.Serializer?
See stack trace:
org.hibernate.LazyInitializationException: failed to lazily initialize a collection of role: com.syngenta.combichem.model.CcwEnumeration.buildingBlocks, could not initialize proxy - no Session org.hibernate.collection.internal.AbstractPersistentCollection.throwLazyInitializationException(AbstractPersistentCollection.java:575) org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:214) org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:554) org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:142) org.hibernate.collection.internal.PersistentSet.iterator(PersistentSet.java:180) com.kendoui.taglib.json.Serializer.serializeIterable(Serializer.java:171) com.kendoui.taglib.json.Serializer.serialize(Serializer.java:109) com.kendoui.taglib.json.Serializer.serializeMap(Serializer.java:158) com.kendoui.taglib.json.Serializer.serialize(Serializer.java:121) com.kendoui.taglib.json.Serializer.serializeIterable(Serializer.java:174) com.kendoui.taglib.json.Serializer.serialize(Serializer.java:109) com.kendoui.taglib.json.Serializer.serializeMap(Serializer.java:158) com.kendoui.taglib.json.Serializer.serialize(Serializer.java:113) com.kendoui.taglib.json.Serializer.serializeMap(Serializer.java:158) com.kendoui.taglib.json.Serializer.serialize(Serializer.java:111) com.kendoui.taglib.WidgetTag.script(WidgetTag.java:101) com.kendoui.taglib.WidgetTag.doEndTag(WidgetTag.java:61) com.kendoui.taglib.ListViewTag.doEndTag(ListViewTag.java:82)Dear,
I am building dynamic scatter line & dot chart from database with dynamic numbers of chart series. When i tried pre-configure chart series it working fine.
Class representation.
public class GraphSeriesPoint { public GraphSeriesPoint(double X, double Y, string Tooltip) { this.PointValueX = X; this.PointValueY = Y; this.PointTooltip = Tooltip; } public double PointValueX { get; set; }<br> public double PointValueY { get; set; }<br> public string PointTooltip { get; set; }<br> }<br> public class GraphSeries<br> {<br> public int SeriesID { get; set; }<br> public string SeriesName { get; set; }<br> public string SeriesColor { get; set; }<br> public string SeriesDashType { get; set; }<br><br> public List<GraphSeriesPoint> Points {get;set;}<br> }<br> public class GraphData<br> {<br> public int GraphID { get; set; }<br> public string GraphTitle { get; set; }<br> public string OperatingWindow { get; set; }<br> public string OperatingEnvelop { get; set; }<br> public string DesignEnvelop { get; set; }<br><br><br> public string XTitle { get; set; }<br> public double XMin { get; set; }<br> public double XMax { get; set; }<br><br><br> public string YTitle { get; set; }<br> public double YMin { get; set; }<br> public double YMax { get; set; }<br><br> public List<GraphSeries> Lines { get; set; }<br> }