on 2016 Feb 10 2:37 PM
Hi Guys,
I want to get row count after filtering in sapui table.
How can I do that?
https://fiddle.jshell.net/jgj2wvkj/99/
Example :
I'm filtering first name for "Kenya".
How to do get result length. (This example : 1)
Best Regards,
Burak Oral
Request clarification before answering.
https://fiddle.jshell.net/jgj2wvkj/100/
You can make use of 'change' event on the table bindings.
var oBindings = oTable.getBinding("rows");
oBindings.attachChange(function(oEvent){
alert("Count : " + oEvent.getSource().iLength);
});
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
89 | |
11 | |
9 | |
8 | |
7 | |
5 | |
4 | |
4 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.