Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
90
Dorpdown showing the hidden field value after selecting
posted

HI 

i am using infragistics V8.3 and m stuck with the problem regarding dropdown menu showing value of the hidden field.

1. whats actually happening is i am returning a datatable from the database and bind it to the web combo box

2. then in "Initialise_layout " i make the first column hidden.

3. but when i click on it after runnin the web site it shows the hidden value.

 

here's the code so far

 

at page load:

 

        WebCombo2.DataSource = ds.Tables[0];

        WebCombo2.DataMember = "StageID";

        WebCombo2.DataValue = "StageName";

        WebCombo2.DataBind();

 

at initialise layout:

        e.Layout.Bands[0].Columns[0].Hidden = true;