Hello,
I have telerik grid on my web page , which get created dynamically.
i have vertical scrollbar for th same , which is working fine on Internet Explorer but that is not working on Chrome and Mozilla.
ANy solution?
i have added some part of my code below. Not all but some part.
I have telerik grid on my web page , which get created dynamically.
i have vertical scrollbar for th same , which is working fine on Internet Explorer but that is not working on Chrome and Mozilla.
ANy solution?
i have added some part of my code below. Not all but some part.
objGridView.ClientSettings.Scrolling.FrozenColumnsCount = 1; objGridView.ClientSettings.Scrolling.AllowScroll = true; objGridView.ClientSettings.Scrolling.UseStaticHeaders = true; objGridView.ClientSettings.Scrolling.SaveScrollPosition = true; Panel objPanel = ((Panel)this.Parent.FindControl("MasterPlaceHolder").FindControl("ucModel1").FindControl("pnlModel")); objPanel.Controls.Clear(); objPanel.Controls.Add(objGridView); 