Hi
I have implemented server side paging in kendo grid. I am facing one issue.
Issue Description - there are 2333 records in my table and per page records are configurable (20, 50 and 100). it is working fine. i navigate to 2nd page and try to apply filter on one of the column. when i debug the code on controller method, i noticed that request.page is 1, ideally it should be a page no where user in the grid. in our case it should be 2.
Controller code -
public ActionResult GetAutoBlockCardsGridBySearch([DataSourceRequest] DataSourceRequest request, AutoBlockRequestInput model)
{
int totalRows;
var result = _autoBlockCardsAPIController.GetAllAutoBlockCards(model, request.Page, request.PageSize, out totalRows).OrderBy(a => a.MaskedCardNumber);
List<AutoBlockRequest> AutoBlockCardsList = new List<AutoBlockRequest>();
if (null != result && result.Count() > 0)
{
AutoBlockCardsList = result.ToList();
}
request.Page = 0;
var response = result.ToDataSourceResult(request);
response.Total = totalRows;
return Json(response);
}
Can you please let me know if anything wrong in code or is it bug in kendo grid?
Thanks,
Dharmesh

I would like to change the position of Shared Tooltip.
It is hindering select columns.
See the example :
http://dojo.telerik.com/IJiYI/4
I have a problem with column resizing. I am creating a function to auto size all columns taking into account a minimum width. The problem I am having is that as it resizes the columns eventually a horizontal scrollbar appears and then all columns that are not visible to the right dont get resized. Is this a bug or how can I get around it?
Here is the code:
function autoFitColumns(grid) { for (var i = 0; i < grid.columns.length; i++) { if (!grid.columns[i].hidden) { grid.autoFitColumn(grid.columns[i].field); var minWidth = grid.columns[i].minWidth; if (minWidth != undefined && minWidth > grid.columns[i].width) { $("#projectGrid .k-grid-header-wrap") //header .find("colgroup col") .eq(i) .css({ width: minWidth }); $("#projectGrid .k-grid-content") //content .find("colgroup col") .eq(i) .css({ width: minWidth }); } } }}

Hi,
Here is my code:
http://dojo.telerik.com/@idoglik6/ocavO
I added button on top "ADD ROUTE".
This button simulates adding a route to the $scope.route which serve the resources.
After adding a new route, I tried to create a new task using the new route (Route 3).
Unfortunately, the task color remains the default color instead of the new route color.
Any suggestions?
Thanks,
Ran

Hi,
When we display 365 data points (yearly data) in stockchart, candles are skipping many days. Can we display all the daily candles in any view (regardless of viewing by monthly, yearly, weekly)?
In yearly view (365 candles), categoryAxis labels should still skip the dates to avoid the overlapping. But the candles need to display daily.
Right now, to see all the candles, I have to select monthly or weekly view with navigator. Is there anyway to achieve this?
Thanks so much.
Kyaw
Hi guys,
my viewModel:
var uploadVM = kendo.observable({ onUpload: function(e) { Codes Here }});editTemplate
<script type="text/x-kendo-tmpl" id="editTemplate"> <div class="product-view k-widget"> <dl> <dt>Product Photo</dt> <div> <input id="editUpload" name="itemPic" type="file" data-role="upload" data-model="uploadVM" data-bind="events: { upload: onUpload }" data-multiple="false" data-async="{ saveUrl: saveURL, removeUrl: removeURL, removeVerb: 'DELETE', autoUpload: true }" /> </div> </dl> <div class="edit-buttons"> <a class="k-button k-update-button" href="\\#"><span class="k-icon k-update"></span></a> <a class="k-button k-cancel-button" href="\\#"><span class="k-icon k-cancel"></span></a> </div> </div></script>listView initiate with
var listView = $("#product-listview").kendoListView({ dataSource: ListViewDataSource, template: kendo.template($("#template").html()), editTemplate: kendo.template($("#editTemplate").html())}).data("kendoListView");but The UPLOAD event: upload work with error message: Uncaught TypeError: n is not a function
Any suggestion will be appreciated.