I have created a virtual directory called ~/MyVD and is linked to a share on another server. I was able to connect but have come across a situation.
The virtual directory is linked to \\MyServer\Files
This folder has several folders not all I have access to. When I opened the file explorer it would prompt me for a response to enter my password. This would happen 3 times and I would receive an error saying "Access denied for \\MyServer\File\DNelson
I did not link anything to the folder DNelson but figured out that it is a folder which I do not have access to.
I changed the link to \\MyServer\Files\Projects (which I have access to all the files and folders) and it works great.
My question is that I still want to link to \\MyServer\Files and is there a way to pass by the items that I do not have access to but still show the files and folders I do have access to.
Thanks
Ryan
I have the following ComboBox on my page but although the Text value is persisted, the selected value is not. Therefore my grid loads all items regardless of what is in the ComboBox when the page loads. What do I need to change?
<telerik:RadComboBox runat="server" DataSourceID="AllWaterSystems" DataTextField="displayName" DataValueField="pwsid" EmptyMessage="Water System" Filter="Contains" Width="350" ID="SelectedWaterSystem" EnableItemCaching="True" OnClientDropDownOpening="RefreshHeight"> <HeaderTemplate> <ul> <li class="col1">PWSID</li> <li class="col2">Name</li> </ul> </HeaderTemplate> <ItemTemplate> <ul> <li class="col1"><%# DataBinder.Eval(Container.DataItem, "PWSID") %></li> <li class="col2"><%# DataBinder.Eval(Container.DataItem, "Name") %></li> </ul> </ItemTemplate></telerik:RadComboBox>

I have very specific needs as far as how the calendar is formatted. I need it to look like the attached file. I can get the 2-month view working but not the text of the months. I appreciate any help anyone can give. Here's what I have so far:
<telerik:RadCalendar RenderMode="Lightweight" ID="radCalendar" runat="server" EnableNavigation="true" ShowRowHeaders="false" EnableMonthYearFastNavigation="true" ShowFastNavigationButtons="false" ShowNavigationButtons="false" MultiViewColumns="2" MultiViewRows="1" EnableMultiSelect="true"><ClientEvents OnDateClick="radCalendar_OnDateClick" /></telerik:RadCalendar>
Hi,
I downloaded 2018Q1 yesterday. In previous downloads the Live demo folder contained all the demo's.
Now I do not find that folder anymore, why is that?
It was very usefull to test and copy code.
Regards, Marc
Hi,
I'd like to copy down values from one row to multiple rows like I can do in Excel or in SharePoint Quick Edit. How can I achieve this in BulkEdit with RadGrid?
Thanks for any advice
Peter
Hi
In page load i'm creating the funnel chart like this and populating the data
funnelSeries = FunnelChart1.PlotArea.Series[0] as FunnelSeries;
Decimal u = 0;
Decimal v = 0;
Decimal w = 0;
Decimal x = 0;
FunnelSeriesItem item1 = new FunnelSeriesItem(u, "name1", Color.Red);
FunnelSeriesItem item2 = new FunnelSeriesItem(v, "name2", Color.Blue);
FunnelSeriesItem item3 = new FunnelSeriesItem(w, "name3", Color.Green);
FunnelSeriesItem item4 = new FunnelSeriesItem(x, "name4", Color.Black);
funnelSeries.SeriesItems.Add(item1);
funnelSeries.SeriesItems.Add(item2);
funnelSeries.SeriesItems.Add(item3);
funnelSeries.SeriesItems.Add(item4);
I could see the funnel chart in UI but when I try to set the funnelSeries.SeriesItems[1].Y value from one of the button click event code. the chart is not updating the set value. please help!

Hi, I've recently been interested in the track changes feature for the radeditor. Everything has been working well, but the tracking changes doesn't seem to support table deletion. Usually when text is deleted it is wrapped in a <del> tag, but whenever I delete any aspect of a table it is not, and thus the changes cannot be tracked. I was wondering if this feature isn't included, or if I am doing something wrong.
I also have problems deleting tables which I have loaded from external html. The text can be deleted but not the table as a whole. The only way to remove the table is to delete rows and columns individually.

