extjs - Possible to filter user stories on name starts with? -


is possible filter user stories on name? example: filters: [{properrty: 'name', operator: 'startswith', value: 'epic'}]

i using 2.0p5 rally sdk. there documentation can @ app sdk? explains querying on different attributes?

there isn't startswith operator, can use contains:

filters: [{property: 'name', operator: 'contains', value: 'epic'}] 

all possible values filter operators can found here:

https://help.rallydev.com/apps/2.0p5/doc/#!/api/rally.data.queryfilter-cfg-operator

you can use filterby method further narrow down result set once store has been loaded server:

store.filterby(function(record) {     return record.get('name').indexof('epic') === 0; }); 

the full app sdk documentation (including guides , links wsapi documentation) can found here:

https://help.rallydev.com/apps/2.0p5/doc/

i recommend upgrading recent version of sdk app development (2.0rc2 of writing).

https://help.rallydev.com/apps/2.0rc2/doc/


Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -