Some multibyte strings are not found in searches in Absolute Plug-ins

Some multibyte strings are not found in searches in Absolute Plug-ins

yasuyasu Posts: 2Questions: 1Answers: 0

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 61,821Questions: 1Answers: 10,126 Site admin
    Answer ✓

    Interesting one this.

    If you make your new type have the same search function as the default search string type, then it works:

    var numberType = DataTable.absoluteOrderNumber( [
      { value: '', position: 'bottom' },
    ] );
    
    DataTable.type(numberType, 'search', DataTable.type('string').search);
    

    I'll look at how that might be setup in the plugin.

    Allan

  • yasuyasu Posts: 2Questions: 1Answers: 0

    Your workaround solved my problem.
    Thank you.

Sign In or Register to comment.