English 中文(简体)
Can i Add a RadGrid to a NestedViewTemplate
原标题:Can i add a RadGrid to a NestedViewTemplate

我目前正在利用2008年视觉演播室开发一个分级的电网,显示记录,分三级。 法典大致如此。

<telerik:RadMultiPage runat="server" ID="RadMultiPage1" SelectedIndex="0" RenderSelectedPageOnly="false">
<telerik:RadPageView ID="RadPageView1" runat="server">
    <telerik:RadGrid ID="radGrd1">
        <MasterTableView>
            <DetailTables>
                <telerik:GridTableView>
                    <NestedViewTemplate>
                        <telerik:RadMultiPage>
                            <telerik:RadPageView>
                                <%--add Radgrid Here--%>
                            </telerik:RadPageView>
                        </telerik:RadMultiPage>
                    </NestedViewTemplate>
                </telerik:GridTableView>
            </DetailTables>
        </MasterTableView>
    </telerik:RadGrid>
</telerik:RadPageView>

我删除了所有法典,刚刚提供了kel。

问题一是,在加添雷达网时,星座似乎没有上台,视觉演播室也没有在设计师班上添加。

我试图从设计角度来看待这一问题,迫使它 s,甚至人工添加到设计师本人。 这些解决办法没有解决我的问题,因为尽管律师在人工添加控制权后确实放弃了控制权,但控制本身在一段时间内就已经失效。

因此,基本上有可能首先增加一个rad网,如果是的话,那就会出现什么错误。

预支

最佳回答

引人注意的是,虽然控制没有被添加到设计师的班子上,而且没有在电视上显示,但控制仍在建立之中。

通过投下其一次活动所投掷的物体,管理起来控制。

RadGrid temp = (RadGrid)sender;

A little update...When adding controls to a nested view template in telerik, it is impossible to obtain a reference in a traditional way from the code behind. this is because everything in a nested view template resides in a naming container. click here for more information.

问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签