Telerik Forums
Community Forums Forum
1 answer
141 views
Hello,
I'm facing a problem with Kendo Listview when adding append on refresh with pull to refresh while using endless scroll, the whole list refresh and nothing appended at the top.
Once I removed endless scroll I can see that the new data is appended at the top of the list.
<ul  data-role="listview"
   data-id="listview"
                       data-source="dataSource"
                       data-endless-scroll="true"
                       data-append-on-refresh="true"
                       data-pull-to-refresh="true"
                       data-template="foo-template"></ul>

Could you please advise what should I do ?
I'm using the latest trail version.

Regards,
Ibraheem Osama Mohamed
Snr. SW Developer
Microsoft Most Valuable Professional [MVP]
Petyo
Telerik team
 answered on 02 Jan 2015
1 answer
123 views

Hiii,

                      Could you please help me for bind dropdown list to kendo grid.. in my case functionalities are working fine.. But there is no display for the selected item in kendo grid when loaded... After edit button click the dropdown becom visible..

     @(Html.Kendo().Grid(iTeamMvcKendo.Nexgen.iTeam.Library.TimeTracker.GetDaywisePunchesList(Convert.ToInt32(ViewData["UserID"]), Convert.ToDateTime(ViewData["PunchDate"])))
    .Name("grid")
    .Columns(columns =>
    {
        columns.Bound(p => p.InTime)
            .HeaderHtmlAttributes(new { Style = "width:15%" })
                                              .Title("In Time")
                                            
             .Format("{0:hh:mmtt}")
            
                                                .EditorTemplateName("DateTime")
                                                .Width("15%");
        columns.Bound(p => p.OutTime)
              .HeaderHtmlAttributes(new { Style = "width:15%" })
                                                .Title("Out Time")
                                          
                                              .Format("{0:hh:mmtt}")
                                                .EditorTemplateName("DateTime")
                                                .Width("15%");

        columns.Bound(p => p.TotalHours).HeaderHtmlAttributes(new { Style = "width:15%" })
                                               .Title("Total Hours");

        columns.ForeignKey(p => p.ReasonID, (System.Collections.IEnumerable)ViewData["Reason"],dataFieldText: "ReasonName", dataFieldValue: "ReasonID" )
           .HeaderHtmlAttributes(new { Style = "width:15%" })
                                               .Title("Punch Out Reason").Width(160);
      
        columns.Bound(p => p.BreakHours)
              .HeaderHtmlAttributes(new { Style = "width:15%" })
                                                .Title("Break Hours");

        columns.Command(command => { command.Edit(); command.Destroy(); }).Width(172);
    })
 
    .Editable(editable => editable.Mode(GridEditMode.InLine))
    .Pageable()
    .Sortable()
   
    .Scrollable()
    .HtmlAttributes(new { style = "height:430px;" })
    .DataSource(dataSource => dataSource
       .Ajax()
       .PageSize(10)
        .Events(events => events.Error("error_handler"))
        .Model(model => 
            {
                model.Id(p => p.TimeTrackerID);
                model.Field(p => p.ReasonID).DefaultValue(103);       
            })      
        .Read(read => read.Action("UselogRead", "UserLog"))
        .Update(update => update.Action("SaveUserLog", "UserLog"))
        .Destroy(update => update.Action("DeleteUserLog", "UserLog"))
    )
)
 









                      Could you please help me for bind dropdown list to kendo grid.. in my case functionalities are working fine.. But there is no display for the selected item in kendo grid when loaded... After edit button click the dropdown becom visible..
 
 
 
     @(Html.Kendo().Grid(iTeamMvcKendo.Nexgen.iTeam.Library.TimeTracker.GetDaywisePunchesList(Convert.ToInt32(ViewData["UserID"]), Convert.ToDateTime(ViewData["PunchDate"])))
    .Name("grid")
    .Columns(columns =>
    {
        columns.Bound(p => p.InTime)
            .HeaderHtmlAttributes(new { Style = "width:15%" })
                                              .Title("In Time")
                                            
             .Format("{0:hh:mmtt}")
            
                                                .EditorTemplateName("DateTime")
                                                .Width("15%");
        columns.Bound(p => p.OutTime)
              .HeaderHtmlAttributes(new { Style = "width:15%" })
                                                .Title("Out Time")
                                          
                                              .Format("{0:hh:mmtt}")
                                                .EditorTemplateName("DateTime")
                                                .Width("15%");
 
        columns.Bound(p => p.TotalHours).HeaderHtmlAttributes(new { Style = "width:15%" })
                                               .Title("Total Hours");
 
        columns.ForeignKey(p => p.ReasonID, (System.Collections.IEnumerable)ViewData["Reason"],dataFieldText: "ReasonName", dataFieldValue: "ReasonID" )
           .HeaderHtmlAttributes(new { Style = "width:15%" })
                                               .Title("Punch Out Reason").Width(160);
      
        columns.Bound(p => p.BreakHours)
              .HeaderHtmlAttributes(new { Style = "width:15%" })
                                                .Title("Break Hours");
 
        columns.Command(command => { command.Edit(); command.Destroy(); }).Width(172);
    })
 
    .Editable(editable => editable.Mode(GridEditMode.InLine))
    .Pageable()
    .Sortable()
   
    .Scrollable()
    .HtmlAttributes(new { style = "height:430px;" })
    .DataSource(dataSource => dataSource
       .Ajax()
       .PageSize(10)
        .Events(events => events.Error("error_handler"))
        .Model(model => 
            {
                model.Id(p => p.TimeTrackerID);
                model.Field(p => p.ReasonID).DefaultValue(103);
           
            })
   
    
            
        .Read(read => read.Action("UselogRead", "UserLog"))
  
        .Update(update => update.Action("SaveUserLog", "UserLog"))
        .Destroy(update => update.Action("DeleteUserLog", "UserLog"))
    )
)
                      Could you please help me for bind dropdown list to kendo grid.. in my case functionalities are working fine.. But there is no display for the selected item in kendo grid when loaded... After edit button click the dropdown becom visible..
 
 
 
     @(Html.Kendo().Grid(iTeamMvcKendo.Nexgen.iTeam.Library.TimeTracker.GetDaywisePunchesList(Convert.ToInt32(ViewData["UserID"]), Convert.ToDateTime(ViewData["PunchDate"])))
    .Name("grid")
    .Columns(columns =>
    {
        columns.Bound(p => p.InTime)
            .HeaderHtmlAttributes(new { Style = "width:15%" })
                                              .Title("In Time")
                                            
             .Format("{0:hh:mmtt}")
            
                                                .EditorTemplateName("DateTime")
                                                .Width("15%");
        columns.Bound(p => p.OutTime)
              .HeaderHtmlAttributes(new { Style = "width:15%" })
                                                .Title("Out Time")
                                          
                                              .Format("{0:hh:mmtt}")
                                                .EditorTemplateName("DateTime")
                                                .Width("15%");
 
        columns.Bound(p => p.TotalHours).HeaderHtmlAttributes(new { Style = "width:15%" })
                                               .Title("Total Hours");
 
        columns.ForeignKey(p => p.ReasonID, (System.Collections.IEnumerable)ViewData["Reason"],dataFieldText: "ReasonName", dataFieldValue: "ReasonID" )
           .HeaderHtmlAttributes(new { Style = "width:15%" })
                                               .Title("Punch Out Reason").Width(160);
      
        columns.Bound(p => p.BreakHours)
              .HeaderHtmlAttributes(new { Style = "width:15%" })
                                                .Title("Break Hours");
 
        columns.Command(command => { command.Edit(); command.Destroy(); }).Width(172);
    })
 
    .Editable(editable => editable.Mode(GridEditMode.InLine))
    .Pageable()
    .Sortable()
   
    .Scrollable()
    .HtmlAttributes(new { style = "height:430px;" })
    .DataSource(dataSource => dataSource
       .Ajax()
       .PageSize(10)
        .Events(events => events.Error("error_handler"))
        .Model(model => 
            {
                model.Id(p => p.TimeTrackerID);
                model.Field(p => p.ReasonID).DefaultValue(103);
           
            })
   
    
            
        .Read(read => read.Action("UselogRead", "UserLog"))
  
        .Update(update => update.Action("SaveUserLog", "UserLog"))
        .Destroy(update => update.Action("DeleteUserLog", "UserLog"))
    )
)
                      Could you please help me for bind dropdown list to kendo grid.. in my case functionalities are working fine.. But there is no display for the selected item in kendo grid when loaded... After edit button click the dropdown becom visible..
 
 
 
     @(Html.Kendo().Grid(iTeamMvcKendo.Nexgen.iTeam.Library.TimeTracker.GetDaywisePunchesList(Convert.ToInt32(ViewData["UserID"]), Convert.ToDateTime(ViewData["PunchDate"])))
    .Name("grid")
    .Columns(columns =>
    {
        columns.Bound(p => p.InTime)
            .HeaderHtmlAttributes(new { Style = "width:15%" })
                                              .Title("In Time")
                                            
             .Format("{0:hh:mmtt}")
            
                                                .EditorTemplateName("DateTime")
                                                .Width("15%");
        columns.Bound(p => p.OutTime)
              .HeaderHtmlAttributes(new { Style = "width:15%" })
                                                .Title("Out Time")
                                          
                                              .Format("{0:hh:mmtt}")
                                                .EditorTemplateName("DateTime")
                                                .Width("15%");
 
        columns.Bound(p => p.TotalHours).HeaderHtmlAttributes(new { Style = "width:15%" })
                                               .Title("Total Hours");
 
        columns.ForeignKey(p => p.ReasonID, (System.Collections.IEnumerable)ViewData["Reason"],dataFieldText: "ReasonName", dataFieldValue: "ReasonID" )
           .HeaderHtmlAttributes(new { Style = "width:15%" })
                                               .Title("Punch Out Reason").Width(160);
      
        columns.Bound(p => p.BreakHours)
              .HeaderHtmlAttributes(new { Style = "width:15%" })
                                                .Title("Break Hours");
 
        columns.Command(command => { command.Edit(); command.Destroy(); }).Width(172);
    })
 
    .Editable(editable => editable.Mode(GridEditMode.InLine))
    .Pageable()
    .Sortable()
   
    .Scrollable()
    .HtmlAttributes(new { style = "height:430px;" })
    .DataSource(dataSource => dataSource
       .Ajax()
       .PageSize(10)
        .Events(events => events.Error("error_handler"))
        .Model(model => 
            {
                model.Id(p => p.TimeTrackerID);
                model.Field(p => p.ReasonID).DefaultValue(103);
           
            })
   
    
            
        .Read(read => read.Action("UselogRead", "UserLog"))
  
        .Update(update => update.Action("SaveUserLog", "UserLog"))
        .Destroy(update => update.Action("DeleteUserLog", "UserLog"))
    )
)
                      Could you please help me for bind dropdown list to kendo grid.. in my case functionalities are working fine.. But there is no display for the selected item in kendo grid when loaded... After edit button click the dropdown becom visible..
 
 
 
     @(Html.Kendo().Grid(iTeamMvcKendo.Nexgen.iTeam.Library.TimeTracker.GetDaywisePunchesList(Convert.ToInt32(ViewData["UserID"]), Convert.ToDateTime(ViewData["PunchDate"])))
    .Name("grid")
    .Columns(columns =>
    {
        columns.Bound(p => p.InTime)
            .HeaderHtmlAttributes(new { Style = "width:15%" })
                                              .Title("In Time")
                                            
             .Format("{0:hh:mmtt}")
            
                                                .EditorTemplateName("DateTime")
                                                .Width("15%");
        columns.Bound(p => p.OutTime)
              .HeaderHtmlAttributes(new { Style = "width:15%" })
                                                .Title("Out Time")
                                          
                                              .Format("{0:hh:mmtt}")
                                                .EditorTemplateName("DateTime")
                                                .Width("15%");
 
        columns.Bound(p => p.TotalHours).HeaderHtmlAttributes(new { Style = "width:15%" })
                                               .Title("Total Hours");
 
        columns.ForeignKey(p => p.ReasonID, (System.Collections.IEnumerable)ViewData["Reason"],dataFieldText: "ReasonName", dataFieldValue: "ReasonID" )
           .HeaderHtmlAttributes(new { Style = "width:15%" })
                                               .Title("Punch Out Reason").Width(160);
      
        columns.Bound(p => p.BreakHours)
              .HeaderHtmlAttributes(new { Style = "width:15%" })
                                                .Title("Break Hours");
 
        columns.Command(command => { command.Edit(); command.Destroy(); }).Width(172);
    })
 
    .Editable(editable => editable.Mode(GridEditMode.InLine))
    .Pageable()
    .Sortable()
   
    .Scrollable()
    .HtmlAttributes(new { style = "height:430px;" })
    .DataSource(dataSource => dataSource
       .Ajax()
       .PageSize(10)
        .Events(events => events.Error("error_handler"))
        .Model(model => 
            {
                model.Id(p => p.TimeTrackerID);
                model.Field(p => p.ReasonID).DefaultValue(103);
           
            })
   
    
            
        .Read(read => read.Action("UselogRead", "UserLog"))
  
        .Update(update => update.Action("SaveUserLog", "UserLog"))
        .Destroy(update => update.Action("DeleteUserLog", "UserLog"))
    )
)
                      Could you please help me for bind dropdown list to kendo grid.. in my case functionalities are working fine.. But there is no display for the selected item in kendo grid when loaded... After edit button click the dropdown becom visible..
 
 
 
     @(Html.Kendo().Grid(iTeamMvcKendo.Nexgen.iTeam.Library.TimeTracker.GetDaywisePunchesList(Convert.ToInt32(ViewData["UserID"]), Convert.ToDateTime(ViewData["PunchDate"])))
    .Name("grid")
    .Columns(columns =>
    {
        columns.Bound(p => p.InTime)
            .HeaderHtmlAttributes(new { Style = "width:15%" })
                                              .Title("In Time")
                                            
             .Format("{0:hh:mmtt}")
            
                                                .EditorTemplateName("DateTime")
                                                .Width("15%");
        columns.Bound(p => p.OutTime)
              .HeaderHtmlAttributes(new { Style = "width:15%" })
                                                .Title("Out Time")
                                          
                                              .Format("{0:hh:mmtt}")
                                                .EditorTemplateName("DateTime")
                                                .Width("15%");
 
        columns.Bound(p => p.TotalHours).HeaderHtmlAttributes(new { Style = "width:15%" })
                                               .Title("Total Hours");
 
        columns.ForeignKey(p => p.ReasonID, (System.Collections.IEnumerable)ViewData["Reason"],dataFieldText: "ReasonName", dataFieldValue: "ReasonID" )
           .HeaderHtmlAttributes(new { Style = "width:15%" })
                                               .Title("Punch Out Reason").Width(160);
      
        columns.Bound(p => p.BreakHours)
              .HeaderHtmlAttributes(new { Style = "width:15%" })
                                                .Title("Break Hours");
 
        columns.Command(command => { command.Edit(); command.Destroy(); }).Width(172);
    })
 
    .Editable(editable => editable.Mode(GridEditMode.InLine))
    .Pageable()
    .Sortable()
   
    .Scrollable()
    .HtmlAttributes(new { style = "height:430px;" })
    .DataSource(dataSource => dataSource
       .Ajax()
       .PageSize(10)
        .Events(events => events.Error("error_handler"))
        .Model(model => 
            {
                model.Id(p => p.TimeTrackerID);
                model.Field(p => p.ReasonID).DefaultValue(103);
           
            })
   
    
            
        .Read(read => read.Action("UselogRead", "UserLog"))
  
        .Update(update => update.Action("SaveUserLog", "UserLog"))
        .Destroy(update => update.Action("DeleteUserLog", "UserLog"))
    )
)
                      Could you please help me for bind dropdown list to kendo grid.. in my case functionalities are working fine.. But there is no display for the selected item in kendo grid when loaded... After edit button click the dropdown becom visible..
 
 
 
     @(Html.Kendo().Grid(iTeamMvcKendo.Nexgen.iTeam.Library.TimeTracker.GetDaywisePunchesList(Convert.ToInt32(ViewData["UserID"]), Convert.ToDateTime(ViewData["PunchDate"])))
    .Name("grid")
    .Columns(columns =>
    {
        columns.Bound(p => p.InTime)
            .HeaderHtmlAttributes(new { Style = "width:15%" })
                                              .Title("In Time")
                                            
             .Format("{0:hh:mmtt}")
            
                                                .EditorTemplateName("DateTime")
                                                .Width("15%");
        columns.Bound(p => p.OutTime)
              .HeaderHtmlAttributes(new { Style = "width:15%" })
                                                .Title("Out Time")
                                          
                                              .Format("{0:hh:mmtt}")
                                                .EditorTemplateName("DateTime")
                                                .Width("15%");
 
        columns.Bound(p => p.TotalHours).HeaderHtmlAttributes(new { Style = "width:15%" })
                                               .Title("Total Hours");
 
        columns.ForeignKey(p => p.ReasonID, (System.Collections.IEnumerable)ViewData["Reason"],dataFieldText: "ReasonName", dataFieldValue: "ReasonID" )
           .HeaderHtmlAttributes(new { Style = "width:15%" })
                                               .Title("Punch Out Reason").Width(160);
      
        columns.Bound(p => p.BreakHours)
              .HeaderHtmlAttributes(new { Style = "width:15%" })
                                                .Title("Break Hours");
 
        columns.Command(command => { command.Edit(); command.Destroy(); }).Width(172);
    })
 
    .Editable(editable => editable.Mode(GridEditMode.InLine))
    .Pageable()
    .Sortable()
   
    .Scrollable()
    .HtmlAttributes(new { style = "height:430px;" })
    .DataSource(dataSource => dataSource
       .Ajax()
       .PageSize(10)
        .Events(events => events.Error("error_handler"))
        .Model(model => 
            {
                model.Id(p => p.TimeTrackerID);
                model.Field(p => p.ReasonID).DefaultValue(103);
           
            })
   
    
            
        .Read(read => read.Action("UselogRead", "UserLog"))
  
        .Update(update => update.Action("SaveUserLog", "UserLog"))
        .Destroy(update => update.Action("DeleteUserLog", "UserLog"))
    )
)
Tourdulich
Top achievements
Rank 1
 answered on 30 Dec 2014
