Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
kishorj1982
Creator II
Creator II

Alignment of list box and textbox.

Hi All,

PFA

I am using combination of listbox and textbox for fulfilling my requirement.Can you pleasesuggest how should i align in perfectly so that that will be visible as a single object.

Below are the problems for the filter.

  1. This filter is not easily noticeable, font looks very small
  2. Top border is not visible, partially overlapped with blue header bar
  3. Checkboxes and labels are not aligned horizontally
  4. White background color is visible below each label

Thanks

3 Replies
vinieme12
Champion III
Champion III

buddy , you are complicating things unnecessarily

Just add another inline table that links to the ActiveInactiveFlag field, as below and Create a Listbox with the field

"DisplayFlag"

AddressBook:

LOAD

    

 

      Pick(match(Search_Type,'C','CP','CX'),'Active','Active','Inactive') as ActiveInactiveFlag

    

//     if(Search_Type='C','Active',if(Search_Type='CP','Active',if(Search_Type='CX','InActive',if(Search_Type<>'C','ALL',if(Search_Type<>'CP','ALL',if(Search_Type<>'CX','ALL',

//     if(Search_Type='C','ALL',if(Search_Type='CP','ALL',if(Search_Type='CX','ALL',)))))))))

//     as ActiveInactiveFlag,

FROM

(qvd);

load * inline [

ActiveInactiveFlag , DisplayFlag

Active,ALL

Inactive,ALL

Active,Active

Inactive,Inactive

];

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
vinieme12
Champion III
Champion III

for formatting the listbox see below

listbox.PNG

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
el_aprendiz111
Specialist
Specialist

Hi,

all.png