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
;
}
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.
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?
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">
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
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
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
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?
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!