Hi,
I have a fully programmatically implemented Radgrid, with filters enabled. When you implement a Filter Template Class (to make a custom filter), you have to implement the function InstantiateIn, which has the container as a parameter. In this function you add the components of your Filter Template to this container, but I want to add controls to the container from outside this function. Is it possible to find this container form the Page_Load function? I've serached everything, and I have seen that you can get it at ItemCreated or ItemDataBound, I don't exactly remember. But this is not what I want, I want to get it from Page_Load. How can I do that?
Thanks
hiii,
I have created an application For grouping. i am accessing data from 4 tables in one datatable by performing union
and seperating them by adding one extra column of tablenames.
and i want to display that 4 tables in 4 groups.
It is showing it clearly when each table have only one row.
but when i insert new row in any of 4 table then 2 groups are created for that table.
Please help me to solve this problem.
i have attached data that im fetching from db and image of result
please reply me
Going through the radgrid documentation there is a limitation that we cannot use the BatchEdit or inplace Mode with virtualization.
What is the alternate or workaround to that?
My client do not want to use paging but want to provide the editing feature on the GRID which has thousands of records. Additionally performance has to be handled as number of records in the GRID can be of order of 000's so definitely need to use virtualization or paging.
Any suggestion on to get around this and achieve this functionality.

Dear Team,
I'm displaying hierarchical data using Treeview. We need to change the datasource of treeview dynamically based on user input. I'm using the below code do achieve the functionality:
In ASPX:
function LoadTreeView(projectid) { var ajaxManager = $find("<%= RadAjaxManagerforGrid.ClientID %>"); ajaxManager.ajaxRequest("treeview_databind," + projectid); }
In Code behind:
protected void RadAjaxManagerforGrid_AjaxRequest(object sender, AjaxRequestEventArgs e) { string[] arguments = e.Argument.Split(','); if (arguments[0] == "search") { string _search = arguments[1]; int result = BindProjectData(false, _search); if (result == 0) { Label lblEmptyMessage = RadListView1.Controls[0].FindControl("lblmessage") as Label; lblEmptyMessage.Text = "No records to display."; } } else if(arguments[0] == "treeview_databind") { int? folderId = Convert.ToInt32(arguments[1]); BindFolderTreeViewData(folderId); hdnSelectedFolderId.Value = arguments[1]; ScriptManager.RegisterClientScriptBlock(this, typeof(Page), "alertScript", "$('#video-move').modal('show');", true); } }
BindFolderTreeViewData() Method:
protected void BindFolderTreeViewData(int? folderId) { if(folderId!=null) { RadTreeFolders.Nodes.Clear(); List<Folder> lst = DomainDAL.GetFolderHierarchy(folderId); RadTreeFolders.DataSource = lst; RadTreeFolders.DataFieldID = "FolderID"; RadTreeFolders.DataFieldParentID = "ParentFolderID"; RadTreeFolders.DataValueField = "FolderID"; RadTreeFolders.DataTextField = "FolderName"; RadTreeFolders.DataBind(); }
Treeview is not getting refreshed/not displaying any data. Can you please help
Thanks,
Phani

Hi
the issue We are getting undefined alert while adding <form> tag in MOSSRadEditor htmlmode
user like to copy content from a lot of places but sometime they tends to copy some action tag like < form> into the editForm
after they save it, will hit a pop up error on undefined.
same issue u can get here
http://sharepoint.telerik.com/aspnet-ajax/web-parts/Pages/Content-Editor-Web-Part-using-RadEditor.aspx
(U go to html view
Add in <form>
N switch back to Design view
U will get undefine)
please let me know how to solve this issue..
Is it possible to customize the range that is displayed on my Yaxis? If the recordset populating the chart has numbers from 75,000,000 - 85,000,000, I don't want to start at 0 but say have my range be 65,000,000 - 95,000,000. But the range can change based upon the data being returned. It would be nice to have my range be 10% of the minimum value and maximum value. Something else is that my values returned may also be a percentage.
Also on my Xaxis I will be displaying dates. How do I only show the labels where the month is a quarter end (3, 6, 9, 12)?
Thanks
What i need to happen is that after a user logs in and the page goes to Home.aspx, I need the Home RadMenuItem to be selected on page load. When they click About it will go to About.aspx page and select the About RadMenuItem on page load. Please advice
MasterPage.master: <telerik:RadMenu runat="server" ID="mnuTopBar" EnableEmbeddedSkins="false" Width="800px"></telerik:RadMenu>
On Home.aspx:
Private Sub SelectMenu() Dim menu As New RadMenu Dim currItem As New RadMenuItem menu = DirectCast(Me.Page.Master.FindControl("mnuTopBar"), RadMenu) End SubAbove is all i have so far. I have tried currItem = menu.FindItemByText("Home") but getting nothing on currItem. Please advice...