Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
559 views

I have a RadToolTipManager in place and logic to create tooltips on certain elements.

When hovering over an element and its tooltip is visible, when I then hover over another element that contains its own tooltip, I want the current tooltip to hide after a certain amount of ms instead of hiding immediately. After which, the element I'm hovering on will show its tooltip.

Almost like a delay between hiding the current tooltip and showing a new tooltip from a element being hovered on.

I used .set_hideDelay(1000) on each of these tooltips, but that seems to be when the cursor is idle for that long.

Is there an implementation for what I describe?

Vessy
Telerik team
 answered on 16 Mar 2021
19 answers
426 views

Hi Everyone,

I assume the RadEditor for SharePoint 2013 cannot be used in SharePoint 2016. Right?

Is there any release planned for the RadEditor, and in general for the RadControls, for SharePoint 2016?

Could you please inform the timeline?

Thanks in advance

Rumen
Telerik team
 answered on 16 Mar 2021
1 answer
118 views
How to get text selected in MultiColumnComboBox ?
Vessy
Telerik team
 answered on 16 Mar 2021
3 answers
132 views
How to add button inside MultiColumnComboBox at the end of all rows inside it Or in a column? 
Peter Milchev
Telerik team
 answered on 16 Mar 2021
5 answers
285 views

Hi , 

I have a RadTabStrip which is to generate tab dynamically . Each tab load same usercontrol but with different data . My issue is that When the tab is created for first time it loads the data but when I toggle to earlier tab , the data reflected is of last created tab . This is basically due to creation of RadMultiPage having same id . 

How to overcome this issue . 

My code are as follow ..

 

<asp:Content ID="Content1" ContentPlaceHolderID="FormPlaceHolder" runat="server">
    <telerik:RadAjaxLoadingPanel runat="server" ID="LoadingPanel1" Skin="Metro">
    </telerik:RadAjaxLoadingPanel>
    <telerik:RadAjaxManagerProxy ID="RadAjaxManagerMpInfo" runat="server">
        <AjaxSettings>            
            <telerik:AjaxSetting AjaxControlID="RadTabStrip1">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="RadTabStrip1"></telerik:AjaxUpdatedControl>
                    <telerik:AjaxUpdatedControl ControlID="RadMultiPage1" LoadingPanelID="LoadingPanel1"></telerik:AjaxUpdatedControl>
                </UpdatedControls>
            </telerik:AjaxSetting>
            <telerik:AjaxSetting AjaxControlID="RadMultiPage1">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="RadMultiPage1"></telerik:AjaxUpdatedControl>
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
    </telerik:RadAjaxManagerProxy>
     <script type="text/javascript">
         /* <![CDATA[ */
            function onTabSelecting(sender, args) {
                if (args.get_tab().get_pageViewID()) {                   
                    args.get_tab().set_postBack(false);
                }               
            }
         /* ]]> */
        </script>

    <telerik:RadTabStrip OnClientTabSelecting="onTabSelecting" ID="RadTabStrip1" SelectedIndex="0"
        runat="server" MultiPageID="RadMultiPage1" Skin="Windows7" Width="100%" Align="Justify"
        OnTabClick="RadTabStrip1_TabClick">
    </telerik:RadTabStrip>
    <telerik:RadMultiPage ID="RadMultiPage1" runat="server" SelectedIndex="0"  OnPageViewCreated="RadMultiPage1_PageViewCreated">
    </telerik:RadMultiPage>
</asp:Content>

 

 

CodeBehind cs file is ..

 

