Search Filter help
Search Filter help
fusionzone
Posts: 7Questions: 0Answers: 0
Is there a way to call the removeSort function when a value is entered in the search box? and then call the enableSort if the value is removed? I have been trying to get this to work for several days to no avail.
[code]
function removeSort(){
$( "#example tbody" ).sortable( "option", "disabled", true );
}
function enableSort(){
$( "#example tbody" ).sortable( "option", "disabled", false );
}
[/code]
[code]
function removeSort(){
$( "#example tbody" ).sortable( "option", "disabled", true );
}
function enableSort(){
$( "#example tbody" ).sortable( "option", "disabled", false );
}
[/code]
This discussion has been closed.
Replies
Allan