jqGrid jQuery UI按钮包装在工具栏中

时间:2010-05-14 02:55:50

标签: jquery-ui button jqgrid

我有一个jQuery UI按钮,我放在jqGrid工具栏中,但按钮的内容是包装。我试图通过使用CSS white-space属性来防止包装无效。

以下是正在发生的事情的快照:

alt text http://www.freeimagehosting.net/uploads/c455ebf64e.png

以下是我尝试解决问题的两个代码段:

    $("#t_imageList").css("white-space", "nowrap").html('<button>Add</button>');

    $("#t_imageList button").button({
        icons: {primary: 'ui-icon-plus'},
        text: true
    });

和/或

$("#t_imageList button").css("white-space", "nowrap").button({
    icons: {primary: 'ui-icon-plus'},
    text: true
});

有人遇到过同样的问题吗?如果是这样,你的解决方案是什么?

1 个答案:

答案 0 :(得分:1)

这是一个重复的问题:

jQuery UI Dialog Button Icons

实际上这是版本的问题。我使用的是jquery 1.8但1.7 css文件。一个简单的疏忽。