I am using the WYSIWYG Editor and trying to add a table. We have our own classes we use for the tables, so I am defining those classes at the top of the html and then adding my table in the html view. If I add a table with a class, after hitting update the editor adds the class "k-table" to the table. Is there a way to prevent this?
Thanks,
Jim

I'm using the "Filter Multi Checkboxes" and I am trying to hook it up to an existing MVC Controller Action which returns JSON data but in a different structure to what is expected.
Currently my code is
columns .Bound(p => p.Customer) .Filterable(ftb => ftb .Multi(true) .DataSource(ds => ds .Read(r => r .Action("Customers_Read", "SalesLedger") ) ) );And this expects the action to return data in this structure
[{"Customer":"John"},{"Customer":"Bob"},{"Customer":"Mary"}]
["John","Bob","Customer"]Is this possible?
Thanks
I would like to be able to hide the spreadsheet formula bar as well as the row and column headers. Is there any way to accomplish this?
Thanks,
Mark

I have a grid where a button on the form calls addRow(). So the row is in insert mode. How do I prevent the user from leaving the row until the values entered have been entered and are valid. Right now it is showing the hints when the user goes to another column without completing the cell but the user can completely leave the row and it remains empty of values.
Is there a way to call validate before calling grid.saveChanges()?

Hello,
I have the problem that one ForeignKey column depends on another ForeignKey column (see attached picture). As you can see the
columns "Fachgruppe" depends on value in column "Sparte" - now this is not correct because I don't know how to display only the
values for "Fachgruppe" which depends on the current value of column "Sparte" in the row (for display and editing)?
these are sample values for that columns
Sparte Fachgruppe
1 1
1 2
1 3
2 1
2 2
3 1
3 2
Is there a way to do this with MVC Grid?
robert

I have a client side datasource grid with several count and sum aggregates that display their data correctly, but they doesn't update when a user filters a column that affects the result of such aggregates. Is it possible to do that? The only way I can think of is with an event that updates the footer, but I don't know how to achieve this.
My grid was created using razor.
Thanks in advance.

Hi,
I am trying to load SQL server data into a dropdownlist in an MVC project, database
first and it works fine as the long as the table is not joined in the
model diagram.
As soon as i bring other tables that are linked to the
one i need, the dropdown does not load data anymore.
Am I missing something?
How can i solve this?
Thx
Adrian


I am using kendo Grid of kendo of ASP.NET MVC 2016.1.412.
My code where I want to get selected is:
column.Bound(e => e.Username).Title("Username").Groupable(true).ClientTemplate("<a style='cursor:pointer' onclick=EditProductDataObject(Username)>#=Username#</a>");
Here instead of username I want to pass whole row object so I can read and use further the coming data.

I have a very basic grid that I built with the telerik mvc grid scaffolding.
I have a column called "parent" that parent should display a 10 digit number, instead it displays "function (){return o}"
I have tried templating, toString and it shows the same thing. every other column works as expected
@(Html.Kendo().Grid<AccountMove.act_trans_worktable>()
.Name("grid")
.Columns(columns =>
{
columns.Bound(c => c.customer_name);
columns.Bound(c => c.reason);
columns.Bound(c => c.parent);
})
.Pageable()
.Navigatable()
.Sortable(sortable =>
{
sortable.SortMode(GridSortMode.SingleColumn);
})
.Filterable()
//.Scrollable()
.DataSource(dataSource => dataSource
.Ajax()
.Read(read => read.Action("act_trans_worktable_Read", "mvcgrid"))
)
)