I have a single radgrid in a control, which I want to display on the same page three times, as follows:
| <UC:MySubscriptionGrid ID="MySubscriptionGrid" runat="server" subType="T" /> |
| <br /> |
| <UC:MySubscriptionGrid ID="MySubscriptionGrid1" runat="server" subType="U" /> |
| <br /> |
| <UC:MySubscriptionGrid ID="MySubscriptionGrid2" runat="server" subType="F" /> |
I have the ajax manager on the master page, and then the radajaxproxy on the MySubscriptionGrid control itself as follows:
| <telerik:RadAjaxManagerProxy ID="AjaxManagerProxy1" runat="server"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="RadGrid_Subs"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="RadGrid_Subs" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| <telerik:AjaxSetting AjaxControlID="btnSubPanelMinus"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="pSubscriptions" /> |
| <telerik:AjaxUpdatedControl ControlID="pButton" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| <telerik:AjaxSetting AjaxControlID="btnSubPanelPlus"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="pSubscriptions" LoadingPanelID="RadAjaxLoadingPanelSubscriptions" /> |
| <telerik:AjaxUpdatedControl ControlID="pButton" LoadingPanelID="RadAjaxLoadingPanelSubscriptions" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManagerProxy> |
<div>
<telerik:RadToolBar ID="RadToolBar1" runat="server" CssClass="toolbar" Skin="" EnableEmbeddedSkins="false" >
<Items>
<telerik:RadToolBarButton Text="Dashboard" Value="btnDashboard" Group="Toolbar" CheckOnClick="true" AllowSelfUnCheck="false" CssClass="button" ImageUrl="../normal-item.gif" CheckedImageUrl="../selected-item.gif" />
<telerik:RadToolBarButton Text="Summary" Value="btnSummary" Group="Toolbar" CheckOnClick="true" AllowSelfUnCheck="false" CssClass="button" ImageUrl="../normal-item.gif" CheckedImageUrl="../selected-item.gif" />
<telerik:RadToolBarButton Text="Projects" Value="btnProjects" Group="Toolbar" CheckOnClick="true" AllowSelfUnCheck="false" CssClass="button" ImageUrl="../normal-item.gif" CheckedImageUrl="../selected-item.gif" />
</Items>
</telerik:RadToolBar>
</div>
Is there something I am doing wrong or is simply not possible to overlay text on top of the image for the button?<
form id="form1" runat="server">
<telerik:RadScriptManager ID="RadScriptManager1" runat="server">
</telerik:RadScriptManager>
<div>
<telerik:RadComboBox ID="ddlReportingPeriodEndDate" runat="server" EnableEmbeddedSkins="false" EnableLoadOnDemand="false" AppendDataBoundItems="false" LoadingMessage="Loading dates..." MarkFirstMatch="True" ToolTip="Select report period end date" AllowCustomText="false" CssClass="editfield" Width="110px">
</telerik:RadComboBox>
</div>
</form>
My Code to cal the window is:
function
ShowDialogPopup()
{
var oWnd = radopen("NewDialog.aspx");
}
which is called from the onclientclick event in the button.