how can I create drill down charts using telerik mvc controls - asp.net-mvc

My question is the title itself.
Is there any way to achieve this ?
Thanks in advance .
I am using MVC3 Razor
I am using trial version of telerik controls and downloaded to from telerik site.

I haven't tried, but you can use the OnSeriesClick event to handle the element the user clicked and trying to redirect the user to the next level. More info on Teleriks documentation site

Related

Steps to be taken to implement JQgrid in MVC4 Razor,using Entity Framework

I am new to this MVC and JQuery, i started building small application using these, i am using MVC4 Razor ,with Entity Framework. i fallowed few online tutorials for the. but nothin is working out properly. i am able to get my Json data from my controller but the data is printing on my view as a java script array, jqgrid is not displaying, i guess my jqgrid itself is not called, or its not being referenced properly. please tel me what are all the things need to do, and directory structures to be fallowed.
Thanks in Advance
You can easily get jqGrid and other Grids like Telerik from Nuget Package Manager. Each of them must using their own inbuilt functions to handle the events. You will have to learn them to implement it. You can check demos from below link:
jqGid:
[link] http://www.trirand.com/blog/jqgrid/jqgrid.html
Telerik:
[link] http://demos.telerik.com/kendo-ui/?mvc
[link]http://demos.telerik.com/aspnet-ajax/

Tab in edit mode in MVC4

I am trying to Implement Tab control in MVC 4 , I want similar like Nopcommerce
if you login in admin -->sale -->Order -->View
I am not able to understand how to do this ?
Url is not changes in every case only change the tab value .
I am attaching screen short for reference .
Please guide me how to achieve this
Thanks in Advance
You can do the same tabs using the Telerik Extensions (http://demos.telerik.com/aspnet-mvc/razor/tabstrip).

why open event of the popup window in the asp.net mvc kendoui grid doesnt work?

I used asp.net mvc kendoui to create a new website.I used kendoui grid to create a grid list and used the Popup template window to edit.but when i wanted to test the open event of the popup window,i found it doesnt work.And when i saw the html source code generated by kendoui,i found the js handler did not exist in the grid code.Can anyone help?Anyone had the same issue?
The code like:
#(Html.Kendo().Grid<T>().Name("test")....Editable(edit=>edit.Mode(GridEditMode.Popup).TemplateName("Editor").Window(w=>w.Events(e=>e.Open("OpenWindow")))))
<script>function OpenWindow(obj){}</script>
I know this question is old, but Telerik has stated that the events on Popup windows do not work on Razor syntax. You would need to use the grid's Edit event.
Here is the answer from Telerik
Here is another solution given on Stack Overflow

ASP.NET MVC Control

Can anybody recommend a combobox/drop down list control that also has checkboxes on each row? It would also need to support multi select.
Thanks.
You can use the RadComboBox along with a little tweaking as provided for by this telerik community project, found here.
Should all work fine in MVC.
there one from SyncFusion.com with code for both Razor and aspx but I doubt you'll be able to find a free one.

Telerik MVC grid issue in insert mode without edit mode

HI
I have telerik mvc grid in ajax mode and editing is enabled. In my scenario i have to use only the insert mode so I disabled the edit mode. but when I run i get the javascript error on click of "Add New Record". Sample project can be downloaded from Here
I got this to work by the following:
function GridNotes_onEdit(e) {
$('#Content').after("<a class='t-button t-grid-cancel t-button-icon' href='#'><span class='t-icon t-cancel'/></a>")
.after("<a class='t-button t-grid-insert t-button-icon' href='#'><span class='t-icon t-insert'/></a>");
}
Now, this worked when I only had one field being inserted. If you have multiple columns, you may need to customize it to your specifications. But it is do-able. As well, it worked in a detail view grid.
Hope this helps...
If you are looking for an official support channel as you provided a sample project, post your request to the telerik MVC forums on their site.
Had the same issue. The answer is in-line needs the edit buttons to be there, so with in-line mode the insert breaks
This link covers this and has a fix.
http://www.telerik.com/community/forums/aspnet-mvc/grid/insert-only-with-server-editing.aspx

Resources