if (!Page.IsPostBack)
            {
                try
                {
                   
                    if(mpCollection.Count() > 0 && this.Master.IdProgram.HasValue)
                    {
                        //  AddTab("ΣMPs");
                        using (Context idcardContext = new Context())
                        {
                            foreach (string mp in mpCollection)
                            {
                                MP currentMp = MPTestBusiness.GetMPById(idcardContext, Int32.Parse(mp));

                                mpListCollection.Add(currentMp);
                                AddTab(currentMp);
                            }
                            AddPageView(RadTabStrip1.FindTabByText(mpListCollection[0].Code));
                            
                        }            
                    }

             }
                catch (Exception ex)
                {
                    Log.Error(ex);
                    this.Master.DisplayErrorAlert(MessageConstants.GenericError);
                }

 

  private void AddTab(MP mp)
        {
            RadTab tab = new RadTab();
            tab.Text = mp.Code;
            RadTabStrip1.Tabs.Add(tab);            
        }

 

  protected void RadMultiPage1_PageViewCreated(object sender, RadMultiPageEventArgs e)
        {
            
            string userControlName = "../UserControl/MPInfoControl.ascx";
            Control userControl = Page.LoadControl(userControlName);
            userControl.ID = "userControl_" + e.PageView.ID;         
          
            if(!e.PageView.Controls.Contains(userControl))
            e.PageView.Controls.Add(userControl);
        }
        private void AddPageView(RadTab tab)
        {
            if(tab != null)
            {          
            RadPageView pageView = new RadPageView();
            pageView.ID = tab.Text;
                tab.PageViewID = pageView.ID;
                RadMultiPage1.PageViews.Add(pageView);

            }
        }
       
        protected void RadTabStrip1_TabClick(object sender, RadTabStripEventArgs e)
        {
            if (e.Tab != null)
            {
                AddPageView(e.Tab);
                e.Tab.PageView.Selected = true;
            }
        }

 

 

 

I have followed the following demo 

https://demos.telerik.com/aspnet-ajax/tabstrip/examples/multipage/dynamic-pageview-creation/defaultcs.aspx

 

however here different usercontrol has been used for loading in different tab but in my case same usercontrol has to be loaded . Going further I will be adding another user control for specific values . 

Attila Antal
Telerik team
 answered on 16 Mar 2021
24 answers
2.7K+ views
I've just added the RadAsyncUpload control to a page and I'm trying to get OnFileUploaded event to fire, but can't seem to get it going.

Here's my aspx code:

<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server"></telerik:RadAjaxPanel> 
<telerik:RadScriptManager  ID="ScriptManager1" runat="server" /> 
<telerik:RadProgressManager runat="server" ID="RadProgressManager1" />                                                           
<telerik:RadAsyncUpload runat="server" ID="AsyncUpload1" OnFileUploaded="fileUploaded" /> 
<telerik:RadProgressArea runat="server" ID="RadProgressArea1" /> 

And my code behind:
protected void fileUploaded(object sender, FileUploadedEventArgs e) 
    System.Diagnostics.Debug.WriteLine(e.File.FileName); 


Any idea what I'm doing wrong?
Peter Milchev
Telerik team
 answered on 16 Mar 2021
3 answers
152 views

Hi,

 

How can we use pasteHTML and editor.getSelectedElement() to paste some html right after the SelectedElement?

 

So we have to keep the SelectedElement and add the new content after it.

 

Thanks in advance for your help.

 

Marc

Rumen
Telerik team
 answered on 16 Mar 2021
1 answer
183 views

We have an older application that was using the 2015 version of Telerik.Web.UI control. We use a RadGrid that employs a web user control for adding and editing rows. 

<telerik:RadGrid ID="gvSamples" runat="server" AutoGenerateColumns="False" OnUpdateCommand="gvSamples_UpdateCommand" OnItemCommand="gvSamples_ItemCommand"
    OnDeleteCommand="gvSamples_DeleteCommand"
    EnableEmbeddedBaseStylesheet="false"
    CssClass="table table-striped table-condensed table-bordered table-hover">
    <MasterTableView Width="100%" CommandItemDisplay="Top" EditMode="PopUp" CssClass="table table-condensed table-striped table-hover" DataKeyNames="sample.SampleId">
        <EditFormSettings PopUpSettings-Height="1000px" PopUpSettings-Width="1150px" PopUpSettings-Modal="True" UserControlName="~/UserControls/SampleControl.ascx"
            EditFormType="WebUserControl"/>
        <CommandItemTemplate>
            <asp:Button ID="btnAddNewSample" Text="Add New Sample" runat="server" CommandName="InitInsert" CssClass="btn-sm btn-primary"></asp:Button>
        </CommandItemTemplate>
        <Columns>
            <telerik:GridEditCommandColumn UniqueName="EditCommandColumn" EditText="View/Edit" ButtonType="PushButton">
            </telerik:GridEditCommandColumn>
            <telerik:GridBoundColumn UniqueName="SampleName" HeaderText="Sample ID" DataField="Location.SampleName">
            </telerik:GridBoundColumn>
            <telerik:GridBoundColumn UniqueName="SampleType" HeaderText="Sample Type" DataField="sample.SampleType">
            </telerik:GridBoundColumn>
            <telerik:GridBoundColumn UniqueName="LabID" HeaderText="Lab ID" DataField="sample.LabNumber">
            </telerik:GridBoundColumn>
            <telerik:GridBoundColumn UniqueName="Technician" HeaderText="Sample Taken By" DataField="sample.Technician">
            </telerik:GridBoundColumn>
            <telerik:GridBoundColumn UniqueName="SampleDate" HeaderText="Date of Sample Collected" DataField="sample.SampleDate" DataFormatString="{0:d}">
            </telerik:GridBoundColumn>
            <telerik:GridButtonColumn ConfirmText="Are you sure to Delete the Sample?" ConfirmDialogType="RadWindow" ConfirmTitle="Delete Sample" UniqueName="btnDeleteSample" ButtonType="FontIconButton" CommandName="Delete" />
        </Columns>
    </MasterTableView>
    <ClientSettings>
        <ClientEvents OnRowDblClick="RowDblClick" OnPopUpShowing="onPopUpShowing" />
    </ClientSettings>
</telerik:RadGrid>

 

Before the upgrade, working with any of the dropdowns, radio buttons, and calendar controls on the ascx web edit control worked smoothly. However, after upgrading to 2021.1.224.45, the entire edit webform blinks out and back in, which is very jarring to the end user.

Here is the code for the edit form:

<div runat="server" id="dvDataGrid" style="width: 100%" Visible="True">
        <div style="background-color: lightgrey; height: 25px">
            <asp:Label ID="lblSectionC" runat="server" CssClass="labelHeader" Text="Lab Results"></asp:Label>
        </div>
        <table style="width: 100%">
            <tr>
                <td>
                    <asp:Label ID="lblDirty" runat="server"></asp:Label>
                    <asp:UpdatePanel ID="UpdatePanel1" runat="server">
                        <ContentTemplate>
                            <table style="width: 100%">
                                <tr>
                                    <td align="right">
                                        <asp:Label ID="lblPPMTop" runat="server" Text="Total Quantity PPM:  " CssClass="labelNormal"></asp:Label>
                                        <asp:Label ID="lblTotalPPMTop" runat="server" CssClass="labelNormal" ForeColor="Green"></asp:Label>
                                          
                                    </td>
                                </tr>
                                <tr>
                                    <td>
                                        <asp:DataGrid ID="dgLabResults" runat="server" AutoGenerateColumns="False" HeaderStyle-BackColor="CadetBlue"
                                            HeaderStyle-Font-Names="arial" HeaderStyle-ForeColor="Wheat" OnItemCommand="dgLabResults_InsertCommand"
                                            OnItemDataBound="dgLabResults_ItemDataBound" CellPadding="3" CellSpacing="0"
                                            Width="100%" CssClass="table table-bordered table-hover table-striped table-condensed">
                                            <Columns>
                                                <asp:TemplateColumn HeaderText="LabID" Visible="false">
                                                    <ItemTemplate>
                                                        <asp:Label ID="LabID" runat="server" CssClass="labelNormal" Text='<%#DataBinder.Eval(Container.DataItem, "LabID")%>'></asp:Label>
                                                    </ItemTemplate>
                                                </asp:TemplateColumn>
                                                <asp:TemplateColumn HeaderText="PCBTypeID" Visible="false">
                                                    <ItemTemplate>
                                                        <asp:Label ID="PCBTypeID" runat="server" CssClass="labelNormal" Text='<%#DataBinder.Eval(Container.DataItem, "PCBTypeID")%>'></asp:Label>
                                                    </ItemTemplate>
                                                    <HeaderStyle CssClass="thead" />
                                                </asp:TemplateColumn>
                                                <asp:TemplateColumn HeaderText="UnitID" Visible="false">
                                                    <ItemTemplate>
                                                        <asp:Label ID="UnitID" runat="server" CssClass="labelNormal" Text='<%#DataBinder.Eval(Container.DataItem, "UnitID")%>'></asp:Label>
                                                    </ItemTemplate>
                                                    <HeaderStyle CssClass="thead" />
                                                </asp:TemplateColumn>
                                                <asp:TemplateColumn HeaderText="PCB Type" ItemStyle-Width="130px">
                                                    <ItemTemplate>
                                                        <asp:Label ID="lblPCBType" runat="server" CssClass="labelNormal" Text='<%#DataBinder.Eval(Container.DataItem, "PCBType")%>'></asp:Label>
                                                    </ItemTemplate>
                                                    <HeaderStyle CssClass="thead" />
                                                    <EditItemTemplate>
                                                        <asp:DropDownList ID="dpPCBType" runat="server" CssClass="form-control input-sm">
                                                        </asp:DropDownList>
                                                        <asp:Label ID="ecPCBType" runat="server" Text="" ForeColor="Red"></asp:Label>
                                                    </EditItemTemplate>
                                                    <FooterTemplate>
                                                        <asp:DropDownList ID="dpPCBTypeNew" runat="server" CssClass="form-control input-sm">
                                                        </asp:DropDownList>
                                                        <asp:Label ID="ecPCBTypeNew" runat="server" Text="" ForeColor="Red"></asp:Label>
                                                    </FooterTemplate>
                                                    <HeaderStyle CssClass="thead" />
                                                </asp:TemplateColumn>
                                                <asp:TemplateColumn HeaderText="Detection Reporting Limit">
                                                    <ItemTemplate>
                                                        <asp:Label ID="lblReportLimit" runat="server" CssClass="labelNormal" Text='<%#DataBinder.Eval(Container.DataItem, "ReportLimit")%>'></asp:Label>
                                                    </ItemTemplate>
                                                    <HeaderStyle CssClass="thead" />
                                                    <EditItemTemplate>
                                                        <asp:TextBox ID="txtReportLimit" runat="server" CssClass="form-control input-sm" Text='<%#DataBinder.Eval(Container.DataItem, "ReportLimit")%>'
                                                            Width="80px">
                                                        </asp:TextBox>
                                                        <asp:Label ID="ckReportLimit" runat="server" Text="" ForeColor="Red"></asp:Label>
                                                    </EditItemTemplate>
                                                    <FooterTemplate>
                                                        <asp:TextBox ID="txtReportLimitNew" runat="server" CssClass="form-control input-sm" Text=""
                                                            Width="110px">
                                                        </asp:TextBox>
                                                        <asp:Label ID="ckReportLimitNew" runat="server" Text="" ForeColor="Red"></asp:Label>
                                                    </FooterTemplate>
                                                </asp:TemplateColumn>
                                                <asp:TemplateColumn HeaderText="Measured Quantity">
                                                    <ItemTemplate>
                                                        <asp:Label ID="lblQuantity" runat="server" CssClass="labelNormal" Text='<%#DataBinder.Eval(Container.DataItem, "Quantity")%>'></asp:Label>
                                                    </ItemTemplate>
                                                    <HeaderStyle CssClass="thead" />
                                                    <EditItemTemplate>
                                                        <asp:TextBox ID="txtQuantity" runat="server" Text='<%#DataBinder.Eval(Container.DataItem, "Quantity")%>'
                                                            Width="80px" CssClass="form-control input-sm">
                                                        </asp:TextBox>
                                                        <asp:Label ID="ecQuantity" runat="server" Text="" ForeColor="Red"></asp:Label>
                                                    </EditItemTemplate>
                                                    <FooterTemplate>
                                                        <asp:TextBox ID="txtQuantityNew" runat="server" CssClass="form-control input-sm" Text="" Width="80px">
                                                        </asp:TextBox>
                                                        <asp:Label ID="ecQuantityNew" runat="server" Text="" ForeColor="Red"></asp:Label>
                                                    </FooterTemplate>
                                                </asp:TemplateColumn>
                                                <asp:TemplateColumn HeaderText="Unit">
                                                    <ItemTemplate>
                                                        <asp:Label ID="lblUnit" runat="server" CssClass="labelNormal" Text='<%#DataBinder.Eval(Container.DataItem, "Unit")%>'></asp:Label>
                                                    </ItemTemplate>
                                                    <HeaderStyle CssClass="thead" />
                                                    <EditItemTemplate>
                                                        <asp:DropDownList ID="dpUnit" runat="server" CssClass="form-control input-sm" DataTextField="Unit"
                                                            DataValueField="Unit">
                                                        </asp:DropDownList>
                                                        <asp:Label ID="ecdpUnit" runat="server" Text="" ForeColor="Red"></asp:Label>
                                                    </EditItemTemplate>
                                                    <FooterTemplate>
                                                        <asp:DropDownList ID="dpUnitNew" runat="server" CssClass="form-control input-sm">
                                                        </asp:DropDownList>
                                                        <asp:Label ID="ecdpUnitNew" runat="server" Text="" ForeColor="Red"></asp:Label>
                                                    </FooterTemplate>
                                                </asp:TemplateColumn>
                                                <asp:TemplateColumn HeaderText="Quantity ppm">
                                                    <ItemTemplate>
                                                        <asp:Label ID="lblQuantityPPM" runat="server" CssClass="labelNormal" Text='<%#DataBinder.Eval(Container.DataItem, "QuantityPPM")%>'></asp:Label>
                                                    </ItemTemplate>
                                                    <HeaderStyle CssClass="thead" />
                                                </asp:TemplateColumn>
                                                <asp:EditCommandColumn UpdateText="Update" CancelText="Cancel" EditText="Edit" ValidationGroup="PCBType">
                                                    <HeaderStyle CssClass="thead" />
                                                </asp:EditCommandColumn>
                                                <asp:ButtonColumn CommandName="Delete" Text="Delete">
                                                    <HeaderStyle CssClass="thead" />
                                                </asp:ButtonColumn>
                                                <asp:TemplateColumn Visible="False">
                                                    <FooterTemplate>
                                                        <asp:LinkButton ID="lbnInsert" runat="server" CommandName="Insert" Text="Save" ValidationGroup="PCBTypeNew"
                                                            Font-Underline="True" />
                                                        <asp:LinkButton ID="lbnCancel" runat="server" CommandName="Cancel" Text="Cancel"
                                                            Font-Underline="True" CausesValidation="false" />
                                                    </FooterTemplate>
                                                    <HeaderStyle CssClass="thead" />
                                                </asp:TemplateColumn>
                                            </Columns>
                                        </asp:DataGrid>
                                    </td>
                                </tr>
                                <tr>
                                    <td align="right">
                                        <asp:Label ID="lblPPMBottom" runat="server" Text="Total Quantity PPM:  " CssClass="Badge"></asp:Label>
                                        <asp:Label ID="lblTotalPPMBottom" runat="server" CssClass="Badge" ForeColor="Green"></asp:Label>
                                          
                                    </td>
                                </tr>
                            </table>
                            <asp:CustomValidator ID="cvLabResults" runat="server" OnServerValidate="LabResults_ServerValidate"
                                ValidationGroup="SubmitValidation" ErrorMessage="* Enter lab result"></asp:CustomValidator>
                        </ContentTemplate>
                        <Triggers>
                            <asp:AsyncPostBackTrigger ControlID="btnAddLab" />
                        </Triggers>
                    </asp:UpdatePanel>
                </td>
            </tr>
            <tr>
                <td align="right">
                    <asp:Button ID="btnAddLab" runat="server" CausesValidation="false" Text="Insert Lab Result" CssClass="btn-sm btn-primary" />
                </td>
            </tr>
        </table>
    </div>
    <div align="center" style="position: relative; bottom: 0; right: 0">
 
        <asp:Button ID="btnUpdate" Text="Update Sample" CssClass="btn-sm btn-primary" runat="server" CommandName="Update" Visible='<%# Not (TypeOf DataItem Is Telerik.Web.UI.GridInsertionObject) %>'></asp:Button>
        <asp:Button ID="btnInsert" Text="Insert Sample" CssClass="btn-sm btn-primary" runat="server" CommandName="PerformInsert" Visible='<%# (TypeOf DataItem Is Telerik.Web.UI.GridInsertionObject) %>'></asp:Button>
          
        <asp:Button ID="btnCancel" Text="Cancel" runat="server" CssClass="btn-sm btn-primary" CausesValidation="False" CommandName="Cancel"></asp:Button>
    </div>
</asp:PlaceHolder>

 

The majority of the control data on this edit form is loaded when the form loads, so there are no real performance bottlenecks on each individual control.

I'm not sure why postbacks with the newest version appear to be slower.  Before the upgrade, only one of the text fields (which has a name lookup function) would very slightly flicker. The entire form never flickered or blinked.

Is there anything I can do on the grid via settings that would remedy this issue? I'm working under a time constraint to get Telerik upgraded on this application to ensure the application no longer has the AsyncUpload vulnerability of version older than the 2020 version, so I'm trying to not delay the upgrade process by reworking the entire edit form.

 

 

Thank you.

Attila Antal
Telerik team
 answered on 15 Mar 2021
2 answers
184 views

I upgraded Telerik from version 2013.1.220 to version 2020.3.1021. I am using .Net Framework 4.0.

After upgrading, the filter fails and throws following exception

Uncaught TypeError: Cannot read property 'getElementsByClassName' of null
    at Object.getElementByClassName (ScriptResource.axd?d=lJXgEP7wI3nlIkPPahFXpT5FyJRZNWmWFcbonPaNzQCr29d51fiQxZcKKz-XZVzVisx5XLZpVB-NztvzK3iRe1psnHhhTJI425cB8TVWgyl46g2BotFpZEOXuvA1&t=22bb6c4f:535)
    at Telerik.Web.UI.GridTableView.filter (ScriptResource.axd?d=kaODL2VRQAnyVu9y_F-sZ7AnJ-iRePgztIkR-jgmqCfB8tzNjqjoAgqOvRzhPCQkTOZ_yldfO9sTzLKCGG5S-TZNyrYIiWLuhLUovQ48NtZMgR6eER0lSZdv3BqM_8k7mggqLg2&t=22bb6c4f:5130)
    at ScriptResource.axd?d=kaODL2VRQAnyVu9y_F-sZ7AnJ-iRePgztIkR-jgmqCfB8tzNjqjoAgqOvRzhPCQkTOZ_yldfO9sTzLKCGG5S-TZNyrYIiWLuhLUovQ48NtZMgR6eER0lSZdv3BqM_8k7mggqLg2&t=22bb6c4f:3427

 

On debugging in chrome, I see that _getFilterCellByColumnUniqueName returns null because _getTableFilterRow returns null. This is causing the exception to be thrown.

 

 

My aspx code is given below :-

<telerik:RadAjaxPanel runat="server" LoadingPanelID="RadAjaxLoadingPanel1">
                        <telerik:RadGrid RenderMode="Lightweight" AutoGenerateColumns="false" ID="gvUsers" OnNeedDataSource="RadGrid1_NeedDataSource"
                            AllowFilteringByColumn="True" AllowSorting="True" Width="100%" EnableLinqExpressions="false"
                            ShowFooter="True" AllowPaging="True" runat="server">
                            <GroupingSettings CaseSensitive="false"></GroupingSettings>
                            <MasterTableView AutoGenerateColumns="false" AllowFilteringByColumn="True" ShowFooter="True">
                                <Columns>
                                    <telerik:GridBoundColumn FilterControlWidth="120px" DataField="email" HeaderText="email" AutoPostBackOnFilter="true">
                                    </telerik:GridBoundColumn>
                                </Columns>
                            </MasterTableView>
                        </telerik:RadGrid>
                    </telerik:RadAjaxPanel>

 

 

My cs code is given below :-

        protected void RadGrid1_NeedDataSource(object sender, Telerik.Web.UI.GridNeedDataSourceEventArgs e)
        {
            var users = Membership.GetAllUsers().Cast<MembershipUser>();
            if (ddlActiveFilter.SelectedValue.Equals("Active"))
            {
                (sender as RadGrid).DataSource = users.Where(u => !u.IsLockedOut && u.IsApproved);
            }
            else
            {
                (sender as RadGrid).DataSource = users.Where(u => u.IsLockedOut || !u.IsApproved);
            }
        }

 

Could someone please help me with this?

Doncho
Telerik team
 answered on 15 Mar 2021
8 answers
581 views
HI All,

I have gone throught the Article http://www.telerik.com/support/kb/aspnet-ajax/scheduler/setting-special-days-or-time-slots-in-radscheduler.aspx

But I have different requirement. I am using Scheduler only for View mode.
Suppose I have created a recurring appointment between 12PM- 4PM for one month.I have to enable Only this slot of (12PM-4PM) enable and all other slots disable.
Please let me know of any other event than TimeSlotCreated.

Thanks
Prashant
Sen
Top achievements
Rank 1
 answered on 14 Mar 2021
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?