I just upgraded my MVC ASP.NET Core project from Visual Studio 2015 to 2017...I have been using it for the past couple of days...and now this item shows in my Error List....Do you know what this means or how it can be resolved?
SeverityCodeDescriptionProjectFileLineSuppression State
ErrorFailed to retrieve information from remote source 'https://nuget.telerik.com/nuget/FindPackagesById()?id='Microsoft.NET.Sdk.Web''.
Response status code does not indicate success: 401 (Please provide Authorization headers with your request.).0
Thanks,
Les
Microsoft just released 1.1 for Core and EntityFrameworkCore.
Just wanted to check if UI for Core is compatiable ?
any known issues?

A couple of items:
1. Can a separate Thread/Topic for "MediaPlayer" be set up in "aspnet-core-ui"?
2. I find that the Source does not appear to work...(ie. localhost under wwwroot)
I have tried the following variations in the code below (the source to youtube works) ... any recommendations?
.Source( "assets/Videos/MyVideo.mp4")
.Source( "~/assets/Videos/MyVideo.mp4")
.Source( "~assets/Videos/MyVideo.mp4")
@(Html.Kendo().MediaPlayer()
.Name("mediaPlayer")
.AutoPlay(true)
.Navigatable(true)
.Media(m => m
.Title("Recap of Progress Ringing The Bell at Nasdaq (2016)")
.Source( "~/assets/Videos/MyVideo.mp4")
)
.HtmlAttributes(new { style = "height:360px" })
.Deferred()
)

