Is the response in the following thread still valid given that it's 5 years old now?
http://www.telerik.com/forums/tab-getting-cut-off-on-multi-row

I have a user control creates a control which includes a RadDateTimePicker. The datetimepicker has a SelectedDateChanged event that fires and runs the code accordingly. Since it is dynamically created, I need to dynamically add it to the RadAjaxManager that already exists. My current approach doesn't seem to work, and I get a full postback.
User Control
public partial class CategoryHolder : System.Web.UI.UserControl { public string _category; public string _mptt; public DateTime _startDate; public DateTime _endDate; public EventHandler startDateChanged; public EventHandler endDateChanged; public string Category { get { return _category; } set { _category = value; } } public string MPTT { get { return _mptt; } set { _mptt = value; } } public DateTime StartDate { get { return _startDate; } set { _startDate = value; } } public DateTime EndDate { get { return _endDate; } set { _endDate = value; } } protected void Page_Init(object sender, EventArgs e) { } protected void Page_Load(object sender, EventArgs e) { Label lbl = new Label(); HiddenField hf = new HiddenField(); RadDateTimePicker start = new RadDateTimePicker(); RadDateTimePicker end = new RadDateTimePicker(); start.AutoPostBack = true; start.SelectedDateChanged += new Telerik.Web.UI.Calendar.SelectedDateChangedEventHandler(start_SelectedDateChanged); start.ClientIDMode = System.Web.UI.ClientIDMode.Static; start.ID = MPTT + "StartControl"; start.DatePopupButton.Visible = false; start.TimePopupButton.Visible = false; end.AutoPostBack = true; end.SelectedDateChanged += new Telerik.Web.UI.Calendar.SelectedDateChangedEventHandler(end_SelectedDateChanged); end.ClientIDMode = System.Web.UI.ClientIDMode.Static; end.ID = MPTT + "EndControl"; end.DatePopupButton.Visible = false; end.TimePopupButton.Visible = false; lbl.Text = Category; hf.Value = MPTT; start.SelectedDate = StartDate; end.SelectedDate = EndDate; this.Controls.Add(lbl); this.Controls.Add(hf); this.Controls.Add(start); this.Controls.Add(end); } void start_SelectedDateChanged(object sender, Telerik.Web.UI.Calendar.SelectedDateChangedEventArgs e) { if (this.startDateChanged != null) { this.startDateChanged(this, e); } } void end_SelectedDateChanged(object sender, Telerik.Web.UI.Calendar.SelectedDateChangedEventArgs e) { if (this.endDateChanged != null) { this.endDateChanged(this, e); } } }
Test Page using control:
<html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title></head><body> <form id="form1" runat="server"> <telerik:RadScriptManager ID="rsm" runat="server"></telerik:RadScriptManager> <telerik:RadAjaxManager ID="ram" runat="server"></telerik:RadAjaxManager> <div> <asp:PlaceHolder ID="Placeholder" runat="server"></asp:PlaceHolder> </div> </form></body></html>Test Page C#:
protected void Page_Load(object sender, EventArgs e) { CategoryHolder ch = new CategoryHolder(); ch.Category = "Test Category"; ch.MPTT = "dfdfdopfksdopfsdop"; ch.StartDate = DateTime.Today; ch.EndDate = DateTime.Today.AddDays(5); ch.startDateChanged += new EventHandler(startPicker_SelectedDateChanged); RadAjaxManager manager = RadAjaxManager.GetCurrent(Page); RadAjaxLoadingPanel loadingPanel = new RadAjaxLoadingPanel(); Placeholder.Controls.Add(ch); manager.AjaxSettings.AddAjaxSetting(ch, ch, loadingPanel); manager.AjaxSettings.AddAjaxSetting(ch, Placeholder, loadingPanel); } void startPicker_SelectedDateChanged(object sender, EventArgs e) { //Yay it runs, but on a full postback }I have the following setup in my RadGrid lines in bold contain my database table primary key named LinkAnalysisId
<Columns>
<telerik:GridEditCommandColumn ButtonType="ImageButton">
</telerik:GridEditCommandColumn>
<telerik:GridBoundColumn DataField="LinkAnalysisId" HeaderText="Link ID" ReadOnly="true"
ForceExtractValue="Always" ConvertEmptyStringToNull="true" Display="False" />
<telerik:GridHyperLinkColumn FilterControlAltText ="Filter LinkID2 column"
Uniquename="LinklId2" DataNavigateUrlFormatString ="/SubjectList2.aspx?LinkID={0}"
DataTextField="LinkAnalysisName" HeaderText="Link Analysis Name"
DataNavigateUrlFields="LinkAnalysisId" />
<telerik:GridBoundColumn DataField="LinkAnalysisName" HeaderText="LinkAnalysisName" SortExpression="LinkAnalysisName"
UniqueName="LinkAnalysisName" Display="False">
Other bound columns are not shown when I update a records and try to save I run this C# code
protected void RadGrid1_UpdateCommand(object sender, Web.UI.GridCommandEventArgs e) { var editableItem = ((GridEditableItem)e.Item); var linkAnalysisId = (int)RadGrid1.MasterTableView.Items[0].GetDataKeyValue("LinkAnalysisId"); //retrive entity from the Db var record = DbContext.LinkAnalysis.Where(n => n.LinkAnalysisId == linkAnalysisId).FirstOrDefault(); if (record != null) { //update entity's state editableItem.UpdateValues(record); try { //save chanages to Db DbContext.SaveChanges(); } catch (System.Exception) { ShowErrorMessage(); } } }
var linkAnalysisId = (int)RadGrid1.MasterTableView.Items[0].GetDataKeyValue("LinkAnalysisId");which sets the linkAnalysis variable is not getting the correct ID number so it appears I have something wrong. In debug mode when I inspect the values in the var editableItem I am seeing the correct linkAnalysis ID number it is just the code above is not getting the right record what have I done wrong here?
Thanks
I have a RadGrid with the following CommandItemTemplate items
<asp:Button ID="Diagram" Text="Diagram" runat="server" OnClick="DiagramClicked"></asp:Button>
<asp:CheckBox ID="OrphanCheck" Text="Exclude Orphans" runat="server"/>
When the user clicks the Diagram button, using C# I want to read the value of the Checkbox and build the needed code based on the value of the check box. How can I get the value of that checkbox. I have searched for a solution but all I can find is dealing with a checkbox in a column or row.
Thanks
Perry
Hello there,
I have a requirement of Set PasswordStrengthSettings 's TextStrengthDescriptionStyles and TextStrengthDescriptions based on the following condions. how do i acheive it.
if(args.get_strengthScore() > 0 & args.get_strengthScore() <20)
{
Red colour RadStrength Strip and With Text "week"
}
else if(args.get_strengthScore() > 20 & args.get_strengthScore() <40)
{
Yellow colour RadStrength Strip and With Text "Poor"
}
How do i acheive it??

Bullet charts are a supported vizualization in Kendo, MVC, and others but do not seem to be supported in HtmlChart, at least not like sparklines are. Is there any work-around for rendering them using HtmlChart?
Thanks,
Terry