Telerik Forums
UI for ASP.NET MVC Forum
1 answer
775 views

Following the exact example here:

https://github.com/ftamminga/KendoUISignalRApp/blob/master/KendoUISignalRApp/Views/Home/Index.cshtml

My application works on initial load (e.g. create, destory, etc) but if I refresh the page (f5), OnDisconnected gets called by the client never reconnects. But if I had the empty client side method, it works:

hub.client.create = function () { console.log('create1'); };

 

I would think setting the client side kendo grid properties (e.g. Read, Create, Destroy, Update) would created/binded to the necessary client side methods. Am I doing something wrong? 

 

 

Tsvetomir
Telerik team
 answered on 07 Oct 2020
1 answer
77 views

Hello,
I needed splitview for my existing asp.net mvc application. Since this feature is not in bootstrap, I want to integrate the splitview structure of kendo into my home / index page. But I could not find an example exactly like the link(https://demos.telerik.com/kendo-ui/m/index?&_ga=2.175873698.1093150333.1601874386-452789549.1601620086#splitview/index). Is there a version of the same example in the link made in mvc?

 

If I can integrate a structure like in the link into my home index page, I am thinking of buying the license of Kendon.

Tsvetomir
Telerik team
 answered on 07 Oct 2020
5 answers
610 views
     Hi, I used to be able to do my controller and Grid by right clicking on controller add new controller and a bunch of telerik options would pop up that allowed me to add it all with ease. I no longer have that option.  I used to have a area called "Other" that was there also, and it's not available. Did you guys get rid of it? I'm using 2019 Profession VS. 
Vesko
Telerik team
 answered on 06 Oct 2020
1 answer
861 views

Hi

I'm just wondering if this is possible to achieve in telerik grid, i have a grid that handles transactions record that surely will have huge number of records thousands or maybe millions, i have pagination allowed, here is the question, is this possible to read for example 10 records per page literally in the database but display also the number of pages and total records?

Anton Mironov
Telerik team
 answered on 06 Oct 2020
6 answers
828 views

Hi 

 I have this grid. It retrieves 3000+ rows every time opened. It only shows 1st 20 rows. Is there a way to retrieve rows as needed?

Say retrieve 1st 20 rows and then next 20 if user clicks on page 2?

@(Html.Kendo().Grid<PartnerLink.Models.CaseMainGridDisplay>
    ()
    .Name("grid")
    .Columns(columns =>
    {
    columns.Bound(c => c.ASSIGNMENT_ID).Hidden(true);
    columns.Bound(c => c.CASE_REFERENCE).Title("Case Ref").Width(105);
    columns.Bound(c => c.FIRST_NAME).Title("First Name");
    columns.Bound(c => c.SURNAME).Title("Last Name");
    columns.Bound(c => c.status).Title("Status");
    columns.Bound(c => c.DaysAtStatus).Title("Days At Status").Width(135);
    columns.Bound(c => c.CallAgent).Title("Call Agent");
    columns.Bound(c => c.CustomerAdvisor).Title("Customer Advisor");
    columns.Bound(c => c.DATE_CREATED).Title("Created On").Format("{0:dd/MM/yyyy}");
    })
    .Events(evt => evt.Change("onChange").DataBound("onDataBound"))
    .Scrollable()
    .Groupable()
    .ToolBar(tools =>
    {
        if (isExcel)
        {
            tools.Excel();
        }
    })
    .Excel(excel => excel
    .AllPages(true)
    .FileName("CasesList.xlsx")
    .Filterable(false)
    .ProxyURL(Url.Action("Export_Excel", "Home"))
    )
    .Sortable()
    .Resizable(resize => resize.Columns(true))
    .Filterable(ftb => ftb.Mode(GridFilterMode.Menu))
    .Selectable(selectable => selectable
    .Mode(GridSelectionMode.Single)
    .Type(GridSelectionType.Row))
    .Pageable(pageable => pageable
    .Refresh(true)
    .PageSizes(true)
    .ButtonCount(5))
    .DataSource(dataSource => dataSource
    .Ajax()
    .Sort(sort => sort.Add("ASSIGNMENT_ID").Descending())
    .Read(read => read.Action("Assignments_Read", "Home").Data("filterParams")))
);

Alex Hajigeorgieva
Telerik team
 answered on 06 Oct 2020
7 answers
719 views

Hi,

May I know how to retrieve Kendo Scheduler current date range in C# code?

I need to date range so I can populate the date in another detail table.

Thank you.

Neli
Telerik team
 answered on 06 Oct 2020
4 answers
380 views

Hi,

is it possible to show Word RTF Text inside this editor (bcz when I do I get all the RTF Stuff printed out and not processed) ?

And if not, is there any way to display RTF Text inside one of your components ? (I tried the new component you added which converts html to rtf, but its not always converting my stream text correctly - I guess I am missusing that component by just trying to convert text, but I tried my luck :)

 

Regards

Neli
Telerik team
 answered on 06 Oct 2020
15 answers
3.7K+ views

Hi

 Is it possible to implement paging in a way that the Datasource contains only the Data to display?

 Lets assume i have 1 Million records, but for performance reasons i just want to load 10 at a time from sql server.

 How can I tell the Grid that he's on Page 2 of X and have a total record of 1 Million (in AJAX mode)?

 

DECLARE @PageNumber AS INT, @RowspPage AS INT
 SET @PageNumber = 2
 SET @RowspPage = 10 
SELECT ID_EXAMPLE, NM_EXAMPLE, DT_CREATE
 FROM TB_EXAMPLE
 ORDER BY ID_EXAMPLE
 OFFSET ((@PageNumber - 1) * @RowspPage) ROWS
 FETCH NEXT @RowspPage ROWS ONLY;

 

Thanks and best Regards

Giuseppe

 

Brandon
Top achievements
Rank 1
 answered on 05 Oct 2020
8 answers
294 views

I want auto open on focus for all of dropdownlists in my page.

Here is a sample for Jquery Version:

https://www.telerik.com/forums/how-to-open-dropdownlist-on-focus

I have modified this code for MVC , But there is a problem,
MVC version of dropdownList do not send event as function parameter (e) and I do not know how to do preventDefault.
any Help or suggestion?

Martin
Telerik team
 answered on 05 Oct 2020
3 answers
681 views
For adherence to compliance standards, I would like to provide the ability to focus the grid pager elements via the keyboard.

Given the following grid:

@(Html.Kendo().Grid<WebPortal.WebModels.Search.MemberReference>()
    .Name("MemberGrid")
    .HtmlAttributes(new { style = "height: 220px;" })
    .Columns(columns =>
    {
        columns.Bound(m => m.FullName).Title("Member Name").Width(230)
            .ClientTemplate("<a href='javascript:' onclick=\"selectMember('#: ProperNameWithCityState#', '#: City#', '#: State#', '#: SystemId#', '" + Model.InputSystemId + "', '" + Model.InputFullName + "')\" >#= FullName#</a>");
        columns.Bound(m => m.HccId).Title("ID").Width(230);
        columns.Bound(m => m.BirthDate).Title("Birth Date").Width(80);
        columns.Bound(m => m.City).Title("City");
        columns.Bound(m => m.State).Title("State").Width(60);
    })
    .Pageable(p => p.Messages(m => m.Empty(@noSearchResultsMessage)))
    .Reorderable(reordable => reordable.Columns(true))
    .Resizable(resize => resize.Columns(true))
    .Sortable()
    .Scrollable()
    .Events(events => events.DataBound("onGridDataBound"))
    .AutoBind(false)    // Prevent initial data load
    .DataSource(dataSource => dataSource
        .Ajax()
        .ServerOperation(false)
        .Sort(s => s.Add("FullName"))
        .PageSize(5)
        .Read(read => read.Action("FindMembers", "Search")
            .Data("getMemberSearchInput")
        )
        .Events(events => events.Error("onKendoDataSourceError").Change("onGridDataSourceChange"))
    )
)


I am attempting to do this on the grid data bound event:

function onGridDataBound(e) {
    // set tab index on pager elements so they can be focused via keyboard
    $("#MemberGrid > div.k-pager-wrap.k-grid-pager.k-widget").find("a").not(".k-state-disabled").attr("tabindex", "0");
}

While I can verify that the jQuery selection is correct, the tab index does not seem to get persisted in the rendered code. The rendered pager elements still have a tab index of "-1".

Is there another event I should be using?
Alex Hajigeorgieva
Telerik team
 answered on 05 Oct 2020
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?