or
var
$ = $telerik.$;
var
categoryPanelBar = $(
this
).find(
"<%=RadPanelBar1.ClientID%>"
);
alert(categoryPanelBar.get_items());
<telerik:RadWindow ID="ImpersonationWindow" runat="server" Height="200px" Width="500px" IconUrl="/Content/Images/user16.png" Animation="Fade" Modal="true" Title="User Impersonation" Behaviors="Close" KeepInScreenBounds="true" ReloadOnShow="false" DestroyOnClose="false"> <ContentTemplate> <div class="row"> <span class="label" style="width: 30%;"> <span class="small-red-bold-label">Business Unit:</span> </span> <span class="field" style="width: 65%;"> <telerik:RadComboBox ID="ImpersonatedBusinessUnitRadComboBox" runat="server" Width="275px" CausesValidation="false" DataTextField="FormalName" DataValueField="CentralBusinessUnitNo"> </telerik:RadComboBox> </span> </div> <div class="row"> <span class="label" style="width: 30%;"> <span class="small-red-bold-label">Employee:</span> </span> <span class="field" style="width: 65%;"> <telerik:RadComboBox ID="ImpersonatedEmployeeRadComboBox" runat="server" Width="275px" Height="200px" CausesValidation="false" DataValueField="EmpID" DataTextField="FullName" ShowDropDownOnTextboxClick="false" EnableLoadOnDemand="true" MarkFirstMatch="false" ItemRequestTimeout="500" EmptyMessage="Type Employee Name..." MinFilterLength="2" OnItemsRequested="ImpersonatedEmployeeRadComboBox_ItemsRequested"> </telerik:RadComboBox> </span> </div> <div class="row"><span class="label"></span><span class="field"></span></div> <div class="row"> <span class="label" style="width: 48%;"> <asp:Button ID="ImpersonateButton" runat="server" Text="Impersonate" Width="100px" OnClick="ImpersonateButton_Click" /> </span> <span class="field" style="width: 48%;"> <asp:Button ID="ResetButton" runat="server" Text="Reset" Width="100px" OnClick="ResetButton_Click" /> </span> </div> </ContentTemplate> </telerik:RadWindow>
protected void ImpersonatedEmployeeRadComboBox_ItemsRequested(object sender,RadComboBoxItemsRequestedEventArgs e) { if(!string.IsNullOrEmpty(e.Text)) { if(e.Text.Length >= 2) { List<FindEmployeeView> employees = new List<FindEmployeeView>(); // get data from data context using(CommonDataContext context = new CommonDataContext(ConfigurationManager.ConnectionStrings["CEO"].ConnectionString)) { employees = context.FindEmployeesByFullName( 0, e.Text, AnyOrganizationFilter, "|" + ImpersonatedBusinessUnitRadComboBox.SelectedValue + "|", AnyOrganizationFilter, 1).ToList(); } // databind ImpersonatedEmployeeRadComboBox.DataSource = employees; ImpersonatedEmployeeRadComboBox.DataBind(); } } }
chart.Legend.Appearance.Position.AlignedPosition = Telerik.Charting.Styles.AlignedPositions.BottomLeft;
chart.AutoLayout =
true
;
Hi, I have a dynamic user control in aspx page.
The problem is than the skin is not load correctly in IE.
The skin of the radbutton is lost and this is conflicted with radcombobox.
Any idea?
I have server RadSocialButtons on my RadSocial Share Control. The dialog sizes are working for all of the buttons except for the SendEmail button.
Here's the mark-up.
<
telerik:RadSocialShare
runat
=
"server"
ID
=
"RadSocialShare1"
UrlToShare
=
"http://www.jennalogan.com"
TitleToShare
=
"JennaLogan.com, the Internet's premiere fine jewelry lender."
DialogHeight
=
"550px"
DialogWidth
=
"950px"
onprerender
=
"RadSocialShare1_PreRender"
>
<
MainButtons
>
<
telerik:RadSocialButton
SocialNetType
=
"ShareOnFacebook"
ToolTip
=
"Share on Facebook"
DialogHeight
=
"550px"
DialogWidth
=
"990px"
/>
<
telerik:RadSocialButton
SocialNetType
=
"ShareOnTwitter"
DialogHeight
=
"480px"
DialogWidth
=
"640px"
ToolTip
=
"Tweet about this."
/>
<
telerik:RadSocialButton
SocialNetType
=
"Blogger"
DialogHeight
=
"660px"
DialogWidth
=
"950px"
ToolTip
=
"Blog about this."
/>
<
telerik:RadSocialButton
SocialNetType
=
"SendEmail"
DialogHeight
=
"550px"
DialogWidth
=
"1000px"
ToolTip
=
"Email this to a friend"
/>
</
MainButtons
>
</
telerik:RadSocialShare
>
Am I missing something?
Thx,
Lee