1 answer
92 views
Am I the only one getting the following error on almost every post I do on the forum?

Oh, no! 
Something's not right,
but we're sorting it out.

I'm using Chrome and I noticed the problem this week for the first time.
Kristina
Telerik team
 answered on 13 Dec 2014
1 answer
116 views
Hi.  I have a user registered for this but she's been replaced by someone else.  Can I change the email on that license online or does that have to be done by you?

Thanks!
​
Joseph
Telerik team
 answered on 11 Dec 2014
5 answers
304 views
I'm trying to swap out my personal Telerik license with my employers license.

Do I need to Uninstall and Re install with the new license or change I just change the credentials within the Telerik Control Panel?


Thanks
Steve
Joseph
Telerik team
 answered on 11 Dec 2014
6 answers
382 views
A few weeks ago I attended Telerik's webinar on their tools. It was great and I got a lot out of it. However, I was under a misunderstanding. I have a Telerik Complete license; I thought that this webinar was a discussion as to what was new this quarter for the Telerik Complete suite of tools and controls. Thus when it came to downloading it I downloaded it. Now I realize that I had made this mistake.

The problem, for me is that I cannot, at this time, upgrade to Telerik Ultimate. Therefore I want to uninstall the 30 day trial, but leave all controls and tools in place that are a part of the Telerik Complete suite. How do I do that?
Rod
Top achievements
Rank 1
 answered on 09 Dec 2014
