Process shown when Datatables is build
Process shown when Datatables is build
Hi Allan,
Here I am again ;-).
I'm a bit further with my online explorer, can be found on http://wwmci.familieselles.nl/ , I added contexmenu with alert and many more, but I have a questions about the usage of DataTables.
As you can see on my site the table has a process DIV when the DataTables are loaded, but as you may also can see it stops sooner then that the DataTable is finished processing the header and the sorting. I have two questions about it:
1) Am I using your software on the right way
(I now completely rebuild my right part of the pages each time the user clicks once on the plus image or double clicks on the folder, or clicks once on the folder in the right part of the screen
[code]
$.post('include/files.php',{folder: folder}, function onSelect(data){
// Reload data on page without pagerefresh
$("#files").html(data);
});
[/code]
)
2) How can I add a process DIV to DataTables which hides when the whole DataTables is ready
Hope you have time for this question.
Tnx in advance
Greetings,
Wim
Here I am again ;-).
I'm a bit further with my online explorer, can be found on http://wwmci.familieselles.nl/ , I added contexmenu with alert and many more, but I have a questions about the usage of DataTables.
As you can see on my site the table has a process DIV when the DataTables are loaded, but as you may also can see it stops sooner then that the DataTable is finished processing the header and the sorting. I have two questions about it:
1) Am I using your software on the right way
(I now completely rebuild my right part of the pages each time the user clicks once on the plus image or double clicks on the folder, or clicks once on the folder in the right part of the screen
[code]
$.post('include/files.php',{folder: folder}, function onSelect(data){
// Reload data on page without pagerefresh
$("#files").html(data);
});
[/code]
)
2) How can I add a process DIV to DataTables which hides when the whole DataTables is ready
Hope you have time for this question.
Tnx in advance
Greetings,
Wim
This discussion has been closed.
Replies
Looking good!
1. Yes - that looks like a reasonable approach to take for this application.
2. DataTables has it's own built in processing display, which you can use by enabling bProcessing are init time, but perhaps the best way of doing it here would be to use your current processing element ("processing_right") and hide that when DataTables completes it's processing (rather than at the end of the XHR, which I presume is what is happening at the moment). You could use fnInitComplete() ( http://datatables.net/usage#fnInitComplete ) to do this - it fires when DataTables finishes it's initialisation.
Hope this helps,
Allan
Tnx for the tip. It helped. I didn't uploaded it to the server yet, but it is perfect on my local machine!!!!!
I shouldn't know what I could do without your tool.
Is it maybe possible that you make a kind of page on your datatables.net where users can upload screenshots so other users can see how your software is being used? This is also good for you :-)
Have a nice weekend
Greetings,
Wim
I'll add a forum thread for that kind of thing just now to get the ball rolling.
Allan