This is a migrated thread and some comments may be shown as answers.

How to show the delete button from the scheduler appointment item ?

1 Answer 101 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Christian
Top achievements
Rank 1
Christian asked on 25 Nov 2012, 10:26 AM
Please i want to SHOW the delete button radscheduler appointment, or put any image in this place.
The code works perfectly, when i clicked this position. But i don't know why do not showing this button??

My code:

<telerik:RadScheduler ID="RadScheduler1" runat="server"
                  Skin="WebBlue" ShowViewTabs="False"
                    onformcreated="RadScheduler1_FormCreated"
                    onappointmentcommand="RadScheduler1_AppointmentCommand"
                    onappointmentcreated="RadScheduler1_AppointmentCreated"
                    onappointmentdelete="RadScheduler1_AppointmentDelete" ShowHoursColumn="False"
                    >
                    <MonthView VisibleAppointmentsPerDay="30" AdaptiveRowHeight="true" />
                    <AppointmentTemplate>
                        <div>
                            <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
                        </div>
                    </AppointmentTemplate>                   
                  <InlineInsertTemplate>                      
                <div>
                </div>
                    <table>
                    <tr>
                        <td>
                            <telerik:RadComboBox ID="RadComboBox1" runat="server">
                            </telerik:RadComboBox
                            <asp:LinkButton ID="InsertButton" runat="server" CommandName="Insert" Text="Agregar"></asp:LinkButton>
                        </td>
                    </tr>
                    </table>
                     
                  </InlineInsertTemplate>                 
                </telerik:RadScheduler>

Thank you

1 Answer, 1 is accepted

Sort by
0
Plamen
Telerik team
answered on 28 Nov 2012, 02:57 PM
Hi Christian,

 
The "delete" button is visible only when the appointment is hovered by default but you can override this behavior with this css:

.rsAptDelete {
        visibility:visible !important;
        }

Hope this will be helpful.

Kind regards,
Plamen
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
Scheduler
Asked by
Christian
Top achievements
Rank 1
Answers by
Plamen
Telerik team
Share this question
or