Hi I have 8 tabs. The first 2 are General information and Employee Information. I want these to be completely filled out first before tabs 3-8 are accessible.
I just inherited this applicaition so I am new to telerik . Any input is appreciated.

Hi,
When I call Image manager natively from RadEditor Image Properties, the Image Manager automatically shows the picture path and picture of the selected item.
How can I achieve such behavior from a stand alone Image Manager called from a RadDialogOpener?
Marc
Hi,
We are currently using RadChart control, now we are planning to update it with RadHtmlControl.
Please suggest the easiest way to migrate this.
If possible please provide us sample project.
Thanks,
Amol
See http://demos.telerik.com/kendo-ui/grid/column-menu
When using Chrome v 55, the column/filter dialog disappears when mouse enters one of the text fields.
Select a column menu header, select the filter option, move mouse over one of the filter text boxes. The filter popup is hidden.
This appears to be an error specific to chrome 55 (it was not evident in earlier Chrome version).

Hi,
I having problem generating a dictionary object out in a Grid Template, it is saying there a incorrect syntax.
Can anyone help me?
template: '<div id="#=ReferenceNumber#_#=CreateAward#">
<a href="#=EffectiveProcurementURL#" target="_blank">#=CreateAward#</a>
<img src="/images/navdown.gif" style="cursor:pointer;" onclick="toggleDisplay("#=ReferenceNumber#")" />
<ul>
# for (var key in OtherProcurementOption) { #
#=var value = OtherProcurementOption[key];#
<li><a href="#=value#" target="_blank">#=key#</a></li>
# } #
</ul>
</div>'
Hello,
I'm trying to use the drag and drop functionality in the scheduler. As the demo below
https://demos.telerik.com/aspnet-ajax/scheduler/examples/draganddropintegration/defaultcs.aspx?product=scheduler
Everything works fine with drag and drop. Now i'm trying to implement the sorting on the column headers in RagdGrid. After I click any column header the grid disappears . Like there is no data in the grid . I'm using the basic sorting functionality as in one of your demo applications. I also tried using the NeedDataSource. this time I'm getting the data same as not sorted. this is the following code sample i'm using to sort the grid data . Can please help me find a way around it.
Thank you
Protected Sub RadGrid1_SortCommand(sender As Object, e As GridSortCommandEventArgs) Dim sortexpr As New GridSortExpression() sortexpr.FieldName = e.SortExpression If sortexpr.SortOrder = GridSortOrder.Descending Or sortexpr.SortOrder = GridSortOrder.None Then sortexpr.SortOrder = GridSortOrder.Ascending e.Item.OwnerTableView.SortExpressions.AddSortExpression(sortexpr) RadGrid1.MasterTableView.Rebind() ElseIf sortexpr.SortOrder = GridSortOrder.Ascending Thensortexpr.SortOrder = GridSortOrder.Descending e.Item.OwnerTableView.SortExpressions.AddSortExpression(sortexpr) RadGrid1.MasterTableView.Rebind() End IfHi,
I'm exporting a grid in Xlsx format. I tried many methods to set borders on excel cells but in no avail.
Is it even possible ? Are borders supported ?
http://demos.telerik.com/aspnet-mvc/diagram/editing
Is there an example or is it possible to replicate the shape editing/text insert shown in this mvc project in aspnet-ajax diagram project?
Thank you
Andy

Hi, i have a problem to fire the delete event using a GridButtonColumn with ConfirmDialogType="RadWindow", it show the dialog but when I click ok button it only close the window but don't invoke the delete event on the server, if I change it to ConfirmDialogType="Classic" it works ok.
here is the implementation
<form id="form1" runat="server"> <telerik:RadSkinManager ID="RadSkinManager1" Runat="server" Skin="Material"> </telerik:RadSkinManager> <telerik:RadScriptManager ID="RadScriptManager1" Runat="server"> </telerik:RadScriptManager> <telerik:RadWindowManager ID="RadWindowManager1" runat="server"> </telerik:RadWindowManager> <telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" HorizontalAlign="NotSet" LoadingPanelID="RadAjaxLoadingPanel1"> <telerik:RadGrid ID="RadGridFAQs" runat="server" AutoGenerateColumns="False" AllowPaging="True" AllowSorting="True" OnNeedDataSource="RadGridFAQs_NeedDataSource" PageSize="5" RenderMode="Lightweight" OnDeleteCommand="RadGridFAQs_DeleteCommand"> <pagerstyle mode="NextPrevAndNumeric" position="Bottom" pagesizecontroltype="None" alwaysvisible="True"></pagerstyle> <groupingsettings collapsealltooltip="Collapse all groups" /> <mastertableview clientdatakeynames="QuestionID" datakeynames="QuestionID" hierarchyloadmode="Client"> <rowindicatorcolumn visible="False"> </rowindicatorcolumn> <Columns> <telerik:GridBoundColumn DataField="Question" HeaderText="Pregunta"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="Score" HeaderText="Calificación"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="Section" HeaderText="Sección"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="Active" HeaderText="Activo"> </telerik:GridBoundColumn> <telerik:GridButtonColumn CommandName="Delete" ConfirmText="¿Esta seguro que desea eliminar la pregunta?" FilterControlAltText="Filter column column" UniqueName="column" ConfirmDialogType="RadWindow" ConfirmTitle="Eliminar"> </telerik:GridButtonColumn> </Columns> <PagerStyle PageSizeControlType="None" AlwaysVisible="True" /> </mastertableview> <filtermenu rendermode="Lightweight"> </filtermenu> <headercontextmenu rendermode="Lightweight"> </headercontextmenu> </telerik:RadGrid> </telerik:RadAjaxPanel> <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" Runat="server" Skin="Default"> </telerik:RadAjaxLoadingPanel> </form>