How to save value in ComboBox after refreshing the Rally Dashboard -


so question pertains combobox value custom app created.

i've got app on rally dashboard, noticed other in-house rally apps, if choose particular combobox value filter on , refresh page, last used filter still applied data.

is there way can mimic behavior custom app? follows default behavior in selecting first value possible.

(note: know can use 'value' property set default value know how make saves/responds user selects on page reload).

any appreciated!

all best, masterme2

as long you're using sdk 2.0 totally supported. check out guide here on maintaining state: https://help.rallydev.com/apps/2.0/doc/#!/guide/state

basically need configure combobox stateful. here example making combobox of defect priorities stateful:

this.add({     xtype: 'rallyfieldvaluecombobox',     model: 'defect',     field: 'priority',     stateful: true,     stateid: this.getcontext().getscopedstateid('priority') }); 

the relevant properties stateful , stateid.


Comments

Popular posts from this blog

javascript - oscilloscope of speaker input stops rendering after a few seconds -

javascript - gulp-nodemon - nodejs restart after file change - Error: listen EADDRINUSE events.js:85 -

Fatal Python error: Py_Initialize: unable to load the file system codec. ImportError: No module named 'encodings' -