Prado 中的嵌套组件中未触发事件? (附有无效的事件处理程序)

发布于 2024-11-25 20:26:50 字数 1067 浏览 0 评论 0原文

我有一个 TDataList,里面有一个 XActiveDataGrid。在XActiveDataGrid中,有一个TDropDownList。如果用户更改下拉列表的选定索引,我想触发一个操作,但它不起作用。这是我的 TDropDownList

   <com:TTemplateColumn Id="Reminder" HeaderText="Reminder" HeaderStyle.Width="20%" >
            <prop:ItemTemplate >
                <com:TDropDownList CssClass="combobox4" ID="ReminderDropdown" AutoPostBack="true" OnSelectedIndexChanged="Page.SourceTemplateControl.ChangeReminder" 
                 SelectedValue="<%# $this->parent->DataItem['Reminder'] %>">
                    <com:TListItem Text="No Reminder" Value="No Reminder" />
                    <com:TListItem Text="1 week" Value="1 week" />
                    <com:TListItem Text="2 weeks" Value="2 weeks" />
                    <com:TListItem Text="1 month" Value="1 month" />
                    <com:TListItem Text="2 months" Value="2 months" />
                </com:TDropDownList>
            </prop:ItemTemplate>
        </com:TTemplateColumn>    

提前致谢,

I have a TDataList that has a XActiveDataGrid inside it. In XActiveDataGrid, there is a TDropDownList. I want to fire an action if the user change the selectedindex of the dropdownlist but it doesnt work. Thats my TDropDownList

   <com:TTemplateColumn Id="Reminder" HeaderText="Reminder" HeaderStyle.Width="20%" >
            <prop:ItemTemplate >
                <com:TDropDownList CssClass="combobox4" ID="ReminderDropdown" AutoPostBack="true" OnSelectedIndexChanged="Page.SourceTemplateControl.ChangeReminder" 
                 SelectedValue="<%# $this->parent->DataItem['Reminder'] %>">
                    <com:TListItem Text="No Reminder" Value="No Reminder" />
                    <com:TListItem Text="1 week" Value="1 week" />
                    <com:TListItem Text="2 weeks" Value="2 weeks" />
                    <com:TListItem Text="1 month" Value="1 month" />
                    <com:TListItem Text="2 months" Value="2 months" />
                </com:TDropDownList>
            </prop:ItemTemplate>
        </com:TTemplateColumn>    

Thanks in advance,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一世旳自豪 2024-12-02 20:26:50

我想问题是动态创建的控件的事件未注册,可能 这有帮助。

I guess the problem is that the events of the dynamicly created controls arn't registered, may THIS helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文