Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
79 views
Hi, currently resolving issue myself. Will update again later
Riaan
Top achievements
Rank 1
 answered on 31 Oct 2011
1 answer
141 views
I need a default toolbar that is provided by the edior. Along with all the optiuon i need to add one dropdown, the values will be comming from the database. Is there a way that i dont have to write the code for adding default toolbar & write the code only for adding a dropdown. I checked the example provided in

http://demos.telerik.com/aspnet-ajax/editor/examples/customdropdowns/defaultcs.aspx


This will not add default toolbar, Please suggest what shopuld be the approach.
Rumen
Telerik team
 answered on 31 Oct 2011
1 answer
97 views
hello everyone, it's not a telerik issue, hope someone will answear anyway

My aspx page loads user controls (ascx) dinamically
code example:
ASCXlist.Add("/Admin/ASCX/Seasons.ascx")
ASCXlist.Add("/Admin/ASCX/Arrangements.ascx")
Dim UControl As Control PlaceHolder_UC.Controls.Clear()
For Each l As String In ASCXlist
 UControl = New Control
 UControl = CType(LoadControl(l), UserControl)
 PlaceHolder_UC.Controls.Add(UControl)
Next

those ascx raise events that I have to catch on aspx page
I don't have any idea how to do it.
Having load user controls dinamically I don't know where to write the code, how do i catch them?

Thank you
Princy
Top achievements
Rank 2
 answered on 31 Oct 2011
1 answer
140 views
Hi,

I want to display menu as displayed in one of demo application

http://demos.telerik.com/aspnet-ajax/menu/examples/functionality/templates/defaultcs.aspx

But the problem is menu items should be populated dynamically based on role of the user who logged into application.

Can any one please help me in this regard. Sample code will be appreciated.


Thanks,
Sumanth
Shinu
Top achievements
Rank 2
 answered on 31 Oct 2011
3 answers
312 views
I need to know if we can create custom HeaderTemplate  and ItemTemplate Programmatically?


Princy
Top achievements
Rank 2
 answered on 31 Oct 2011
1 answer
133 views
I'm programmatically creating a RadAjaxManager object as I'm creating custom webservercontrol that wraps the Grid, ContextMenus, and a Loading Panel to do some custom operations.

So far, I've been unable to get the RadAjaxManager to operate as it does when it's added directly to a page.  The loading indicator doesn't show up on the grid at all, and I consistently get an error when attempting to fire Rebind on the grid from an ajaxRequest:

'ctl00_MainContent_SpreadsheetControl_ctl00_MainContent_SpreadsheetControl_MainGridPanel'. If it is being updated dynamically then it must be inside another UpdatePanel.

The code used to create and initialize the objects is below.
Any idea what the issue could be?

protected void CreateControls()  //Called from CompositeControl constructor
        {
            AjaxManager = new RadAjaxManager() { ID="AjaxManager", EnableAJAX = true};
            InputManager = new RadInputManager() { EnableEmbeddedBaseStylesheet = false };
            CellContextMenu = new RadContextMenu() { ID = "CellContextMenu", OnClientLoad = "onCellContextMenuLoad" };
            HeaderContextMenu = new RadContextMenu() { ID = "HeaderContextMenu", OnClientLoad = "onCellContextMenuLoad" };
            LoadingPanel = new RadAjaxLoadingPanel() { ID = "RadAjaxLoadingPanel" };
            Grid = new RadGrid()
            {
                ID = "MainGrid",
                AutoGenerateColumns = false,
                AllowMultiRowEdit = true,
                CellSpacing = 0,
                CellPadding = 0,
                GridLines = GridLines.None,
                AllowAutomaticUpdates = true,
                AllowFilteringByColumn = true,
                AllowSorting = true,
                GroupingEnabled = false,
                ShowGroupPanel = false,
            };
        }
        protected void InitializeComponent()  //called from 'CreateChildControls' override.
        {
             
            this.Controls.Add(AjaxManager);
 
            Grid.ClientSettings.Scrolling.AllowScroll = true;
            Grid.ClientSettings.Scrolling.UseStaticHeaders = true;
 
            Grid.ClientSettings.ClientEvents.OnGridCreated = "onGridCreated";
            Grid.ClientSettings.ClientEvents.OnRowCreated = "onRowCreated";
            Grid.ClientSettings.ClientEvents.OnRowDestroying = "onRowDestroying";
            Grid.ClientSettings.ClientEvents.OnRowContextMenu = "onRowContextMenu";
             
             
            Grid.MasterTableView.CommandItemDisplay = GridCommandItemDisplay.Bottom;
            Grid.MasterTableView.EditMode = GridEditMode.InPlace;
            Grid.MasterTableView.AllowCustomSorting = true;
 
             
            this.Controls.Add(Grid);
            this.Controls.Add(CellContextMenu);
            this.Controls.Add(HeaderContextMenu);
            this.Controls.Add(LoadingPanel);
 
 
            Grid.PreRender += OnPreRender;
            Grid.ItemDataBound += OnItemDataBound;
 
            
        }
 
protected override void OnLoad(EventArgs e)
        {
             
            //base.OnLoad(e);
            RadScriptManager.RegisterStartupScript((Control)this, this.GetType(), this.AjaxManager.ClientID, "identifyAjaxManager('" + AjaxManager.ClientID + "');", true);
            AjaxManager.AjaxSettings.AddAjaxSetting(Grid, Grid, LoadingPanel);
            AjaxManager.AjaxSettings.AddAjaxSetting(AjaxManager, Grid);
        }
        }
Iana Tsolova
Telerik team
 answered on 31 Oct 2011
1 answer
141 views
Dear Sirs,
is there the possibility to have a Gantt View in Scheduler control or in Telerik's suite?
Many thanks in advance.
Best Regards.
Sergio
Princy
Top achievements
Rank 2
 answered on 31 Oct 2011
1 answer
118 views
Is there an easy way to add styles for a specific content page only (in a master  / content page scenario in which I'm using Telerik Controls?
Princy
Top achievements
Rank 2
 answered on 31 Oct 2011
1 answer
95 views
How can I remove case sensitive in Radgrid AllowFiltering?
Shinu
Top achievements
Rank 2
 answered on 31 Oct 2011
1 answer
107 views
I want to make GridNumericColumn ReaOnly in edit mode.How can I do this?
Shinu
Top achievements
Rank 2
 answered on 31 Oct 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?