Dynamically created textbox three dots are appearing.
once check below code
protected void rdGrdXmlFields_ItemDataBound(object sender, GridItemEventArgs e)
{
CreateExpandCollapseButton(e.Item, "FIELD_ID");
if (e.Item.ItemType == GridItemType.Item || e.Item.ItemType == GridItemType.AlternatingItem || e.Item.ItemType == GridItemType.NestedView)
{
if (hidUpdaloadData.Value == "")
{
TextBox txtDestFieldName = new TextBox();
txtDestFieldName.Width = Unit.Pixel(400);
txtDestFieldName.CssClass = "clsDestField";
//txtDestFieldName.EnableViewState = true;
txtDestFieldName.ID = e.Item.Cells[8].Text;
e.Item.Cells[5].Controls.Add(txtDestFieldName);
}
else
{
DropDownList objDropDown = new DropDownList();
objDropDown.ID = e.Item.Cells[8].Text;
objDropDown.CssClass = "clsDestField";
objDropDown.Width = Unit.Pixel(400);
//objDropDown.EnableViewState = true;
e.Item.Cells[5].Controls.Add(objDropDown);
}
TextBox txtConstFieldName = new TextBox();
txtConstFieldName.ID = "txtConstField";
txtConstFieldName.CssClass = "clsConstField";
//txtConstFieldName.EnableViewState = true;
e.Item.Cells[6].Controls.Add(txtConstFieldName);
}
}