Please help us how to create inline editing in Hierarchy grid. Please provide the sample for this grid.
Thanks
Senthilkumar N

I have a problem with the DDL not lining up with the other controls on the same html line. (see attached images)
Below is the entire page (in razor). I am using the default skin. If the user swaps to portrait mode, the DDL wraps the the next line, but displays covering the bottom half of the textbox. Any ideas why this does not look right in Android Chrome - but fine in IOS Safari?
TIA,
Jeff
@(Html.Kendo().MobileView()
.Title("Mobile Home Page")
.Name("Index")
.Content(@<text>
<div>
Address:
@Html.Kendo().TextBox().Name("tbAddress").HtmlAttributes(new { style = "width: 100px" })
@Html.Kendo().Button().Content("+").Name("btnExpSearch")
@Html.Kendo().Button().Content("SEARCH").Name("btnSearch")
@(Html.Kendo().DropDownList()
.Name("ddlTrades")
.DataTextField("Text")
.DataValueField("Value")
.BindTo(new List<SelectListItem>() {
new SelectListItem() {
Text = "Plumbing",
Value = "1"
},
new SelectListItem() {
Text = "Electric",
Value = "2"
},
new SelectListItem() {
Text = "HVAC",
Value = "3"
}
})
.Value("1")
)
</div>
<br />
@(Html.Kendo().Grid<HomeController.grid_results>()
.Name("grid")
.Columns(columns =>
{
columns.Bound(c => c.Address);
columns.Bound(c => c.Builder);
columns.Bound(c => c.Neighborhood);
columns.Bound(c => c.NextStage);
columns.Bound(c => c.NeedBy);
columns.Bound(c => c.Hold);
}).Pageable()
.DataSource(ds => ds.Ajax().Read(read => read.Action("Jobs_Read", "Home")))
)
</text>)
)

A web application in development will be hosted on a different IIS server to the IIS server hosting the OLAP msmdpump.dll web application.
I can get the pivotgrid working setting the OLAP web application to anonymous access, and giving the anonymous user access to the cube. However, this is not secure. Ideally we would like to be able to specify that the pviotgrid should access the web application using the application pool identity of the application (which is a domain account). Have you any ideas on how to do this?
As a last resort, how would the pivotgrid be configured when using basic authentication? How would the username and password be specified in the configuration?
Thanks
Hi
Is it possible to implement Remote DataBinding for a Grid, but with the difference that when the View is rendered the Data for the first Grid-Page is also already rendered (and not loaded afterwards async) ?
Many thanks
Giuseppe
Hi there,
Is there any way to Unselect a tree node?. I have a databound event which fires the below function.
function equipmentCategoryLoaded(){
$(".k-item").click(function(e){
var equipmentCategoryTree = $("#equipmentCategoryTreeView").data("kendoTreeView");
var equipmentCategorySelected = equipmentCategoryTree.select();
if(equipmentCategorySelected && $(e.currentTarget).attr("date-uid") == $(equipmentCategorySelected.context).attr("data-uid")){
equipmentCategoryTree.select($());
}
});
}
Not sure where i am going wrong.
Any help would be appreciated.
Many Thanks
Arrash
Hi all
The company I work for has added the bootstrap styling (kendo.bootstrap.css). It has caused a problem with the column menu items in the kendo grids in the app.
The columns that have enough space to display sub menus to the right work ok (when selecting the down arrow from the column header and then the Columns menu item).
However, the rightmost columns (which show the "Columns" sub menu item to the left) appear with a blue background. This causes an inconsistency with the other columns.
The lines I found to cause the issue are:
.k-menu .k-state-border-right {
background-color: #428bca;
color: #ffffff;
}
If I comment that out it works ok (no matter where they appear, all sub-menu items have the same background), but I do not know what else this may affect.
Is there a way to fix the bug with the rightmost column menu items?
Thanks in advance
