Hi,
I have the following Combobox and TreeView on a page.
The client handlers are defined as
When I open this page in Firefox 3.6.3 the client events do not fire.
The error console of Firefox shows me this error - ClientMouseOver is not defined + a link pointing to the error in the generated file.Clicking on the link highlights the following code in the file
Not sure if the error has something to do with the display attribute(-moz-inline=stack)
The page works fire on IE 8.
Please help!!!!
I have the following Combobox and TreeView on a page.
<telerik:RadComboBox ID="ContextCombo" DataTextField="Name" DataValueField="Id" EmptyMessage="Select Context" |
AutoPostBack="True" runat="server" Height="200px" Skin="Office2007" Width="250px" |
onselectedindexchanged="ContextCombo_SelectedIndexChanged"> |
</telerik:RadComboBox> |
<telerik:RadTreeView ID="QuestionsAndAnswersTree" runat="server" |
OnClientMouseOver="ClientMouseOver" OnClientNodeDropping="onNodeDropping" |
<contextmenus> |
<telerik:RadTreeViewContextMenu ID="ContextMenuLHRootCreateQuestion" runat="server"> |
<Items> |
<telerik:RadMenuItem |
ImageUrl="~/App_Themes/MasterPlan/TreeImages/question_add.png" |
Text="Create Question" Value="CreateQuestion" /> |
</Items> |
<collapseanimation type="None" /> |
<collapseanimation |
type="None" /> |
</telerik:RadTreeViewContextMenu> |
</contextmenus> |
</telerik:RadTreeView> |
The client handlers are defined as
<script type="text/javascript"> |
function onNodeDropping(sender, args) { |
// prompt for drag action / display dialog |
var dest = args.get_destNode(); |
//window.radopen("DragDropPromptDialog.aspx?EventArg=" + args, "DragPromptDialog"); |
//args.set_cancel(true); |
} |
function ClientMouseOver(sender, args) { |
return; |
} |
</script> |
When I open this page in Firefox 3.6.3 the client events do not fire.
The error console of Firefox shows me this error - ClientMouseOver is not defined + a link pointing to the error in the generated file.Clicking on the link highlights the following code in the file
<div id="ctl00_MainContent_ContextCombo" class="RadComboBox RadComboBox_Office2007" style="width:250px;display:-moz-inline-stack;display:inline-block;zoom:1;*display:inline;"> |
Not sure if the error has something to do with the display attribute(-moz-inline=stack)
The page works fire on IE 8.
Please help!!!!