Hello Telerik Team.
There is a problem/Bug in Online demo for Menu . I am using IE9.0.8112.16421
in This page : http://demos.telerik.com/aspnet-ajax/menu/examples/functionality/righttoleft/defaultcs.aspx
When you Don't use Comopatibility Mode ,everyThing is Fine but When you Enable Compatibility Mode
and Mouse over on "Format" then "Font" , submenu appears above the Format's submenu JUST FOR FIRST TIME,but in other tries ,it Apears in correct place.
Is any Solution for solving this Problem?Because I have a Problem Like this.
Thanks.
There is a problem/Bug in Online demo for Menu . I am using IE9.0.8112.16421
in This page : http://demos.telerik.com/aspnet-ajax/menu/examples/functionality/righttoleft/defaultcs.aspx
When you Don't use Comopatibility Mode ,everyThing is Fine but When you Enable Compatibility Mode
and Mouse over on "Format" then "Font" , submenu appears above the Format's submenu JUST FOR FIRST TIME,but in other tries ,it Apears in correct place.
Is any Solution for solving this Problem?Because I have a Problem Like this.
Thanks.
3 Answers, 1 is accepted
0
Princy
Top achievements
Rank 2
answered on 02 Dec 2013, 03:19 AM
Hi Mahdi,
As a work around please try the following CSS which works fine at my end.
CSS:
Hope this will helps you.
Thanks,
Princy.
As a work around please try the following CSS which works fine at my end.
CSS:
<style type=
"text/css"
>
.rmScrollWrapContainer
{
border
:
1px
solid
white
!important
;
margin-right
:
20%
!important
;
}
</style>
Hope this will helps you.
Thanks,
Princy.
0
Mahdi
Top achievements
Rank 1
answered on 02 Dec 2013, 12:07 PM
Hello
Thanks for your Answer.
Unfortunately this code didn't work for me. and cssClass with name "rmScrollWrapContainer" doesn't Exist in classes which Grid uses.
Any Idea?
Thanks for your Answer.
Unfortunately this code didn't work for me. and cssClass with name "rmScrollWrapContainer" doesn't Exist in classes which Grid uses.
Any Idea?
0
Princy
Top achievements
Rank 2
answered on 03 Dec 2013, 04:19 AM
Hi Mahdi,
Please have a look into the following code snippet which works fine at my end.
ASPX:
CSS:
Please provide your code if it doesn't help.
Thanks,
Princy.
Please have a look into the following code snippet which works fine at my end.
ASPX:
<
telerik:RadGrid
ID
=
"RadGrid1"
runat
=
"server"
DataSourceID
=
"SqlDataSource1"
>
<
MasterTableView
>
<
Columns
>
<
telerik:GridBoundColumn
DataField
=
"OrderID"
UniqueName
=
"OrderID"
HeaderText
=
"OrderID"
>
</
telerik:GridBoundColumn
>
<
telerik:GridTemplateColumn
>
<
ItemTemplate
>
<
telerik:RadMenu
ID
=
"RadMenu1"
runat
=
"server"
dir
=
"rtl"
ClickToOpen
=
"true"
EnableRoundedCorners
=
"true"
>
<
Items
>
<
telerik:RadMenuItem
Text
=
"Edit"
>
<
Items
>
<
telerik:RadMenuItem
Text
=
"Undo"
/>
<
telerik:RadMenuItem
IsSeparator
=
"True"
/>
<
telerik:RadMenuItem
Text
=
"Cut"
/>
<
telerik:RadMenuItem
Text
=
"Copy"
/>
<
telerik:RadMenuItem
Text
=
"Paste"
/>
<
telerik:RadMenuItem
Text
=
"Clipboard..."
/>
<
telerik:RadMenuItem
IsSeparator
=
"True"
/>
</
Items
>
</
telerik:RadMenuItem
>
<
telerik:RadMenuItem
Text
=
"Format"
>
<
Items
>
<
telerik:RadMenuItem
Text
=
"Font"
GroupSettings-Height
=
"200"
>
<
Items
>
<
telerik:RadMenuItem
Text
=
"Arial"
/>
<
telerik:RadMenuItem
Text
=
"Verdana"
/>
<
telerik:RadMenuItem
Text
=
"Tahoma"
/>
<
telerik:RadMenuItem
Text
=
"Sans-serif"
/>
<
telerik:RadMenuItem
IsSeparator
=
"true"
/>
<
telerik:RadMenuItem
Text
=
"Arial"
/>
<
telerik:RadMenuItem
Text
=
"Arial Black"
/>
<
telerik:RadMenuItem
Text
=
"Arial Narrow"
/>
<
telerik:RadMenuItem
Text
=
"Arial Unicode MS"
/>
<
telerik:RadMenuItem
Text
=
"Bookman Old Style"
/>
<
telerik:RadMenuItem
Text
=
"Bookshelf Symbol 7"
/>
</
Items
>
</
telerik:RadMenuItem
>
<
telerik:RadMenuItem
Text
=
"Paragraph..."
/>
<
telerik:RadMenuItem
Text
=
"Bullets and Numbering..."
/>
<
telerik:RadMenuItem
Text
=
"Borders and Shading..."
/>
<
telerik:RadMenuItem
IsSeparator
=
"true"
/>
<
telerik:RadMenuItem
Text
=
"Columns"
/>
<
telerik:RadMenuItem
Text
=
"Tabs"
/>
</
Items
>
</
telerik:RadMenuItem
>
<
telerik:RadMenuItem
Text
=
"View"
>
<
Items
>
<
telerik:RadMenuItem
Text
=
"Normal"
/>
<
telerik:RadMenuItem
Text
=
"Web Layout"
/>
<
telerik:RadMenuItem
Text
=
"Print Layout"
/>
<
telerik:RadMenuItem
IsSeparator
=
"True"
/>
<
telerik:RadMenuItem
Text
=
"Task Pane"
/>
</
Items
>
</
telerik:RadMenuItem
>
</
Items
>
</
telerik:RadMenu
>
</
ItemTemplate
>
</
telerik:GridTemplateColumn
>
</
Columns
>
</
MasterTableView
>
</
telerik:RadGrid
>
CSS:
<style type=
"text/css"
>
.rmScrollWrapContainer
{
border
:
1px
solid
white
!important
;
margin-right
:
20%
!important
;
}
</style>
Please provide your code if it doesn't help.
Thanks,
Princy.