How to size a listbox so it fills a panel?

  • Thread starter Thread starter Bogdan
  • Start date Start date
B

Bogdan

Hi,

Is there a way I could size a listbox so it fills its parent panel? The
panel has GroupingText set.
If not, can I do the opposite? That is, can I size the parent panel so it
fits tightly around the list box?

Thanks,
Bogdan
 
Hi,

Is there a way I could size a listbox so it fills its parent panel?  The
panel has GroupingText set.
If not, can I do the opposite?  That is, can I size the parent panel soit
fits tightly around the list box?

Thanks,
Bogdan

Did you already try to use javascript for this?

document.getElementById(control_client_id).style.width =
document.getElementById(panel_client_id).style.width
 
Hi,

Is there a way I could size a listbox so it fills its parent panel?  The
panel has GroupingText set.
If not, can I do the opposite?  That is, can I size the parent panel soit
fits tightly around the list box?

Thanks,
Bogdan

Did you already try to use javascript for this?

document.getElementById(control_client_id).style.width =
document.getElementById(panel_client_id).style.width
 
Back
Top