Hi there,
I try to reference my radcombobox on code behind but it dosen't work and told me that it's null !!
Here my code,
Binding !!!
I try to reference my radcombobox on code behind but it dosen't work and told me that it's null !!
Here my code,
Binding !!!
RadComboBox cbF1 = new RadComboBox();
cbF1.ID =
"cbF1";
cbF1.Style[
"Position"] = "Absolute"; cbF1.Style["Top"] = "180px"; cbF1.Style["Left"] = "180px"; cbF1.Width = 120;
cbF1.Skin =
"Simple";
cbF1.DataSource = ds.Tables[0]; cbF1.DataTextField =
"FTFIELDNAME"; cbF1.DataValueField = "FTTABLENAME"; cbF1.DataBind();
It's shown Correctly !! It's work !!
But when I wanna shake it out to get the value ...
RadComboBox
rcbF = Panel2.FindControl("cbF1") as RadComboBox;
Show me !!
"rcbF = null"
Anyone please help me !!
Thannapan.