Hi,
We were using RADControls for ASP.NET Q3 2007 and have recently acquired the ASP.NET AJAX version. In the editor control we had a custom tool which was a drop-down. It worked fine, till we switched to the new version but now the drop-down is not populated with the values specified in the ToolsFile.
Here's the relevant section of my xml:
We were using RADControls for ASP.NET Q3 2007 and have recently acquired the ASP.NET AJAX version. In the editor control we had a custom tool which was a drop-down. It worked fine, till we switched to the new version but now the drop-down is not populated with the values specified in the ToolsFile.
Here's the relevant section of my xml:
<
tools name="OMSCustomTools" enabled="true" isribbon="false" dockable="false">
<
tool name="InsertableItemsDropdown" type="dropdown" text="OMS Tools">
<
item name="Handset Name" value="[[Handset_Name]]"></item>
<
item name="Network Name" value="[[Network_Name]]"></item>
<item name="Order Ref" value="[[Order_Ref]]"></item>
<
item name="Current Date" value="[[Current_Date]]"></item>
</tool>
</
tools>
on the page i have the script:if
("undefined" == typeof(RadEditorToolInitializer))
{
var RadEditorToolInitializer = {};
}
in the run mode i see the "info" icon and when clicked, it pastes undefined in the editor. I'm assuming the paste part is working fine, but since the drop-down does not have a value, it pastes "undefined".
Any help will be appreciated.
Thanks,
Kanika