As few browsers stop supporting Windows Media Player plugin, I m trying to convert Object/Embed Tags to Video Tags using "OnClientPasteHtml" method as mentioned here
https://www.telerik.com/support/kb/aspnet-ajax/editor/details/inserting-a-video-tag-via-the-media-manager-instead-of-the-default-object-embed-ones
but currently File extensions allowed by media manager are
*.wma, *.wmv, *.avi, *.wav, *.mpeg, *.mpg, *.mpe, *.mp3, *.m3u, *.mid, *.midi, *.snd, *.mkv
There is no *.mp4
How can i change this validation to accept other file types supported by HTML5 Video tag
Please suggest


RadGrid1 + SqlDataSource1(SQL NOT USED parameter) = WORK
GridView1 (Standart) + SqlDataSource1(SQL USED parameter) = WORK
RadGrid1 + SqlDataSource1 (SQL USED parameter) = NOT WORK
Problem: Only telerik not updated schema and not set data in Grid(empty). Standalone GridView - worked. It is bub or please give informations what is user parameters in mySQL query.
Manual dont worked (https://demos.telerik.com/aspnet-ajax/grid/examples/columns-rows/columns/column-types/defaultcs.aspx)
RadGrid1
<telerik:RadGrid ID="RadGrid1" runat="server" Culture="ru-RU" DataSourceID="SqlDataSource1" AutoGenerateDeleteColumn="True" AutoGenerateEditColumn="True" OnDeleteCommand="RadGrid1_DeleteCommand" OnEditCommand="RadGrid1_EditCommand" AllowAutomaticDeletes="True" Skin="Glow" CellSpacing="-1" GridLines="Both" Width="603px"><GroupingSettings CollapseAllTooltip="Collapse all groups"></GroupingSettings> <ExportSettings> <Pdf PageWidth=""> </Pdf> </ExportSettings> <MasterTableView AutoGenerateColumns="False" DataKeyNames="id" DataSourceID="SqlDataSource1"> <Columns> <telerik:GridBoundColumn DataField="id" DataType="System.Int32" FilterControlAltText="Filter id column" HeaderText="id" ReadOnly="True" SortExpression="id" UniqueName="id"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="title" FilterControlAltText="Filter title column" HeaderText="title" SortExpression="title" UniqueName="title"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="type" FilterControlAltText="Filter type column" HeaderText="type" SortExpression="type" UniqueName="type"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="city" FilterControlAltText="Filter city column" HeaderText="city" SortExpression="city" UniqueName="city"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="address" FilterControlAltText="Filter address column" HeaderText="address" SortExpression="address" UniqueName="address"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="area" DataType="System.Single" FilterControlAltText="Filter area column" HeaderText="area" SortExpression="area" UniqueName="area"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="comment" FilterControlAltText="Filter comment column" HeaderText="comment" SortExpression="comment" UniqueName="comment"> </telerik:GridBoundColumn> </Columns> <GroupByExpressions> <telerik:GridGroupByExpression> </telerik:GridGroupByExpression> </GroupByExpressions> </MasterTableView></telerik:RadGrid>
SqlDataSource1
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:xesko %>" ProviderName="<%$ ConnectionStrings:xesko.ProviderName %>" SelectCommand="SELECT id, title, type, city, address, area, comment FROM building WHERE (id IN (SELECT id_building FROM user_atributes WHERE (id_user = @id_user)))"> <SelectParameters> <asp:Parameter Name="id_user" Type="Int32" DefaultValue="100" /> </SelectParameters></asp:SqlDataSource>
GridView1 - standart - work
<asp:GridView ID="GridView1" runat="server" DataSourceID="SqlDataSource1"></asp:GridView>
USED:
Visual Studio 2017 (15.5.7)
MySQL server 5.6
MySQL for Visual Studio 2.0.5 (MySQL Database (MySQL Data Provider))
MySQL Connector/ NET 6.9.9
Telerik ASP.NET Ajax 2017.2.503