or
Are there any plans to have Typescript declarations for the various client side controls of the ASP.Net AJAX product? I'm developing a project in typescript and using the client APIs of the various controls a lot (TreeView, Menu's, etc) and having declarations would greatly help.
Thanks!
Guy
<
asp:CheckBox
runat
=
"server"
Text
=
"Vendor"
ID
=
"ThirdPartyVendorCheckbox"
/>
<
asp:HiddenField
runat
=
"server"
ID
=
"hiddenThirdPartyVendor"
Value='<%# Eval("thirdparty_vendor") %>' />
protected
void
RadListView1_ItemDataBound(
object
sender, RadListViewItemEventArgs e)
{
if
(e.Item
is
RadListViewEditableItem && e.Item.IsInEditMode)
{
CheckBox chkbox = e.Item.FindControl(
"ThirdPartyVendorCheckbox"
)
as
CheckBox;
HiddenField hf = e.Item.FindControl(
"hiddenThirdPartyVendor"
)
as
HiddenField;
string
txtVal = hf.Value;
if
(txtVal !=
"Y"
)
chkbox.Checked =
true
;
else
chkbox.Checked =
false
;
}
}