这是我的问题:我有这个:
$("table").selectable({
filter: "td",
start: function()
{
所以,每个td
和每个tr
都是"可选",但是,我做了类似的事情:
selecting: function(){
if(posicionInicial.posy == arregloObjetos[1].posy) //Esta seleccionando por columnas
{
if(direccionSeleccion.posy != posicionInicial.posy)
{
$(".ui-selectee").unbind();
}
}
}
我想"解开" " Selectable"其他" td" s不在同一行或列中......(请记住,我需要从内部切割事件......)
但是我试着用#34;解开"由jqueryUI创建的类(" .ui-selectee")......但它不起作用......
请帮忙吗?
感谢
答案 0 :(得分:0)
如何仅将selectable应用于第一行?
$("table tr:first").selectable({
答案 1 :(得分:0)
试试这个。
添加了取消选项。
此取消选项决定是否取消
$("table").selectable({
filter: "td",
cancel: ".unbind",
selected: function(){
// [some td that you want unbind].addClass("unbind");
}
});