Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
<
EditFormSettings
EditFormType
=
"Template"
>
FormTemplate
table
tr
td
Check:
</
asp:CheckBox
ID
"CheckBox1"
runat
"server"
AutoPostBack
"true"
OnCheckedChanged
"CheckBox1_CheckedChanged"
/>
ShipCity:
telerik:RadTextBox
"txt_ShipCity"
Text='<%#Bind("ShipCity")%>'
Visible="false">
asp:Button
"btnUpdate"
Text='<%# (Container is GridEditFormInsertItem) ? "Insert" : "Update" %>'
runat="server" CommandName='<%# (Container is GridEditFormInsertItem) ? "PerformInsert" : "Update" %>'>
"btnCancel"
Text
"Cancel"
CausesValidation
"False"
CommandName
></
protected
void
CheckBox1_CheckedChanged(
object
sender, EventArgs e)
{
CheckBox check = (CheckBox)sender;
GridEditableItem edit = (GridEditableItem)check.NamingContainer;
RadTextBox txt = (RadTextBox)edit.FindControl(
);
if
(check.Checked)
txt.Visible =
true
;
}
else
false