how to determine that on the input search field "keyboard return" has been fired...

how to determine that on the input search field "keyboard return" has been fired...

holstyBoyholstyBoy Posts: 4Questions: 1Answers: 0

i do maintain a large dataset of about 120'000 records, so the default option while typing away and search is no option for me. i did set the table option = search: {return: true}.

well it's working but after hitting return sometimes the search takes long as well and i want to show a "spinner" while its filtering. i give it serveral tries but can't figure out either:

  • what the right event would be to show the spinner after "return" has been keyboarded till the event draw is happening
  • to grab the input field by its id (tried to grab "dt-search-0"

any idea ,maybe even help?

cheers

Answers

  • kthorngrenkthorngren Posts: 20,346Questions: 26Answers: 4,776

    Do you have processing set true? See this example. When the search request is sent to the server the processing indicator is shown.

    If you want to show your own spinner then maybe the processing event will do what you want.

    Kevin

  • holstyBoyholstyBoy Posts: 4Questions: 1Answers: 0

    hi kevin,

    i´m for now on client-side operation as i am using a google sheet as the javascript environment.

    the processing event fires and i can capture BUT it does not fire if i have input on my search ...

    my best guess is that i cannot implement server-side ajax...
    if you want to you may have a look here: https://hopto.selfhost.co/teilekatalog/

    any tipps, hints are very much apprechiated
    cheers
    tomek

  • allanallan Posts: 61,786Questions: 1Answers: 10,114 Site admin

    Try this:

    let table = $('#teileKatalog').DataTable();
    
    $('div.dt-search input').on('keypress', function (e) {
        if (e.key === 'Enter') {
            table
                .one('draw', function () {
                    table.processing(false);
                })
                .processing(true);
        }
    });
    

    That uses the DataTables processing() display.

    The built in -feature search feature doesn't currently use the processing display. It perhaps should to allow for this sort of thing. I'll probably include an option for that in future I think.

    Allan

  • holstyBoyholstyBoy Posts: 4Questions: 1Answers: 0

    hi allan, it seems i'm too blond for getting it to work.... here is my main function being called after the dom loading:

    ` function afterDataLoaded(result){
    document.getElementById("progressBar").classList.add("invisible");
    const headers = result.headers.map(header => {
    return {title: header};
    });

        if ( $.fn.dataTable.isDataTable( '#teileKatalog' ) ) {
            table = $('#teileKatalog').DataTable();
        }
        else {
            table = $('#teileKatalog').DataTable( {
              language: {url: 'https://cdn.datatables.net/plug-ins/1.11.5/i18n/de-DE.json'},
              processing: true,
              order: [],
              search: {return: true},
              layout: {
                  topStart: {
                      pageLength: {
                          menu: [ 5, 10, 25, 50, 100 ]
                      }
                  },
              },
              columns: headers,
              data: result.data
            });
        }
        $('div.dt-search input').on('keypress', function (e) {
          console.log(e);
            if (e.key === 'Enter') {
                table
                    .one('draw', function () {
                        table.processing(false);
                    })
                    .processing(true);
            }
        });
      }
    

    `
    i do not get any "progressing" info nor an error message. it just worked the same as before, meaning not telling the user that is needs some time for filtering. i do not do any server side ajax whatsoever coding.

    would there be anyway a chance to show a progress indicator? i did exercisse with my own search input field, having the search input given to the datatable function to search and draw but even on that exercise my own spinner was not popping up...

    cheers & grateful for another thought ...
    cheers

  • kthorngrenkthorngren Posts: 20,346Questions: 26Answers: 4,776

    Allan's code does work. The problem is the language.url option is an asynchronous fetch of the language file. Datatables doesn't complete its initialization until the language file is returned. This means the keypress event handler executes before the table variable is assigned the Datatables API. Move it into initComplete. I built this example based on your code:
    https://live.datatables.net/niyapeji/1/edit

    I noticed that hitting enter with an empty input causes the processing animation to remain because there is no draw event fired since there is no search taking place. Added $('div.dt-search input').val().length to the if statement to stop this issue.

    Kevin

  • kthorngrenkthorngren Posts: 20,346Questions: 26Answers: 4,776

    Actually $('div.dt-search input').val().length isn't the correct solution. A comparison of the input to the current search term is needed. If they are the same no search will take place. Updated example:
    https://live.datatables.net/tafawiba/1/edit

    Kevin

  • holstyBoyholstyBoy Posts: 4Questions: 1Answers: 0

    hi kevin,

    its working like a charme!!!!!! i owe you a glass of milk B)
    this goes true for allen as well!!!!

    cheers & thank you sooo much!!!!!
    tomek

Sign In or Register to comment.