I have a requirement is to change the infragistics control to telerik control. As I'm new in the Telerik could anyone help me is there any other control instead of using the menu .ascx. Currently this infragistics control has been used as a menu which is in the menu.ascx.
<%@ Register TagPrefix="iglbar" Namespace="Infragistics.WebUI.UltraWebListbar" Assembly="Infragistics2.WebUI.UltraWebListbar.v6.3, Version=6.3.20063.53, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" %>
sample code currently using just the format but not the full code....
<iglbar:ultraweblistbar ----- >
<Groups>
<iglbar:Group
<iglbar:Item --->
</iglbar:Item>
<HeaderAppearance>
<HeaderAppearance>
</iglbar:Group>
Again the same other group occur as below
<iglbar:Group>
</iglbar:Group>
<Groups>
Could you please let me know is there any possible replacement of this infragistics control to telerik control. As this ascx been used as user control (actually a menu )in many pages.
7 Answers, 1 is accepted
I am unable to exactly define what is the exact behavior of the Infragistic's control as I cannot find a demo for it.
Based on your description, I assume the RadMenu (RadMenu - Overview demo) should do the job, although you can provide some more details, so that I can properly understand the situation.
Regards,
Ianko
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

Please see the attached ultraweblistbat along with this comment. It is by default in expand mode.
I'm planing to change this control to telerik radm enu which i cannot make it expand mode by default only through the mouse cliking it will be expanding. Is there any other method to keep the menu item default in open mode for rad menu.
I am unable to find the mentioned attachment.
However, you can expand a menu item programmatically via some JavaScript logic:
<
script
type
=
"text/javascript"
>
function OnClientLoad(sender, args) {
sender.findItemByText("Menu 1").open();
}
</
script
>
<
telerik:RadMenu
runat
=
"server"
ID
=
"RadMenu1"
ShowToggleHandle
=
"true"
OnClientLoad
=
"OnClientLoad"
>
<
Items
>
<
telerik:RadMenuItem
runat
=
"server"
Text
=
"Menu 1"
>
<
Items
>
<
telerik:RadMenuItem
runat
=
"server"
Text
=
"Sub Menu 1"
></
telerik:RadMenuItem
>
<
telerik:RadMenuItem
runat
=
"server"
Text
=
"Sub Menu 2"
></
telerik:RadMenuItem
>
<
telerik:RadMenuItem
runat
=
"server"
Text
=
"Sub Menu 3"
></
telerik:RadMenuItem
>
<
telerik:RadMenuItem
runat
=
"server"
Text
=
"Sub Menu 4"
></
telerik:RadMenuItem
>
</
Items
>
</
telerik:RadMenuItem
>
<
telerik:RadMenuItem
runat
=
"server"
Text
=
"Menu 2"
></
telerik:RadMenuItem
>
</
Items
>
</
telerik:RadMenu
>
Regards,
Ianko
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

Hi I found a similar control as telerik rad pannel bar when i insertes in the html it is working . Actually my scenario is to populat the panel items dynamically throught a C# code from the dataset. Main header will come. All others will come as web.exception. Anybody know how to populate the following static population of the telerik rad panel bar and it's item using the dynamic population in C#.
<
telerik:RadPanelBar ID="sample">
<
Items >
<telerik:RadPanelItem Expanded="True" Text="Work Queue" ExpandedCssClass="TestExpandedHeaderStyle" DisabledCssClass="TestExpandedHeaderStyle" ClickedCssClass="TestExpandedHeaderStyle" >
<Items>
<telerik:RadPanelItem NavigateUrl="../sample.aspx" Text="sample headeritem" />
</Items>
</telerik:RadPanelItem>
<telerik:RadPanelItem Text="section2" Expanded="True" >
<Items>
<telerik:RadPanelItem NavigateUrl="../Section2Report.aspx?ReportType=All" Text="All" >
</telerik:RadPanelItem>
<telerik:RadPanelItem NavigateUrl="../Section2Report2.aspx?ReportType=ssampl32" Text="xsdfg" Target="CNTFRAME">
</telerik:RadPanelItem>
<telerik:RadPanelItem NavigateUrl="../TermSheetSummaryReport.aspx?ReportType=sadfd" Text="sample3" Target="CNTFRAME">
</telerik:RadPanelItem>
<telerik:RadPanelItem NavigateUrl="../TermSheetSummaryReport.aspx?ReportType=Cancelled" Text="Completed" Target="CNTFRAME">
</telerik:RadPanelItem>
<telerik:RadPanelItem NavigateUrl="../TermSheetSummaryReport.aspx?ReportType=WIP" Target="CNTFRAME" Text="sfs">
</telerik:RadPanelItem>
</Items>
</telerik:RadPanelItem>
</telerik:RadPanelBar >
Hi,
The RadPanelbar can be used in proper data-binding solutions and these demos might be helpful for your case:
If further assistance is needed, please provide a sample DataSet collection and some details about the expected behavior, so that I could understand better the situation.
Regards,
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

I'm looking for a dynamic population of (C# code in the .cs file ) for populating the radgrid from the collection list. This RADG grid should shown in the group wise as it ishows the group footer also. Currently it is working when i wrote the code i nthe aspx file as a static binding.
Please share a code snippet for dynamic population of RAD grid showing grouping .
You can examine this online demo (Grid - Grouping) to see how the grouping functionality of the RadGrid can be used.
Regards,
Ianko
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.