将 JQuery themeroller 与 ASP.NET gridview 结合使用
对于我们这些审美上有挑战的人来说,有没有办法将 JQuery 的主题(例如 redmond)应用到 ASP.NET gridview?
类似...
$(document).ready(function() { $(函数() { $("<%= MyGridView.ClientID %>").Table(); }); });
也许有一个插件可以模拟这种类型的功能?
For those of us who are aesthetically challenged, is there a way to apply JQuery's themes (e.g. redmond) to an ASP.NET gridview?
Something like ...
$(document).ready(function() {
$(function() {
$("<%= MyGridView.ClientID %>").Table();
});
});
Perhaps there's an addin that would emulate that type of functionality?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
gridview html 呈现为表格。如果你给它添加 css 类,那就没问题了。另外,在 gridview Databound 事件中添加以下内容,以便标题不会呈现为一行。
The gridview html renders to a table. If you add css class to it then you will be fine. Also, add the following in the gridview Databound event so the header does not render as a row.
只需给您的 gridview 一个 css 类并在 jquery 选择器中使用它即可。这样你就可以在所有页面中拥有一个标准的 javascript 文件,你所要做的就是将相关的 css 类添加到 gridview 中,然后它就会被设置样式。
Just give your gridview a css class and use that in the jquery selector. That way you can have a standard javascript file in all your pages and all you have to do is add the relevent css class to a gridview and it will be styled.