Telerik Forums
UI for ASP.NET AJAX Forum
6 answers
214 views

Problem is evident when viewing this page in IE11: http://demos.telerik.com/aspnet-ajax/calendar/examples/overview/defaultcs.aspx

Telerik RadControls for ASP.NET Ajax: 2013.3.1015.40







The RadDatePicker likes to stack below the label. It does not do this in Firefox or Chrome.







I was able to get a workaround by pasting the following in my site's CSS file.



.RadPicker {
    display: inline-table;
}


Playing with the developer tools in IE11, I found that every inline option outside of just "inline" worked, but inline-table centered the label on the box.

Maria Ilieva
Telerik team
 answered on 17 Nov 2015
3 answers
115 views

Might it be possible to add a demo or provide example code for using Client Templates with the Gantt XML provider?

I have looked at the documentation related to Custom Fields extensively but cannot relate how to use Custom Fields with the XML provider.

 

With many thanks in anticipation.

 

 

 

David Sanderson
Top achievements
Rank 1
 answered on 17 Nov 2015
6 answers
124 views
I'm testing the RadDataForm control and I've noticed that it doesn't offer the intellisense for binding methods such as SelectMethod, UpdateMethod, InsertMethod, etc... yet the control does support the functionality of these.  This is confusing and am wondering if this control is fully compatible with .NET 4.5 webform binding scenarios.
Viktor Tachev
Telerik team
 answered on 17 Nov 2015
1 answer
102 views

I'm following this demo: http://demos.telerik.com/aspnet-ajax/filter/examples/filterinradwindow/defaultcs.aspx for a project I'm working on. The difference is my grid has detail grids. The issue is when I click on anything with a menu on the filters. The selection menu shows behind the window/modal. What's up with that?

 

 

Marin Bratanov
Telerik team
 answered on 17 Nov 2015
5 answers
84 views

Hi,

After upgrading to Q3 SP1 (from Q3), windows can't be moved all the way to the right and bottom of a restriction zone when using ligthweight render mode!

This did work in the Q3 release.

It also works if setting to Classic mode...

It seems like the padding and border of the window isn't taken care of in this case...

Sample:

<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="window.aspx.vb" Inherits="TestaTredjepartWeb.window" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
        <asp:ScriptManager ID="s" runat="server">
        </asp:ScriptManager>
        <div>
            <asp:Panel ID="pnlRestrictionZone" runat="server" Style="width: 700px; height: 500px; background-color: blue">
                <telerik:RadWindowManager ID="RadWindowManager1" runat="server">
                    <Windows>
                        <telerik:RadWindow ID="RadWindow1" runat="server" VisibleOnPageLoad="true" AutoSize="true" RenderMode="Lightweight" Title="Hello" NavigateUrl="http://www.telerik.com" VisibleStatusbar="false" RestrictionZoneID="pnlRestrictionZone">
                        </telerik:RadWindow>
                    </Windows>
                </telerik:RadWindowManager>
            </asp:Panel>
        </div>
    </form>
</body>
</html>

 

In the sample above, try move the window all the way to the right of the restriction zone, you will notice that there will be an extra space left (same as total padding and border of the window)!

Regards
Andreas

Marin Bratanov
Telerik team
 answered on 17 Nov 2015
3 answers
134 views
Hi,

in RadEditor included in DNN7 I have two problems.
With the default skin of radeditor I miss the thin border arround tables,
so If I insert a new one I can't even see it afterwards.
By changing the Skin to on other, for example the Vista Skin of the editor,
two images of the toolbar (Insert Media / Save Template) are missing.
You can see the attached screenshot.

How can I work arround?

Thanks, Tobi Langer
Tri
Top achievements
Rank 1
 answered on 17 Nov 2015
1 answer
89 views
When do you plan to publish ASP.NET AJAX releases in your private Nuget? Nowadays, it's quite wanted feature.
Rumen
Telerik team
 answered on 16 Nov 2015
1 answer
145 views

Hi,

I have a couple textboxes with validators on a page like so:

<script manager/>

<loading panel/>

<panel>

<textbox1 validationgroup=a/>

<validator1 validationgroup=a/>

<textbox2 validationgroup=a/>

<validator2 validationgroup=a/>

<button validation group=a causesvalidation=true/>

</panel>

 If I remove the second validator all goes OK the minute I add the second validator I get a javascript library error from ScriptResource.axd?d=....

0x800a1391 - JavaScript runtime error: '$telerik' is undefined.

I'm using the latest build v.2015.3.930.45  and this is what I have on my config file:

<httphandler> 

<add path="telerik.ui....webresources.axd" type="telerik...." verb="*" validate="false" 

</httphandler>

Has anybody else had this problem?

Thanks,

German

Pavlina
Telerik team
 answered on 16 Nov 2015
1 answer
63 views

I realized that when using client side programmatic or declarative binding

http://demos.telerik.com/aspnet-ajax/grid/examples/data-binding/client-side/programmatic/defaultcs.aspx

and the grid is rendered as Mobile, filters don't work anymore.

is there a fix?

Maria Ilieva
Telerik team
 answered on 16 Nov 2015
1 answer
477 views

I'm trying to figure out to I can show the generic radConfirm with "Yes" or "No" buttons instead of "OK" and "Cancel" buttons and have a post back occur when either "yes" or "no" occur to a different button. Right now I'm invoking radConfirm server-side using this 

 

code behind c#

 

              ShowConfirm("Are you sure that you want to use special option?", ConfirmPerformActionButton.UniqueID);

 

        private void ShowConfirm(string dialogText, string postBackUrl)
        {
            string script = string.Format("showConfirm(\"{0}\",\"{1}\");", dialogText, postBackUrl); ;
            ScriptManager.RegisterStartupScript(this.Page, this.Page.GetType(), "KEY", script, true);
        }

 

on the ascx i have

 

<script type="text/javascript">

    var confirmPostBackUrl;
    function showConfirm(dialogText, postBackUrl) {
        function f() {
            confirmPostBackUrl = postBackUrl;
            Sys.Application.remove_load(f);
            radconfirm(dialogText, confirmCallback);
        }
        Sys.Application.add_load(f);
    }
    function confirmCallback(arg) {
        if (arg) {
            __doPostBack(confirmPostBackUrl, '');
        }
    }
</script>

on master page i have

    <telerik:RadWindowManager ID="MasterRadWindowManager" runat="server">
    </telerik:RadWindowManager>

 

thanks for any suggestions!
 

 

Marin Bratanov
Telerik team
 answered on 16 Nov 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?