.TelerikModalOverlay{ z-index: 100000 !important;}<div> <telerik:RadTabStrip ID="rdtabCSD" runat="server" Skin="CustomSkin" EnableEmbeddedSkins="false" SelectedIndex="0" MultiPageID="rdMultiPageId" AutoPostBack="true"> <Tabs> <telerik:RadTab Text="Page2"> </telerik:RadTab> <telerik:RadTab Text="Page3"> </telerik:RadTab> <telerik:RadTab Text="Page4"> </telerik:RadTab> <telerik:RadTab Text="Page5"> </telerik:RadTab> <telerik:RadTab Text="Page6"> </telerik:RadTab> <telerik:RadTab Text="Page7"> </telerik:RadTab> </Tabs> </telerik:RadTabStrip> <telerik:RadMultiPage CssClass="radmultipageIframe" ID="rdMultiPageId" runat="server" SelectedIndex="0"> <telerik:RadPageView ID="rdPVGeneralInfo" runat="server" ContentUrl="Page2.aspx"> </telerik:RadPageView> <telerik:RadPageView ID="rdPVInventory" runat="server" ContentUrl="Page3.aspx"> </telerik:RadPageView> <telerik:RadPageView ID="rdPVCost" runat="server" ContentUrl="Page4.aspx"> </telerik:RadPageView> <telerik:RadPageView ID="rdPVPricing" runat="server" ContentUrl="Page5.aspx"> </telerik:RadPageView> <telerik:RadPageView ID="rdPVFreight" runat="server" ContentUrl="Page6.aspx"> </telerik:RadPageView> <telerik:RadPageView ID="rdPVMaintenance" runat="server" ContentUrl="Page7.aspx"> </telerik:RadPageView> </telerik:RadMultiPage> </div>I am trying to add an Append option to the context menu utilizing an Edit Form Template pop-up. The Insert option was easy since you had many examples. I tried, client side, to change the command to InitInsert with a currentIndex of -1 to indicate an Append operation, see below. When it runs, I do not get the Edit Form Template pop-up. I am also trying to incorporate the same functionality into Insert and Append buttons, separate from the Tree List control.
function CM_onClientItemClicked(sender, args) {
var commandName = args.get_item().get_value();
if (commandName == 'Append')
_tlConfig.fireCommand('InitInsert', -1);
else
_tlConfig.fireCommand(commandName, currentIndex);
}Protected Sub RadTreeList1_DataBound(sender As Object, e As System.EventArgs) Handles RadTreeList1.DataBound RadTreeList1.ExpandAllItems()End SubFaulting application name: w3wp.exe, version: 7.5.7601.17514, time stamp: 0x4ce7afa2
Faulting module name: nlssorting.dll, version: 4.0.30319.239, time stamp: 0x4e182039
Exception code: 0xc00000fd
Fault offset: 0x0000000000001e4e
Faulting process id: 0x1900
Faulting application start time: 0x01cc9db854916354
Faulting application path: c:\windows\system32\inetsrv\w3wp.exe
Faulting module path: C:\Windows\Microsoft.NET\Framework64\v4.0.30319\nlssorting.dll
Report Id: 93fd70b4-09ab-11e1-8d6d-1cc1de54a95b
