当我们使用带有 LinqDataSource 的 Telerik 网格时,如何在页面的各种按钮单击事件上重新生成网格数据

发布于 2024-11-27 09:03:00 字数 573 浏览 2 评论 0原文

我在页面上使用 Telerik 网格控件和 LinqDataSource 控件。

代码:

<asp:LinqDataSource ID="ldsFillGridData" runat="server" OnSelecting="ldsFillGridData_Selecting" />

现在一切正常,我想调用它

protected void ldsFillGridData_Selecting(object sender, LinqDataSourceSelectEventArgs e)
{
    e.Result = from tc in db.city select tc;
}

从某个按钮单击事件调用的选择事件。如何???

我正在尝试,

ldsFillGridData_Selecting(null, null);

但它会引发错误。

当我们使用带有 LinqDataSource 的 Telerik 网格时,如何在页面的各种按钮单击事件上重新生成网格数据?

I am using Telerik grid control and LinqDataSource control on a page.

code :

<asp:LinqDataSource ID="ldsFillGridData" runat="server" OnSelecting="ldsFillGridData_Selecting" />

all things working fine now i want to call its

protected void ldsFillGridData_Selecting(object sender, LinqDataSourceSelectEventArgs e)
{
    e.Result = from tc in db.city select tc;
}

this selecting event calling from some button click event. How???

I am trying like

ldsFillGridData_Selecting(null, null);

but it throws an error.

How to regenerate grid data on various button click event of a page while we are using telerik grid with LinqDataSource?

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

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

发布评论

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

评论(2

以往的大感动 2024-12-04 09:03:00

只需使用这个 Telerik 网格控件的 Rebind() 函数,它就会自动调用 ldsFillGridData_Selecting 事件,并显示网格中更新的记录。

RadGrid.rebind();

Just use Rebind() function of this telerik grid control, it will automatically calls ldsFillGridData_Selecting event and it shows updated records in Grid.

RadGrid.rebind();
梦途 2024-12-04 09:03:00

RadGrid1.Rebind();

将重新绑定网格,调用数据源的 select 方法(只要 linqdatasource 被指示为网格的数据源)。

RadGrid1.Rebind();

Will rebind the grid, calling the select method of your datasource (as long as the linqdatasource is indicated as datasource for the grid).

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