I found the following code in an existing thread (http://www.telerik.com/community/forums/aspnet/editor/set-default-image-properties-when-inserting.aspx). The editor.fire executes fine, but the callback never runs. Any suggestions?
Telerik.Web.UI.Editor.CommandList["ImageDialog"] = function (commandName, editor, args) {
<telerik:RadTabStrip runat="server" ID="rtsStatus" Width="100%" ShowBaseLine="true" AutoPostBack="true"></telerik:RadTabStrip>rtsStatus.DataSource = CachedDataTables.CandidateStatus rtsStatus.DataTextField = "Title"rtsStatus.DataValueField = "CandidateStatusID"rtsStatus.DataBind()I have a radgrid that looks like:
<telerik:RadGrid ID="RadGrid1" runat="server" DataSourceID="MultiEmployeeList" AutoGenerateColumns="False" CellSpacing="0" GridLines="None" GroupingEnabled="False" AllowMultiRowEdit="false" AutoGenerateEditColumn="True" HorizontalAlign="Left"Width="800px"> <ClientSettings> <ClientEvents OnCommand="OnCommand" /> </ClientSettings> <HeaderContextMenu CssClass="GridContextMenu GridContextMenu_Default"> </HeaderContextMenu> <MasterTableView DataSourceID="MultiEmployeeList" DataKeyNames="rasID" ClientDataKeyNames="rasID" EditMode="InPlace"> <RowIndicatorColumn FilterControlAltText="Filter RowIndicator column"> <HeaderStyle Width="20px"></HeaderStyle> </RowIndicatorColumn> <ExpandCollapseColumn FilterControlAltText="Filter ExpandColumn column"> <HeaderStyle Width="20px"></HeaderStyle> </ExpandCollapseColumn> <Columns> <telerik:GridBoundColumn DataField="empName" FilterControlAltText="Filter column column" UniqueName="Name" ReadOnly="true"> </telerik:GridBoundColumn> <telerik:GridDropDownColumn DataField="rasRoleID" DataSourceID="RoleList" FilterControlAltText="Filter column column" ListTextField="mrrRoleDesc" ListValueField="mrrID" UniqueName="rasRoleID" EmptyListItemText=" -- Select Role --" EnableEmptyListItem="True" > </telerik:GridDropDownColumn> </Columns> <EditFormSettings> <EditColumn FilterControlAltText="Filter EditCommandColumn column"> </EditColumn> </EditFormSettings> </MasterTableView> <FilterMenu EnableImageSprites="False"> </FilterMenu> </telerik:RadGrid>
<MasterTableView EditMode="PopUp" Caption="Caption" CommandItemDisplay="Top" NoMasterRecordsText="No Rows Returned!" DataKeyNames="ID" RetrieveNullAsDBNull="False" HorizontalAlign="Center" BorderWidth="1" BorderColor="Gray" BorderStyle="Solid" InsertItemPageIndexAction="ShowItemOnFirstPage">
I searched the entire forum and I could't find one single explanation on what happens internally to the SQL table that stores the appointments, specifically the field 'RecurranceStorage' when a 'recurring exception' occurs. Please provide me with a link that can help me to understand the magic. I want to know how recurrence series keep track of exceptions like 'moving' one instance of the series to another resource or date/time. Your sample code 'ResouceGrouping' has zero code-behind.Thanks in advance.
Hi,
I am trying to implement the automatic onloaddemand mechanism of the RAD combo box. But getting following error when click on dropdown:-
Following is the source html for location combo box. Combobox is bind to objectdata source. Highlighted portion is use for onload demand functionality.
<telerik:RadComboBox ID="comboLocation" runat="server" Width="250px" DataTextField="Location_DisplayName"
DataValueField="Location_ID" DataSourceID="LocationDataSource"
AppendDataBoundItems="true" EnableAutomaticLoadOnDemand="true"
onitemsrequested="comboLocation_ItemsRequested" ShowMoreResultsBox="true"
itemsperrequest="5" enablevirtualscrolling="true">
<Items>
<telerik:RadComboBoxItem Text="" />
</Items>
</telerik:RadComboBox>
Not able to find what is happening wrong to cause above error. Have anyone got the same issue while developoing combobox on load demand functionality.