This is a migrated thread and some comments may be shown as answers.

RadWindow controls lose focus with RestrictionZoneID

2 Answers 143 Views
Window
This is a migrated thread and some comments may be shown as answers.
John
Top achievements
Rank 1
John asked on 25 Sep 2015, 08:52 PM

Utilizing: ASP.Net AJAX Q3 2014 

I'm opening windows, containing an aspx page, with various controls (combo, text, numeric, datepicker, etc.).  The RadWindowManager is set to KeepInScreenBounds="true" and RestrictionZoneID="ContentPane".  When running it on my Windows 7 desktop, it works great.  When running it on my Windows 8.1 ​Windows Surface Pro 3, the page controls lose focus after I click in the text entry box.  It then refreshes the window and doesn't allow me to change the value in the text box.  If I click on a RadComboBox, it fires the query and displays the dropdown; but, when I click on the text box to change the combobox value, it doesn't allow me to change the value in the text box..  This only applies to pages that are contained in a RadWindow, when running on a Windows Surface.  The problem might be specific to Windows 8.1; but, I don't have another 8.1 machine to test it.  Other aspx page controls work fine.  If I take the problem page and run it as a stand-alone page, without RadWindow, it works fine.  If I remove the RestrictionZoneID property from the RadWindowManager, the controls no longer lose focus; but, of course, I lose the ability to KeepInScreenBounds.  By the way, I get the same result whether I use the fancy RadWindow properties (below), or not.  In other words, if I just use ... <telerik:RadWindow ID="AssetCreateDialog" runat="server">, I get the same result.

 

 

 

<telerik:RadWindowManager ID="RadWindowManager2" runat="server" EnableShadow="true" Style="z-index: 12345" KeepInScreenBounds="true" RestrictionZoneID="ContentPane">

<Windows>​

<telerik:RadWindow ID="AssetCreateDialog" runat="server" Title="Create Asset" Height="650px" Top="50px"
                Width="800px" Left="125px"  ReloadOnShow="true" ShowContentDuringLoad="false"  VisibleStatusbar="false"  
                Modal="true" Behaviors="Move, Resize, Close">
            </telerik:RadWindow>

 ​

2 Answers, 1 is accepted

Sort by
0
Marin Bratanov
Telerik team
answered on 29 Sep 2015, 06:34 AM

Hi John,

This is a known issue with the restriction zone and Surface devices: http://feedback.telerik.com/Project/108/Feedback/Details/38634. The only workaround we are aware so far is to remove the RestrictionZoneID property.

The RestrictionZoneID feature itself poses some limitations (you can find them in the Common Issues help article) and it is not very suitable for modern sites that emphasize on responsiveness and adaptability according to the screen resolution.

A RadWindow inherits the settings from its manager, so you can also try removing the restriction zone like this, in case you want to keep it for most cases:

<telerik:RadWindowManager ID="RadWindowManager1" runat="server" RestrictionZoneID="ContentPane">
    <Windows>
        <telerik:RadWindow ID="RadWindow1" runat="server" OnClientBeforeShow="removeRestrictionZone"></telerik:RadWindow>
    </Windows>
</telerik:RadWindowManager>
<asp:Button ID="Button1" Text="open wnd" OnClientClick="radopen('', 'RadWindow1');return false;" runat="server" />
<script>
    function removeRestrictionZone(sender, args) {
        if ($telerik.isIE && $telerik.isTouchDevice) {
            sender.set_restrictionZoneID(null);
        }
    }
</script>

As for the KeepInScreenBounds property - it should work without a restriction zone as it is designed to be standalone.

What I would also suggest is using the RenderMode=Lightweight setting because it improves the screen boundary and dragging detection.

Regards,

Marin Bratanov
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
0
John
Top achievements
Rank 1
answered on 29 Sep 2015, 03:45 PM

Martin, this solution looked really promising; however, in my app, the OnClientBeforeShow was causing my default homepage to scramble.  I tried with the associated javascript and blank; same result either way.  ​There m​ight be a conflict elsewhere.  For now, I'll remove the RestrictionZoneID all together, as it isn't critical.

 

Tags
Window
Asked by
John
Top achievements
Rank 1
Answers by
Marin Bratanov
Telerik team
John
Top achievements
Rank 1
Share this question
or