Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
paulwalker
Creator II
Creator II

Display in Textbox

Hi Community,

I need to show Navigation in Textbox...

I have one Drill Down group

Division-->Category-->Product

This Drilldown group i took in Listbox..

If i am select Division drill into Category drill into Product.

Thanks in Advance..

1 Solution

Accepted Solutions
Digvijay_Singh

Improved expression to display arrows based on selection -

=GetFieldSelections(Division)&

  if(len(GetFieldSelections(Category))>0 and len(GetFieldSelections(Division))>0,'-->')&

GetFieldSelections(Category)&

  if(len(GetFieldSelections(Product))>0 and len(GetFieldSelections(Category))>0 ,'-->')&

GetFieldSelections(Product)

View solution in original post

2 Replies
Digvijay_Singh

Something like below may be -

You can use getfieldselections, I am using PE, don't have access to others QVW, so sharing the sample expression in case it can help -

=GetFieldSelections(Division)&'-->'&GetFieldSelections(Category)&'-->'&GetFieldSelections(Product)

Capture.JPG

Digvijay_Singh

Improved expression to display arrows based on selection -

=GetFieldSelections(Division)&

  if(len(GetFieldSelections(Category))>0 and len(GetFieldSelections(Division))>0,'-->')&

GetFieldSelections(Category)&

  if(len(GetFieldSelections(Product))>0 and len(GetFieldSelections(Category))>0 ,'-->')&

GetFieldSelections(Product)