How to use <select > fileter in camunda table?

I want to use select tags inside my form and after filetering by it’s value i should get only filtered values in my selectedDocuments array , i have made this in javascript but i want to implement this logic in angular cam-sdk-form :slight_smile:
here is my javascript code:
//selection code
$(document).ready(function($) {

    $('#mySelector').change( function(){
      var selection = $(this).val();
      $('table')[selection? 'show' : 'hide']();
      
      if (selection) {
        $.each($('#myTable tbody tr'), function(index, item) {
          $(item)[$(item).is(':contains('+ selection  +')')? 'show' : 'hide']();
        });
      }
        
    });
});

here is my html code:
> >