or
public static void RadGrid1_ItemCommand(object sender, GridCommandEventArgs e) { RadGrid RadGrid1 = (RadGrid)sender; if (e.CommandName == "AddToCart") { if (RadGrid1.SelectedIndexes.Count == 0) { RadWindowManager1.RadAlert("No documents have been selected", 250, 100, "Add to Document Cart", ""); return; } GridCommandItem Item = (GridCommandItem)e.Item; ImageButton btnAddToCart = (ImageButton)e.Item.FindControl("btnAddSelectedToCart"); .... ..... rest of code... }}
// Function that is called from the window to "get back" the value and fill the field tbField
function test(args) { RadAjaxManager1.ajaxRequest(args);}"row that is edited".FindControl("tbField") as TextBox<
telerik:RadComboBox ID="ddlEmployee" runat="server" Width="190px" Height="100px"
EmptyMessage="Select employee " EnableLoadOnDemand="True" EnableVirtualScrolling="true"
OnItemsRequested="RadComboBox1_ItemsRequested" DataTextField="Name" DataValueField="EmpNo"
Skin="WindowsXP" OffsetX="2" AllowCustomText="True" EnableEmbeddedSkins="False"
EnableAjaxSkinRendering="False" EnableEmbeddedBaseStylesheet="False"
EnableItemCaching="True" ShowMoreResultsBox="True">
</telerik:RadComboBox>
Can someone help me how to improve the performance?
Any suggestions would be appreciated.
Thanks & Regards,
Kiran
http://www.telerik.com/community/forums/aspnet-ajax/window/radwindow-with-transparent-title-bar.aspx