Hi, I am using RadDatePicker as follows:
<telerik:RadDatePicker ID="RadDATERECIEVED" runat="server" Culture="English (United States)" >
<DateInput runat="server" DateFormat="MM/dd/yyyy" MaxLength="10">
The picker works fine, you can pick the date, it formats with a maximum length.
I have two questions:
1. How do I set the DatePicker field so that the user cannot enter a date, it has to be chosen from the calendar.
2. I will be loading some records with an existing date from SQL that needs to be loaded into the DatePicker. What property do I use as I see no value property.
Thank you for your time. Dale,
Hi guys,
Is possible with RadScheduler in Timeline view to create a second group level? I mean, a label that split the group on the left, I've created an example with an image editing software
Hi,
I'm using the new FilterType="HeaderContext" with my RadGrid. In this case I am going against a large set of items that may take some time to load when the user filters. So, I have the RadGrid set to register to itself with AJAX which seems to work well in all cases except when a filter is applied from the context menu. Here's what I observe:
1) User opens context menu and enters in filter criteria.
2) User clicks the 'Filter' button on the content menu.
3) The UpdatePanel displays as it should but, although I can see the filter properly applied to the grid in the background i.e. the items update properly, the UpdatePanel never closes. It just sits there forever. Note that other actions in the context menu (sorting for example) work properly and in those cases the UpdatePanel displays and then hides as expected.
I've got a minimal page that exhibits the behaviour (code below). What am I doing wrong? I really love the new excel filtering capability but I need to AJAX'ify it. Help!
Regards,
Greg
Form:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="radgridajax.aspx.cs" Inherits="Pages.Results.radgridajax" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager>
<telerik:RadAjaxManager ID="ResultsRadAjaxManager" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="lstBrowseResults">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="lstBrowseResults" LoadingPanelID="LoadingPanel" UpdatePanelCssClass="" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<telerik:RadAjaxLoadingPanel ID="LoadingPanel" runat="server" Transparency="30" EnableEmbeddedSkins="False" MinDisplayTime="500">
<div class="loading">
<asp:Image ID="imgLoading" runat="server" ImageUrl="loading.gif" AlternateText="loading"></asp:Image>
</div>
</telerik:RadAjaxLoadingPanel>
<div>
<telerik:RadGrid ID="lstBrowseResults" runat="server" AutoGenerateColumns="False" AllowFilteringByColumn="true" EnableHeaderContextMenu="true" EnableHeaderContextFilterMenu="true" AllowSorting="true" GroupingEnabled="true"
AllowPaging="true" PageSize="10" PagerStyle-Mode="NextPrevNumericAndAdvanced" PagerStyle-AlwaysVisible="true" FilterType="HeaderContext"
OnNeedDataSource="lstBrowseResults_NeedDataSource" >
<MasterTableView GridLines="None" DataKeyNames="ID">
<Columns>
<telerik:GridBoundColumn DataField="Name" HeaderText="Name" UniqueName="lstBrowseResults_colName" DataType="System.String" HeaderStyle-Width="150" FilterCheckListEnableLoadOnDemand="true" CurrentFilterFunction="Contains"></telerik:GridBoundColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>
</div>
</form>
</body>
</html>
Code behind:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Telerik.Web.UI;
namespace Pages.Results
{
public partial class radgridajax : System.Web.UI.Page
{
public class Item
{
public int ID { get; set; }
public String Name { get; set; }
public Item(int id, String name)
{
ID = id;
Name = name;
}
}
protected void Page_Load(object sender, EventArgs e)
{
}
protected void lstBrowseResults_NeedDataSource(object sender, GridNeedDataSourceEventArgs e)
{
List<Item> items = new List<Item>();
for (int i = 0; i < 100; i++)
items.Add(new Item(i, i.ToString()));
lstBrowseResults.DataSource = items;
}
}
}
I called on 1-888-365-2779, sent some emails to Sales@telerik.com and asked following questions online form
but since December 02, 2015 waiting for response. Please anybody from telerik answer following questions.
I need file explorer for my project with following requirements.
Looking for Files Uploader and Downloader software
integrating with Visual Studio 2013 asp.net C#.
Browsing the folder for files upload.
Upload the all files with in selected folder and sub folders (All tree folders
contents) to the database by selecting folder or multiple files selection.
Downloading files from database with same file path with
multiple selection
• Client-side MD5 hash/checksum that could be used to determine if the client
file is different from already uploaded files
• Resume of interrupted uploads
Properties of associated with uploaded files like
Size of file
Created date
Files path from client computer
Development environment
Developing Website by creating Web pages by Web Form using Visual C#, .NET
Framework 4.5 with
Visual Studio 2013, IIS 7, Window 7 Professional, 64 bit Operating System and
SQL Server 2012 R2
Thank you,
Bashir.
Hi,
I'm using a radcombobox to display a long list of projects for the user to pick from. When I view it in the Visual Studio development environment... or when I run it from visual studio, everything looks great. Unfortunately when it displays from the webserver - it loses the bottom border of the control. It is a minor thing but is annoying to my users.
My guess is that the CSS isn't correct on it but I have no idea where to start. I'm just using standard skins. I'll attach the two different views of the combobox.
Here is how it is defined in my code:
<td style="border-right: black 1px solid; border-top: black 1px solid; border-left: black 1px solid; width: 670px; border-bottom: black 1px solid"
align="left" colspan="3">
<telerik:RadComboBox ID="RadComboPIF" runat="server" AllowCustomText="True" EmptyMessage="Find a PIF NUMBER" Filter="Contains" Height="400px" SortCaseSensitive="False" Width="600px"
AutoPostBack="true" OnSelectedIndexChanged="RadComboPIF_SelectedIndexChanged" CausesValidation="False" EnableScreenBoundaryDetection="False">
</telerik:RadComboBox>
</td>
Hi,
We want to enable batch editing in three level hierarchical grid for only the last level child grid. First and second level grid will be readonly. Do Rad Grid support this functionality? if yes is there any sample code which implement this or implements the batch editing in hierarchical grid?
We tried setting Edit mode as batch for all grid but not able to get the client side changed values of last level grid at server side in Batch Edit Command event handler.
Awaiting your quick response, thanks for you help.
--Himanshu