Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi
how i have list box like year(2001,2002,2003,2004)
i need to select defautly 2001,2014?
how can put condition in list box?
Use a trigger in the opening of the document or of the page, you can also use a trigger on a button
in all the cases use "Select in Field" as action, insert yhe field of the year (Ex. YearField)
and insert the search condition:
YearField>=2001<=2014
let me know
see attachment for the trigger
am not able to see search string and field evnt trigger for on select and on change
Hi sanjeev, Massimo image was from document properties, in the configuration menu
yes, in menù
settings --> document properties--> triggers tab --> field event trigger
and the expression is
=if(GetSelectedCount( y )=0, '(2013|2014)', '(' & GetFieldSelections( y,'|' ) &')' )
if nothing selected (0) --> 2013 2014
else --> the selection (Getfieldselctions)
if you add the expression in a textbox you can see the search string