Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
106 views
In my grid I have 

AutoGenerateDeleteColumn="True"

I also have 

 

<

 

Scrolling AllowScroll="True" UseStaticHeaders="True" />

 

Having AutoGenerateDeleteColumn set has stopped the grid from scrolling.  Also how do I get the delete column to appear on the left hand side of the grid instead of the right.

 

Shinu
Top achievements
Rank 2
 answered on 03 Nov 2008
1 answer
90 views
We have an issue with Rad Grid. When we populate the grid it gets compressed and later gets back to normal size
Yavor
Telerik team
 answered on 03 Nov 2008
1 answer
118 views
I'm getting a javascript error that says "_63 is undefined" which appears to be from the slider I'm using. In my scenario I have code that is adding the slider into a dynamically generated pageview on a radmultipage during an AJAX postback, so it would be difficult to provide a reasonable code sample, but I can provide any additional info about the error you may need.

thanks.
Svetlina Anati
Telerik team
 answered on 03 Nov 2008
2 answers
155 views
I am having an issue with some controls in an ajax panel...

the editor especially... every time i hover over one of the tabs in the editor.. it looks like i have a tooltip manager on it... it whirls around and comes up with the name sometimes...

How can I stop this behavior?

thanks
Rumen
Telerik team
 answered on 03 Nov 2008
1 answer
199 views
Is it possible to get an icon in the RadDock titlebar (e.g. next to the title of the dock)?  This is a cool WebParts feature that RadDocks seems to be lacking.

Or do you guys know of a way e.g. with CSS to get this functionality?

thx,
joe
Petko
Telerik team
 answered on 03 Nov 2008
1 answer
121 views
Hi,
          I am using splitter within this i am using treeview then another splitbar is also there.So the problem arise here is when i collapse the split bar there is another vertical and horizontal scroll bar will appear in the page.This scrollbars will appear only when i collapse the splitbar but when i expand the bar it doesn,t appear.I didnt give any height,width to this bar.
           Give me the solution to solve this problem.

Thanks,
Giri
Svetlina Anati
Telerik team
 answered on 03 Nov 2008
4 answers
109 views
Hi,

Is there any way by which I can close one split pane when clickin on another, I mean I  am using three split panes in ma pane i have two menu on either side and I want to close one menu pane when i click on other. 

waitin for ur solutions.
Svetlina Anati
Telerik team
 answered on 03 Nov 2008
1 answer
94 views
Hi,

I'm using RadMenu in a sharepoint page. I've skinned it with "Gray" which is the style we like the best.
However when i add icons they cause the menu text to break and appear under the icon which is undesirable. (if the text is quite long)
Is there any way to state "nobreak" to the menu

So the markup looks like
<telerik:RadMenu ID="RadMenu1" runat="server" Skin="Gray">
                        <CollapseAnimation Duration="200" Type="OutQuint" />
                        <Items>
                            <telerik:RadMenuItem runat="server" Text="Production Performance Dashboard">
                                <Items>
                                    <telerik:RadMenuItem runat="server" ImageUrl="/_layouts/images/reportwebpart.gif" Text="Schematic">
                                    </telerik:RadMenuItem>
                                    <telerik:RadMenuItem runat="server" ImageUrl="/_layouts/images/pi_pi.gif" Text="Trend">
                                    </telerik:RadMenuItem>
Yana
Telerik team
 answered on 03 Nov 2008
3 answers
171 views
I am trying to develop a very simple Custom Control, all it consits of (at the moment) is a TabStrip (3 tabs), a multiPage and a number of PageViews. However I am encountering issues.
The code is as follows:
using System;  
using System.Web.UI;  
using System.Web.UI.WebControls;  
using Telerik.Web.UI;  
 
namespace BT.NIEA.StakeholderControls  
{  
    [ToolboxData("<{0}:CreateStakeholder runat=server></{0}:CreateStakeholder>")]  
    public class CreateStakeholder : WebControl  
    {
        #region "Properties"  
 
        private int _ApplicationID;  
        private string _TableCSSClass = "myTable";  
 
        public int ApplicationID  
        {  
            get { return _ApplicationID; }  
            set { _ApplicationID = value; }  
        }  
 
        public string TableCSSClass  
        {  
            get { return _TableCSSClass; }  
            set { _TableCSSClass = value; }  
        }  
 
        public string TabSkin  
        {  
            get { return _TabSkin; }  
            set { _TabSkin = value; }  
        }  
 
        public Unit TabWidth  
        {  
            get { return _TabWidth; }  
            set { _TabWidth = value; }  
        }  
 
        private Unit _TabWidth;  
        private string _TabSkin = "WebBlue";
        #endregion  
 
        #region "Overrides" 
        //protected override void OnPreRender(EventArgs e)  
        //{  
              
