Hi,
I have an autocompletebox in my page which uses a wcf service to fetch data. And I have a client template in autocompletebox which has #=Attributes.blabla # fields. WCF service returns the correct structure of data which has Text, Value and Attributes members and Attributes has the values I set. However the client template display these Attribute fields as undefined. I couldn't find any related item in this forum.
Can you help me?
Thanks.
I'm having a RadFileExplorer on my program and mapping it to a Shared Drive. The first level of treeview is loading as expected and when I click on the expand button on the treeview, the folders are not being loaded. And any files are not displayed on the file viewer on the right column. Below is my code, kindly let me know what could be the issue.
protected
void
Page_Load(
object
sender, EventArgs e)
{
try
{
if
(!Page.IsPostBack)
{
string
[] viewPaths = Directory.GetDirectories(@
"\\vmtywebAA02\develop\", "
*", SearchOption.TopDirectoryOnly);
RadFileExplorer1.Configuration.ViewPaths = viewPaths;
RadFileExplorer1.Configuration.SearchPatterns =
new
[] {
"*.*"
};
RadFileExplorer1.Configuration.ContentProviderTypeName =
typeof
(CustomFileSystemProvider).AssemblyQualifiedName;
}
}
catch
(Exception)
{
throw
;
}
}
I have this:
DataStartField: 2015-08-22 00:00:00
DataEndField: 2015-08-23 00:00:00
Only 2015-10-28 appointment is displayed in radschedular.
If i try this:
DataStartField: 2015-08-22 00:00:00
DataEndField: 2015-08-23 01:00:00
I need to set a time for that day will be displayed to the date end? It not works for 00:00:00 time
Hi
i have been using the HTMLChart fine for ages now , i use a semi dynamic system for doing series and data and its been fine.
but recently i have noticed something odd , basically it start squishing up the content of the chart instead of using the full chart area, has anyone encountered this or know how to fix it.
i have attached an image
i dont apply any limitations on the ranges as i allow the chart to do it by itself based on the data inside.
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"></telerik:RadAjaxManager>
<telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" />
<telerik:RadTabStrip ID="RadTabStrip1" runat="server" MultiPageID="RadMultiPage1" SelectedIndex="0" Align="Justify" ScrollButtonsPosition="Left" ScrollChildren="true">
<Tabs>
<telerik:RadTab Text="​1"></telerik:RadTab>
<telerik:RadTab Text="2"></telerik:RadTab>
</Tabs>
</telerik:RadTabStrip>
<telerik:RadMultiPage ID="RadMultiPage1" CssClass="RadMultiPage" runat="server" SelectedIndex="0">
<telerik:RadPageView ID="RadPageView1" runat="server" Height="700px" ContentUrl="WebForm5.aspx"></telerik:RadPageView>
</telerik:RadMultiPage>
how to apply the skin to the pages in the multipage
Hi,
We have upgraded our Telerik RadEditor to 2015.2.729.45 version.
We are facing one issue as mentioned below:
When link is given to any image or text, Unlink command should get enabled. But it gets enabled for text only while remains disabled for images.
I am able to reproduce this issue in Telerik demos - http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx
To get a better understanding, please refer to the following video:
http://screencast.com/t/xHgru58pzKL
Can you please look into this ?
Thanks,
Khushboo
Hi,
I've had this same issue with 2014 Q2 and 2015 Q2 SP1 releases.
On the attached image you will see the height goes crazy tall. I can't replicate this myself, but have had several users report it. The only thing they have in common is IE 10 and 11, which i have tried myself and cannot replicate. They are reporting that it is occurring not consistently (once a day maybe).
I know this isn't a lot of info to go off but am hoping someone may have seen something similar or could give advice of things to try.
Thanks in Advance,
Joel
Using UI for ASP.NET AJAX Q1 2015 SP1 with VS 2013.
1) I would like to get Full Month Name (i.e. August, September etc..) from RadMonthYearPicker instead of integer value (i.e. 8, 9 etc). Refer to attachment_#_1. code is here.
<telerik:RadMonthYearPicker ID="RadMonthYearPicker1" AutoPostBack="true" OnSelectedDateChanged ="btnSubmit_Click" runat="server"></telerik:RadMonthYearPicker>
protected void btnSubmit_Click(object sender, EventArgs e)
{
string startmonth_year = RadMonthYearPicker1.SelectedDate.Value.Month.ToString() + " , " + RadMonthYearPicker1.SelectedDate.Value.Year.ToString();
DateTime selectedDate = RadMonthYearPicker1.SelectedDate.Value;
DateTime startDate = selectedDate.AddDays((selectedDate.Day - 1) * -1);
DateTime endDate = startDate.AddDays(DateTime.DaysInMonth(startDate.Year, startDate.Month) - 1);
Response.Write("Start Month and Year: "+startmonth_year + ' ' + ' ' + ". Start Month beginning/end date: "+startDate.ToShortDateString() + " - " + endDate.ToShortDateString());
}
2) How I can pass full file name path (\\Your_Server_Name\Your_Folder_Name\Your_File.csv) to Stored Procedure as Parameter or SSIS as variable? Or store the full file name path in string or session variable.
3) How I can show full file name path in Upload AsyncUpload (i.e. \\Your_Server_Name\Your_Folder_Name\Your_File.csv). Refer to attachment_#2.
Thanks a lot