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
Post a Comment