|
<ej:DropDownList ID="TitleCodeDropDownList" runat="server"
Width="78" Height="20" DataSourceID="obj1" ClientSideOnCreate="oncreate" DataTextField="year_of_service" DataValueField="memberId" DataSourceCachingMode="ViewState"></ej:DropDownList>
<script>
function oncreate() {
var value = <%= HttpContext.Current.Session("MyVariable").ToString()%>;
this.setModel({ value: value });
}
</script> |