0 answers
46 views
When I load a control such as an "image gallery" or a "Document Download" control, the admin page defaults to "ALL LIBRARIES"
This is not desirable as Sitefinity bogs down trying to initialize all the images in all the libraries or all documents in all doc libraries.
I'd like to create a small image library or a small document library and have the controls default to the small libraries to save an enormous amount of time. The author needs to select their own library anyway, so why not default it to a small library?

Doe s anyone know where this default setting may be located?    
Jim
Top achievements
Rank 1
 asked on 05 Dec 2014
1 answer
96 views
We have the 2011.3.1116.35 build and are wondering if it is incompatible with the .NET 4.5 framework, even though 4.5 asserts that it is backwards-compatible with 4.0.  Does anyone have insights/recommendations?  Thanks.
Dimitrina
Telerik team
 answered on 02 Dec 2014
6 answers
346 views
I'm having issues updating the Control Panel.

When I open the Control Panel, to download the latest Telerik release, it informs me that I need to install an update.
Then when I try to install the update it attempts to locate the Telerik.CommonInstaller.ControlPanel.msi in a uniquely named folder under C:\.
It can't locate the installer file and won't let me proceed. I also can't repair or uninstall Telerik Control Panel.

The currently installed version of Telerik Control Panel is: v14.1.618.0

I'm using Windows 7 (x64).
Roger Graham
Top achievements
Rank 1
 answered on 28 Nov 2014
0 answers
101 views
I am using VS 2010 with telerik tool kit. But getting errors Failed to create designer  Telerik.Web.UI.RadButton. Telerik.Web.UI version =2013.2.717.40. I am using
Telerik.Web.Design.dll Telerik.Web.UI.dll  in my project . How i can remove theses errors & get its design view. Thanks in Advance
Hitesh
Top achievements
Rank 1
 asked on 21 Nov 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?