On my webform I have a dropdownlist.
In this dropdownlist I want to display ID and description.
In my datasource I made a field ID_Description:
ID_Description = ID.trim() + " " + Description.trim();
I used this field as DataTextField in the dropdownlist.
Problem: ID and Description have not the same alignment for all items because the length of ID is not the same for all records. I don't want to use a fixed font.
So I want to display ID and Description in two colums in the dropdownlist.
Is this possible?
Thanks.
Ilse
In this dropdownlist I want to display ID and description.
In my datasource I made a field ID_Description:
ID_Description = ID.trim() + " " + Description.trim();
I used this field as DataTextField in the dropdownlist.
Problem: ID and Description have not the same alignment for all items because the length of ID is not the same for all records. I don't want to use a fixed font.
So I want to display ID and Description in two colums in the dropdownlist.
Is this possible?
Thanks.
Ilse