We are trying to add extra data to a grid via an onscroll listener.
This works when the data is filtered or sorted, but not when grouped.
Below is the code we currently have that is called when new data is needed.
var grid = $("#grid").data("kendoGrid");
var parameterMap = grid.dataSource.transport.parameterMap;
var requestObject = parameterMap({ aggregate:grid.dataSource.aggregate(),sort: grid.dataSource.sort(), filter: grid.dataSource.filter(), group: grid.dataSource.group(), page: pagina, pageSize:grid.dataSource.pageSize() });
$.post('@Url.Action("GetAllOffers_Post", "Offer")', requestObject, function (response) {
try {
grid.dataSource.pushCreate(response.Data); //Works for non-grouped data
} catch (err) {
console.log(err);
try {
//Data is grouped when we end up here
//var data = grid.dataSource.schema.parse(response.Data);
//Array.prototype.push.apply(grid.dataSource.options.schema.groups, response.Data); //API said we could use the schema.parse but that doesn't work nor does the schema.groups since grid.dataSource.schema doesn't exist
} catch (errortwee) {
console.log(errortwee);
}
}

I have basically copied the demo on your site...but I get the following error...any recommendations?
My grid populates, but when I press the Export To Excel button in the grid, nothing happens...
When I inspect my browser I get the following:
SCRIPT5022: JSZip not found. Check http://docs.telerik.com/kendo-ui/framework/excel/introduction#requirements for more details.
kendo.all.js (11412,31)
-------------------------------
I have tried adding the following suggestion from the link, but that does not work
JSZip
To take full advantage of the Excel export feature, download the JSZip library and include the file before the Kendo UI JavaScript files, as shown below.
EXAMPLE
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script><script src="http://cdnjs.cloudflare.com/ajax/libs/jszip/2.4.0/jszip.js"></script><script src="http://kendo.cdn.telerik.com/2016.3.1028/js/kendo.all.min.js"></script>
JSZip is part of the Kendo UI distribution and is also available via the Kendo UI CDN:
<script src="http://kendo.cdn.telerik.com/2016.3.1028/js/jszip.min.js"></script>
------------------------------
@model IEnumerable<Areas.Name.Models.TransactionName>
<h2>Grid</h2>
@(Html.Kendo().Grid<Areas.Name.Models.TransactionName>()
.Name("grid")
.Columns(columns =>
{
columns.Bound(c => c.LastName);
columns.Bound(c => c.FirstName);
columns.Bound(c => c.MiddleName1);
})
.BindTo(Model)
.ToolBar(tools => tools.Excel())
.Excel(excel => excel
.FileName("Products.xlsx")
)
.Deferred()
)
@* All initialization scripts are rendered to the bottom of the page, see Layout.cshtml *@
@section scripts {
@Html.Kendo().DeferredScripts()
}
Hi,
I'm trying to change the format for the filter for a date (datepicker in the filterRow from "MM/d/yyyy" to "yyyy-MM-dd"
I attached a screenshot of the result I'm getting
The filter format is "MM/d/yyyy" and my column format is "yyyy-MM-dd" (set by .Format("{0:yyyy-MM-dd}") )
I want the format to be same for both filter and column data - i.e "yyyy-MM-dd"
Column options: columns.Bound(c => c.DateInvitation) .Title("Date invitation/rappel") .Format("{0:yyyy-MM-dd}") .Width(150) .Filterable(f => f.Cell(c => c.ShowOperators(false).BindTo(Enumerable.Empty<string>())));grid options: .Filterable(ftb => ftb.Mode(GridFilterMode.Row)).Filterable()The checked things in the Grid has to be shown in te CheckBoxList.
In one click on the button everything what has been checked in the grid has to be shown on the CHeckboxlist2.
I made something but its not completed, what do I have to do next?
<asp:Panel runat="server" ID="pnlSource">
<telerik:RadGrid ID="ChangedList" runat="server" AutoGenerateColumns="false" OnPageIndexChanged="ChangedList_PageIndexChanged" OnNeedDataSource="ChangedList_NeedDataSource" GridLines="None" AllowPaging="true" RenderMode="Lightweight" PageSize="5" AllowSorting="True">
<MasterTableView ClientDataKeyNames="Logging_ID" backcolor="PaleGreen" ForeColor="black" BorderStyle="Solid" BorderColor="Green" AlternatingItemStyle-BackColor="MediumSeaGreen" PagerStyle-BackColor ="LawnGreen" HeaderStyle-ForeColor="green" HeaderStyle-BorderColor="Crimson">
<Columns>
<telerik:GridCheckBoxColumn UniqueName="GridCheckBoxColumn" DataField="IsTrue">
</telerik:GridCheckBoxColumn>
<telerik:GridBoundColumn DataField="ModuleName" HeaderText="Naam" UniqueName="ModuleName" ReadOnly="true">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="AssemblyVersion" HeaderText="Versie" UniqueName="AssemblyVersion" ReadOnly="true">
</telerik:GridBoundColumn>
</Columns>
</MasterTableView>
<ClientSettings EnableRowHoverStyle="true" >
<Selecting AllowRowSelect="True" />
</ClientSettings>
</telerik:RadGrid>
<br />
<div class="col-md-1" >
<asp:Button ID="ButtonALL" runat="server" Text="Update" OnClick="ButtonALL_OnClick" />
</div>
<asp:Panel runat="server" ID ="pnlSourceNoItems">
<%-- // <asp:Label runat="server" Text="Er zijn geen wijzigingen geconstateerd"/>--%>
</asp:Panel>
</div>
</div>
<div class="col-md-1">
<h3>==></h3><asp:Button ID="btnUpdate" runat="server" Text="Update" OnClick="btnUpdate_OnClick" meta:resourcekey="btnUpdateResource1" />
</div>
<div class="col-md-6">
<div class="row">
<div class="col-md-6">
<h3>Websites</h3>
</div>
<div class="col-md-6">
<asp:DropDownList runat="server" id="ddWebserver" AutoPostBack="True" OnSelectedIndexChanged="ddWebserver_OnSelectedIndexChanged"/>
</div>
</div>
<div style="border: black; border-width: 1px; border-style: solid; overflow: scroll; height:300px">
<asp:Panel runat="server" ID="pnlTarget">
<asp:CheckBoxList ID="CheckBoxList2" runat="server" meta:resourcekey="CheckBoxList2Resource1">
</asp:CheckBoxList>
</asp:Panel>
<asp:Panel runat="server" ID="pnlNoItems">
<asp:Label runat="server" Text="Er zijn geen webs waar de update kan worden toegepast" />
</asp:Panel>
</div>
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
protected void ButtonALL_OnClick(object sender, EventArgs e)
{
ButtonALL.BackColor = System.Drawing.Color.PaleGreen;
ButtonALL.BorderColor = System.Drawing.Color.Green;
ButtonALL.ForeColor = System.Drawing.Color.Black;
if (ButtonALL.Text == "Update")
{
ButtonALL.Text = "Updated";
}
else
{
ButtonALL.Text = "Update";
}
{
foreach (GridItem item in ChangedList.MasterTableView.Items)
{
GridDataItem dataitem = (GridDataItem)item;
TableCell cell = dataitem["GridCheckBoxColumn"];
CheckBox checkBox = (CheckBox)cell.Controls[0];
if (checkBox.Checked)
{
string value = dataitem.GetDataKeyValue("Logging_ID").ToString(); //Access the checked row using DataKeyNames
}
}
}
}

Hello,
I am trying to list for asp.net core and I get the following null reference exception.
NullReferenceException: Object reference not set to an instance of an object.
Please find the stack trace attached. I tried attaching sample project but it wouldn't allow me.
I have spent a lot of time trying to figure out but failed. I am not sure if I am missing anything.
Any ideas or suggestions on how I can resolve this issue is really appreciated.
Thanks,
Hi,
I'm trying to update a label inside a grid toolbar with the Count on selectedItem of the grid.
I'm able to retrieve the number of selected item with the "onChange" event ( in an JS alert in my test)
using:
<script type="text/javascript"> function onChange(arg) { var selected = $.map(this.select(), function (item) { return $(item).text(); }); alert(selected.length); }</script>but i'm having trouble accessing the label inside the toolbar of the grid (to modify the text property).
I'm not quite sure of the syntax to retrieve the label..
I tried several way to access it and I'm having not luck so far.
Is there a way to access a control inside the toolbar of a grid from JavaScript?
Note: I'm using "Telerik.UI.for.AspNet.Core": "2016.3.914"

Setting the Media in the player declaration for playing mp3 is quite easy :
@(Html.Kendo().MediaPlayer()
.Name("mediaPlayer")
.AutoPlay(true)
.Media(m => m
.Title("this is my song")
.Source("sounds/mysong.mp3") )
.HtmlAttributes(new { style = "height:360px; width:640px" } )
)
But how to change the media source for example if I want to change "mysong.mp3" to "myothersong.mp3" in an event in javascript :
function onChange(arg)
{
$("#mediaPlayer").data("kendoMediaPlayer").media(?????);
}
Many thanks
