or
Protected Sub scheduler_ReminderDismiss(sender As Object, e As Telerik.Web.UI.ReminderDismissEventArgs) Handles scheduler.ReminderDismiss Dim followup As New FollowUp(e.Appointment.ID) followup.Notification = DbNull.Value.ToString() DBTool.UpdateFollowUp(followup) scheduler.DataSource = DBTool.PopulateFollowUpAtMainPage() scheduler.Rebind()End SubScenerio:
Using the Frozen Column Example we turned on the scrolling. This turns on the scrolling of the columns and rows.
<telerik:RadGrid ID="gridServiceMaster" runat="server" Width="100%" > <ClientSettings><Scrolling AllowScroll="True" UseStaticHeaders="True"></Scrolling></ClientSettings><MasterTableView TableLayout="Fixed" /></telerik:RadGrid>
Next, to turn off the vertical scrolling we override the height that is assigned to the inner div;
<style type="text/css"> .rgDataDiv { height: auto !important; }</style>
<?xml version="1.0" encoding="utf-8" ?><siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" > <siteMapNode url="/Views/" title="" description=""> <siteMapNode url="/Views/BrokerManager/" title="Broker Manager"> <siteMapNode url="/Views/BrokerManager/BrokerManager/" title="Broker Manager"> <siteMapNode url="/Views/BrokerManager/BrokerManager/Default.aspx" title="Brokers" /> <siteMapNode url="/Views/BrokerManager/BrokerManager/OfficeList.aspx" title="Offices" /> </siteMapNode> </siteMapNode> <siteMapNode url="/Views/Administration/" title="Adminstration" > <siteMapNode url="/Views/Administration/UserManagement/" title="User Management" description=""> <siteMapNode url="/Views/Administration/UserManagement/Default.aspx" title="Users" /> <siteMapNode url="/Views/Administration/UserManagement/Roles.aspx" title="Roles" /> </siteMapNode> <siteMapNode url="/Views/Administration/Subscribers/" title="Subscriber Management" description=""> <siteMapNode url="/Views/Administration/Subscribers/Default.aspx" title="Subscribers" /> </siteMapNode> </siteMapNode> </siteMapNode></siteMap>