Flexigrid 动态按钮

发布于 2024-08-23 07:58:14 字数 468 浏览 4 评论 0原文

我想更换 Flexigrid 中的按钮,这是我的代码,

$('#flex').flexOptions({
  buttons : [
   {name: 'Show Tagged', bclass: 'show tagged', onpress : control_buttons},
   {separator: true},
   {separator: true},
   {name: 'All Tagged', bclass: 'show tagged', onpress : control_buttons},
   {name: 'Single tagged', bclass: 'show tagged', onpress : control_buttons},
   {separator: true}
   ]}).flexReload();

我认为这可以解决问题,但它不起作用,不知道我可能做错了什么,

谢谢 麦克风

I want to swap out buttons in my flexigrid here is my code

$('#flex').flexOptions({
  buttons : [
   {name: 'Show Tagged', bclass: 'show tagged', onpress : control_buttons},
   {separator: true},
   {separator: true},
   {name: 'All Tagged', bclass: 'show tagged', onpress : control_buttons},
   {name: 'Single tagged', bclass: 'show tagged', onpress : control_buttons},
   {separator: true}
   ]}).flexReload();

I thought this would do the trick but it's not working any idea what I might be doing wrong

thanks
Mike

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

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

发布评论

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

评论(2

一曲爱恨情仇 2024-08-30 07:58:14

我一直在寻找完全相同的东西,但是在检查插件的源代码时没有任何反应是有道理的,因为显然没有考虑该用例。

因此,如果您不想破解该插件,您可以这样使用类名和 parent()

$('.my_edit_button').parent().parent().hide();

其中 my_edit_button中指定的值bclass参数:

{name: 'Edit', bclass: 'my_edit_button', onpress: onedit}

I was looking exactly for the same thing, however it makes sense that nothing happens when checking out the source of the plugin because that usage case was apparently not considered.

So if you don't want to hack the plugin, you can use the class name and parent() that way:

$('.my_edit_button').parent().parent().hide();

where my_edit_button is the value specified in the bclass parameter:

{name: 'Edit', bclass: 'my_edit_button', onpress: onedit}
安静被遗忘 2024-08-30 07:58:14
$(bclass_tag_goes_here).parent().hide();

这就是隐藏按钮的内容

$(bclass_tag_goes_here).parent().show();

这就是显示按钮的内容。

您可以从服务器端获取操作,匹配它们并相应地显示和隐藏。

$(bclass_tag_goes_here).parent().hide();

This is what hide the button

$(bclass_tag_goes_here).parent().show();

This is what shows it.

you can fetch the operation from the server side , match them and show and hide accordingly.

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