mirror of
https://github.com/OpenNebula/one.git
synced 2025-03-13 12:58:17 +03:00
bug #1979: Selected IDs are not detected when the table page is visible.
This commit is contained in:
parent
45af9a3c55
commit
305747d4ed
@ -614,9 +614,9 @@ $(document).ready(function(){
|
||||
dataTable_acls.fnFilter( $(this).val() );
|
||||
})
|
||||
|
||||
//addElement([
|
||||
// spinner,
|
||||
// '','','','','',''],dataTable_acls);
|
||||
dataTable_acls.on('draw', function(){
|
||||
recountCheckboxes(dataTable_acls);
|
||||
})
|
||||
|
||||
Sunstone.runAction("Acl.list");
|
||||
|
||||
|
@ -1421,6 +1421,10 @@ $(document).ready(function(){
|
||||
dataTable_clusters.fnFilter( $(this).val() );
|
||||
})
|
||||
|
||||
dataTable_clusters.on('draw', function(){
|
||||
recountCheckboxes(dataTable_clusters);
|
||||
})
|
||||
|
||||
Sunstone.runAction("Cluster.list");
|
||||
|
||||
dialogs_context.append('<div title=\"'+tr("Create cluster")+'\" id="create_cluster_dialog"></div>');
|
||||
|
@ -1117,6 +1117,10 @@ $(document).ready(function(){
|
||||
dataTable_datastores.fnFilter( $(this).val() );
|
||||
})
|
||||
|
||||
dataTable_datastores.on('draw', function(){
|
||||
recountCheckboxes(dataTable_datastores);
|
||||
})
|
||||
|
||||
Sunstone.runAction("Datastore.list");
|
||||
|
||||
setupCreateDatastoreDialog();
|
||||
|
@ -982,9 +982,10 @@ $(document).ready(function(){
|
||||
dataTable_files.fnFilter( $(this).val() );
|
||||
})
|
||||
|
||||
//addElement([
|
||||
// spinner,
|
||||
// '','','','','','','','','','','',''],dataTable_files);
|
||||
dataTable_files.on('draw', function(){
|
||||
recountCheckboxes(dataTable_files);
|
||||
})
|
||||
|
||||
Sunstone.runAction("File.list");
|
||||
|
||||
setupCreateFileDialog();
|
||||
|
@ -618,13 +618,14 @@ $(document).ready(function(){
|
||||
]
|
||||
});
|
||||
|
||||
//addElement([
|
||||
// spinner,
|
||||
// '','','','','',''],dataTable_groups);
|
||||
$('#group_search').keyup(function(){
|
||||
dataTable_groups.fnFilter( $(this).val() );
|
||||
})
|
||||
|
||||
dataTable_groups.on('draw', function(){
|
||||
recountCheckboxes(dataTable_groups);
|
||||
})
|
||||
|
||||
Sunstone.runAction("Group.list");
|
||||
setupCreateGroupDialog();
|
||||
setupGroupQuotasDialog();
|
||||
|
@ -982,10 +982,10 @@ $(document).ready(function(){
|
||||
dataTable_hosts.fnFilter( $(this).val() );
|
||||
})
|
||||
|
||||
//preload it
|
||||
//addElement([
|
||||
// spinner,
|
||||
// '','','','','','','','','','','',''],dataTable_hosts);
|
||||
dataTable_hosts.on('draw', function(){
|
||||
recountCheckboxes(dataTable_hosts);
|
||||
})
|
||||
|
||||
Sunstone.runAction("Host.list");
|
||||
|
||||
setupCreateHostDialog();
|
||||
|
@ -1311,9 +1311,10 @@ $(document).ready(function(){
|
||||
dataTable_images.fnFilter( $(this).val() );
|
||||
})
|
||||
|
||||
//addElement([
|
||||
// spinner,
|
||||
// '','','','','','','','','','','',''],dataTable_images);
|
||||
dataTable_images.on('draw', function(){
|
||||
recountCheckboxes(dataTable_images);
|
||||
})
|
||||
|
||||
Sunstone.runAction("Image.list");
|
||||
|
||||
setupCreateImageDialog();
|
||||
|
@ -324,6 +324,10 @@ $(document).ready(function(){
|
||||
dataTable_marketplace.fnFilter( $(this).val() );
|
||||
})
|
||||
|
||||
dataTable_marketplace.on('draw', function(){
|
||||
recountCheckboxes(dataTable_marketplace);
|
||||
})
|
||||
|
||||
tableCheckboxesListener(dataTable_marketplace);
|
||||
onlyOneCheckboxListener(dataTable_marketplace);
|
||||
|
||||
|
@ -4479,9 +4479,10 @@ $(document).ready(function(){
|
||||
dataTable_templates.fnFilter( $(this).val() );
|
||||
})
|
||||
|
||||
//addElement([
|
||||
// spinner,
|
||||
// '','','','',''],dataTable_templates);
|
||||
dataTable_templates.on('draw', function(){
|
||||
recountCheckboxes(dataTable_templates);
|
||||
})
|
||||
|
||||
Sunstone.runAction("Template.list");
|
||||
setupInstantiateTemplateDialog();
|
||||
setupCreateTemplateDialog();
|
||||
|
@ -928,6 +928,10 @@ $(document).ready(function(){
|
||||
dataTable_users.fnFilter( $(this).val() );
|
||||
})
|
||||
|
||||
dataTable_users.on('draw', function(){
|
||||
recountCheckboxes(dataTable_users);
|
||||
})
|
||||
|
||||
Sunstone.runAction("User.list");
|
||||
|
||||
setupCreateUserDialog();
|
||||
|
@ -2949,6 +2949,10 @@ $(document).ready(function(){
|
||||
dataTable_vMachines.fnFilter( $(this).val() );
|
||||
})
|
||||
|
||||
dataTable_vMachines.on('draw', function(){
|
||||
recountCheckboxes(dataTable_vMachines);
|
||||
})
|
||||
|
||||
|
||||
|
||||
//addElement([
|
||||
|
@ -1578,9 +1578,10 @@ $(document).ready(function(){
|
||||
dataTable_vNetworks.fnFilter( $(this).val() );
|
||||
})
|
||||
|
||||
//addElement([
|
||||
// spinner,
|
||||
// '','','','','','','',''],dataTable_vNetworks);
|
||||
dataTable_vNetworks.on('draw', function(){
|
||||
recountCheckboxes(dataTable_vNetworks);
|
||||
})
|
||||
|
||||
Sunstone.runAction("Network.list");
|
||||
|
||||
setupCreateVNetDialog();
|
||||
|
Loading…
x
Reference in New Issue
Block a user