or
Dim txt As TextBox = CType(e.Item.FindControl("txtValue"), TextBox) txt.TextMode = TextBoxMode.MultiLineI am trying to figure out how to do this same logic on the client side in javascript.
function processValueChange(sender, rowID) { var myTextValue = row.findElement("Value"); myTextValue = Multiline; }

Hello,
Have custom EditFormSettings with a delete button that is wired to a postback event handler.
<EditFormSettings>
...
<FormTemplate>
...
<telerik:RadButton ID="btnDelete" Text="Delete" Visible='<%# (Container is GridEditFormInsertItem) ? false : true %>' runat="server" CausesValidation="false" Icon-PrimaryIconCssClass="rbRemove" Icon-PrimaryIconLeft="4" Icon-PrimaryIconTop="4" onclick="btnDelete_Click"/>
dataContext.TableName.DeleteOnSubmit(item);
sdb.SubmitChanges();
rgFormEmail.DataBind()
Grid is shown and edit button is hidden. Code below resolves but why would the edit column be hidden?
rgFormEmail.MasterTableView.GetColumn("BtnEdit").Visible = true;

<EditFormSettings EditFormType="Template"> <FormTemplate> <asp:DropDownList ID="AreaOfPracticeSelect" runat="server" AutoPostBack="true" DataSourceID="AreaOfPracticeDataSource" DataTextField="mps_name" DataValueField="mps_areaofpractice_lookupid" AppendDataBoundItems="true"> <asp:ListItem Value="" Text="" /> </asp:DropDownList> <h5>Criteria</h5> <asp:PlaceHolder ID="CriteriaPlaceHolder" runat="server" /> </FormTemplate></EditFormSettings>protected void AreaOfPracticeGrid_ItemCreated(object sender, GridItemEventArgs e){ if (e.Item is GridEditableItem && e.Item.IsInEditMode) { DropDownList areaOfPracticeSelect = e.Item.FindControl("AreaOfPracticeSelect") as DropDownList; if (areaOfPracticeSelect != null && !string.IsNullOrEmpty(areaOfPracticeSelect.SelectedValue)) { Guid areaOfPracticeId = new Guid(areaOfPracticeSelect.SelectedValue); LoadCriteria(e.Item as GridEditFormItem, areaOfPracticeId); } }}