<telerik:GridDropDownColumn AllowFiltering="true" DataField="Customer_Id" DataSourceID="entityDataSource1" DropDownControlType="RadComboBox"
HeaderText="Customer Name" ListTextField="Name" ListValueField="Customer_Id"
UniqueName="CustomerNameDropDown" AllowAutomaticLoadOnDemand="true"> </telerik:GridDropDownColumn>

RadTimePicker1.SelectedTime = Convert.ToDateTime(dataRow["TimeDeparted"].ToString());Error 2 Cannot implicitly convert type 'System.DateTime' to 'System.TimeSpan?'
Hello ,
I am using the Telerik Radeditor in are application[Visual Studio 2012(C#)] but we are facing following issue while using the document manager features of it .
Case:
#If we Upload more than one document and click on uploaded document then it's name get display on the right screen but when we click on the other uploaded document, then the name that is coming on that screen is not getting updated. Reference screen shot is attached .
Telerik version:2013.1.4.3.40
.
Please help me out to fix it.
Thanks! in Advance.
How to pass additional data to context from RadAutoCompleteBox
This is on my markup, the retrieval of data is working but passing the data to context from the RadAutoCompleteBox has a problem.
<telerik:RadAutoCompleteBox ID="racbTest" runat="server" DataTextField="Text" AutoPostBack="False" TextSettings-SelectionMode="Single" OnClientItemsRequesting="TestRequesting" InputType="Text" AllowCustomEntry="True"> <WebServiceSettings Path="../DataSources/DataLoader.asmx" Method="SearchTest"> </WebServiceSettings></telerik:RadAutoCompleteBox><telerik:RadCodeBlock runat="server"> <script> function TestRequesting(sender, args) { args.get_context()["Foo"] = "Bar"; } </script></telerik:RadCodeBlock>
and this is the code in the web service
[WebMethod]
public AutoCompleteBoxData SearchTest(RadAutoCompleteContext context)
{
string searchString = context.Text;
string foo = context["Foo"].ToString();
}
the problem is in the WebMethod, the context["Foo"] throws an error that
The given key was not present in the dictionary.
Any help would be appreciated.. Thanks in advance.
<style type="text/css"> .rgSelectedRow, .rgSelectedRow > td { padding:4px; border-right: solid 1px #CBD2DA; background:gray !important; }</style><ClientSettings> <Selecting AllowRowSelect="True"></Selecting> <ClientEvents OnRowClick="namespace.rowClick" /></ClientSettings>rowClick: function (sender, eventArgs) { var masterTable = $find('<%=grdSpam.RadGrid.ClientID%>').get_masterTableView(); var rowindex = eventArgs.get_itemIndexHierarchical(); var dataItem = masterTable.get_dataItems()[rowindex].get_element(); var spamFilterID = dataItem.attributes["SpamFilterID"].value; $find('<%=pnlSpamQuarantine.ClientID%>').ajaxRequest('ViewFile' + '|' + spamFilterID + '|' + rowindex);}I am looking at RadHtmlChart. At the moment, I don’t know how to make the data points clickable easily.
In our scenario, the URL values for each data point will be constructed during the process of binding the data to the chart on the server side.
Can anybody advise?
Thanks!
<telerik:RadGrid ID="grdWorkflow" Skin="Outlook" AutoGenerateColumns="False" GridLines="None" Width="900px" OnNeedDataSource="grdWorkflow_NeedDataSource" OnItemDataBound="grdWorkflow_ItemDataBound" OnItemCreated="grdWorkflow_ItemCreated" OnColumnCreated="grdWorkflow_ColumnCreated" runat="server"> <ClientSettings AllowColumnsReorder="false"> <Resizing AllowColumnResize="true" /> </ClientSettings> <MasterTableView Caption="List of workflows" DataKeyNames="GroupID" ClientDataKeyNames="GroupID,StepID" GroupsDefaultExpanded="true" TableLayout="Fixed" Style="float: left;" Summary="View Workflow"> <NoRecordsTemplate> <div class="bold"> There are no approvers set up to approve this ITPR. You must either select a manager to approve or contact your Customer Service Representative (CSR) for further assistance. </div> </NoRecordsTemplate> <GroupByExpressions> <telerik:GridGroupByExpression> <SelectFields> <telerik:GridGroupByField HeaderValueSeparator=" " FieldName="StepName" /> </SelectFields> <GroupByFields> <telerik:GridGroupByField FieldName="ArtificialSortingField" /> </GroupByFields> </telerik:GridGroupByExpression> </GroupByExpressions> <Columns> <telerik:GridBoundColumn UniqueName="StepID" DataField="StepID" Display="false"> </telerik:GridBoundColumn> <telerik:GridBoundColumn UniqueName="StepName" HeaderText="Step Name" DataField="StepName" Display="false"> </telerik:GridBoundColumn> <telerik:GridBoundColumn UniqueName="GroupID" HeaderText="GroupID" DataField="GroupID" Display="false"> </telerik:GridBoundColumn> <telerik:GridBoundColumn UniqueName="GroupName" HeaderText="Approval Group Name" DataField="GroupName"> </telerik:GridBoundColumn> <telerik:GridBoundColumn UniqueName="RoleID" HeaderText="Role ID" DataField="RoleID" Display="false"> </telerik:GridBoundColumn> <telerik:GridBoundColumn UniqueName="RoleName" HeaderText="Role" DataField="RoleName"> </telerik:GridBoundColumn> <telerik:GridBoundColumn UniqueName="SectionName" HeaderText="Section" DataField="SectionName"> </telerik:GridBoundColumn> <telerik:GridBoundColumn UniqueName="Approvers" HeaderText="Potential Approvers" DataField="Approvers"> </telerik:GridBoundColumn> </Columns> </MasterTableView></telerik:RadGrid>