Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escape special characters +-&|!(){}[]^"~*?:\ - e.g. \+ \* \!
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Get name of un checked boxes for a list of checkboxes

I have to send list of trades in a form in a single message in chatroom. for each trade, there would be a checkboxes. User would select acknowledge trades partially (let's say 10 trades are sent and user select 4 corresponding checkboxes for 4 trades, and left 6 unchecked ). So when response is received, it's recieving name and value for trades which are selected at checkboxes. Is there way to get both (selected and unselected checkboxes information)?

  
  
Posted 3 months ago
Votes Newest

Answers