Hi Raj,
For better or worse, a lot of folks have moved over to the Q&A site:
ask.wireshark.org ; there's not much traffic on the -users list anymore.
What are you trying to achieve?
The reason there are only 12 frames marked as HTTP2 is because the other frames are marked as [TCP segment of a reassembled PDU] - meaning that Wireshark realizes that the frame is part of a larger (multi-frame) message and so it's only going to dissect the reassembled frame as HTTP2. This means you should be able to get all the data on that (large) later frame.
With other dissectors (including HTTP) you can get away with disabling reassembly (by disabling the TCP preference that allows subdissectors to reassemble) but with HTTP2 (at least with this trace) the HTTP2 dissector doesn't seem very happy with the result (there are lots of malformed packets). I'd actually expect the HTTP2 dissector to just say, for example, "Continuation" (or similar) in this case.
I don't know enough about HTTP2 if there's any reason this isn't done with this dissector too; you could consider opening a bug report (
https://bugs.wireshark.org ) about it.
Regards,
-Jeff