        //}  
        protected override void Render(HtmlTextWriter writer)  
        {  
            RadTabStrip ts = new RadTabStrip();  
            ts.Skin = TabSkin;  
            RadTab tb1 = new RadTab();  
            tb1.Text = "Basic Information";  
            tb1.Selected = true;  
            tb1.Width = TabWidth;  
            RadTab tb2 = new RadTab();  
            tb2.Width = TabWidth;  
            tb2.Text = "Address Details";  
            RadTab tb3 = new RadTab();  
            tb3.Text = "Optional Information";  
            tb3.Width = TabWidth;  
            ts.Tabs.Add(tb1);  
            ts.Tabs.Add(tb2);  
            ts.Tabs.Add(tb3);  
            // Create the Tab Strip  
            this.Controls.Add(ts);  
             
            RadMultiPage mpCreate = new RadMultiPage();  
            RadPageView pvPage1 = new RadPageView();  
 
            // Build The Table Text  
            string tblOutput = "<table class=\"" + TableCSSClass + "\">";  
            tblOutput += "<caption>Stakeholder Information</caption>";  
            tblOutput += "<tr>";  
            tblOutput += "<td colspan=\"2\"><strong>Basic Information</strong></td>";  
            tblOutput += "<td class=\"sep\"></td>";  
            tblOutput += "<td></td>";  
            tblOutput += "</tr>";  
            tblOutput += "</table>";  
            writer.Write(tblOutput);  
        }
       
        #endregion  
         
    }  
The error this gives is: Script controls may not be registered after PreRender.
If I change the code to the following:
using System;  
using System.Web.UI;  
using System.Web.UI.WebControls;  
using Telerik.Web.UI;  
 
namespace BT.NIEA.StakeholderControls  
{  
    [ToolboxData("<{0}:CreateStakeholder runat=server></{0}:CreateStakeholder>")]  
    public class CreateStakeholder : WebControl  
    {
        #region "Properties"  
 
        private int _ApplicationID;  
        private string _TableCSSClass = "myTable";  
 
        public int ApplicationID  
        {  
            get { return _ApplicationID; }  
            set { _ApplicationID = value; }  
        }  
 
        public string TableCSSClass  
        {  
            get { return _TableCSSClass; }  
            set { _TableCSSClass = value; }  
        }  
 
        public string TabSkin  
        {  
            get { return _TabSkin; }  
            set { _TabSkin = value; }  
        }  
 
        public Unit TabWidth  
        {  
            get { return _TabWidth; }  
            set { _TabWidth = value; }  
        }  
 
        private Unit _TabWidth;  
        private string _TabSkin = "WebBlue";
        #endregion  
 
        #region "Overrides" 
        protected override void OnPreRender(EventArgs e)  
        {  
            RadTabStrip ts = new RadTabStrip();  
            ts.Skin = TabSkin;  
            RadTab tb1 = new RadTab();  
            tb1.Text = "Basic Information";  
            tb1.Selected = true;  
            tb1.Width = TabWidth;  
            RadTab tb2 = new RadTab();  
            tb2.Width = TabWidth;  
            tb2.Text = "Address Details";  
            RadTab tb3 = new RadTab();  
            tb3.Text = "Optional Information";  
            tb3.Width = TabWidth;  
            ts.Tabs.Add(tb1);  
            ts.Tabs.Add(tb2);  
            ts.Tabs.Add(tb3);  
            // Create the Tab Strip  
            this.Controls.Add(ts);  
 
            RadMultiPage mpCreate = new RadMultiPage();  
            RadPageView pvPage1 = new RadPageView();  
        }  
        protected override void Render(HtmlTextWriter writer)  
        {  
             
            // Build The Table Text  
            string tblOutput = "<table class=\"" + TableCSSClass + "\">";  
            tblOutput += "<caption>Stakeholder Information</caption>";  
            tblOutput += "<tr>";  
            tblOutput += "<td colspan=\"2\"><strong>Basic Information</strong></td>";  
            tblOutput += "<td class=\"sep\"></td>";  
            tblOutput += "<td></td>";  
            tblOutput += "</tr>";  
            tblOutput += "</table>";  
            writer.Write(tblOutput);  
        }
       
        #endregion  
         
    }  
The control runs without error but the tabstrip is not outputted to the page at runtime.

So my question(s) are:
When and where do I register the tabstrip, so it is shown at runtime?
How can I add content created at runtime to a PageView I have just created and will be adding to a MultiPage control?

Kind Regards
Erjan Gavalji
Telerik team
 answered on 03 Nov 2008
4 answers
145 views
Hi Everyone,


I am creating grid dynamically,my problem is when I use simple edit,delete my grid is working fine,but when I used image button I get javascript error,please help me as soon as possible
sushant
Top achievements
Rank 1
 answered on 03 Nov 2008
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?