When I raise the click event on the server side and onIntemClick a grid is bind inside it. everything works fine.
When I have many panels bar open the page becomes very long. When I click to expand the Panel Bar, the Page move for a moment at the beginning and then it is repositioned on the panel giving a curious effect "Table Tennis". The URL appears a strange # as Mypage.aspx #. This does not occur WITHOUT the RadAjaxPAnel as with the Full post back you can not see the effect of expansion.
this does not happen if the size of the panel bars does not exceed the length of the page. How can we remove this "swap" of the page?
protected void RadButton12_Click(object sender, EventArgs e){ RadComboBox1.SelectedValue = RadComboBox1.SelectedValue + 1;}function OnClientAppointmentResizeEnd(sender, args) { var start = args.get_appointment().get_start(); var end = args.get_targetSlot().get_endTime(); var appDuration = Math.ceil((end.getTime() - start.getTime()) / (60000)); // show in minutes appointment.set_subject(appDuration); //alert(appDuration); }void IPostBackEventHandler.RaisePostBackEvent(string eventArgument){ if (eventArgument.Equals("Refresh", StringComparison.InvariantCultureIgnoreCase)) Refresh();}<%= Page.GetPostBackEventReference(FormView.FindControl("anotaciones"), "Refresh") %>
((sender as Control).FindControl("anotaciones") as Anotaciones).Refresh();DataTable
dt = new DataTable();
dt.Columns.Add(
"Programs");
dt.Columns.Add(
"Values");
 
dt.Rows.Add(dt.NewRow());
dt.Rows[0][
"Programs"] = "ABC";
dt.Rows[0][
"Values"] = "10";
dt.Rows.Add(dt.NewRow());
dt.Rows[1][
"Programs"] = "DEF";
dt.Rows[1][
"Values"] = "20";
dt.Rows.Add(dt.NewRow());
dt.Rows[2][
"Programs"] = "GHI";
dt.Rows[2][
"Values"] = "30";
dt.Rows.Add(dt.NewRow());
dt.Rows[3][
"Programs"] = "JKL";
dt.Rows[3][
"Values"] = "40";
dt.Rows.Add(dt.NewRow());
dt.Rows[4][
"Programs"] = "MNO";
dt.Rows[4][
"Values"] = "50";
dt.Rows.Add(dt.NewRow());
dt.Rows[5][
"Programs"] = "PQR";
dt.Rows[5][
"Values"] = "60";
 
RadChart3.DataSource = dt;
RadChart3.DataBind();
for the above code I get the barchart, But I am not getting the Programs names like abc, def as axis lable value.
Instead of 1,2,3..6 I want abc, def etc. please someone help me.