function ShowWindow(win) {
if (!win.isVisible()) {
win.show();
win.restore();
//if the window was maximized before client minimizes it, we need to restore
//its maximized state
if (win._Maximized) {
win.maximize();
win._Maximized =
null;
}
}
//ensure that the currently active RadWindow will have the highest z-Index.
var popupElem = win.get_popupElement();
var oldZindex = parseInt(popupElem.style.zIndex);
var styleZIndex = win.get_stylezindex();
var newZIndex = (styleZIndex) ? styleZIndex : Telerik.Web.UI.RadWindowUtils.get_newZindex(oldZindex);
popupElem.style.zIndex =
"" + newZIndex;
win.setActive(
true);
}
alert( $get("<%= telerikAjaxCtrlID.ClientID %>"));
give you "object"
and
alert( $find("<%= telerikAjaxCtrlID.ClientID %>"));
give you "object object"
and that you can apply JQuery operations against the objects the statements return. And, I have read some Telerik documentation that refers me to http://api.jquery.com to get a list of what JQuery methods and properties are available because Telerik uses the original JQuery library that has been modified in a minor way with some appended code while preserving the original.
But, the api.jquery.com documentation describes functions such as $.get and $.find (NOT $get and $find), and none of the JQuery methods and properties that can be applied to $.get and $.find seem to work against what is returned by $find and $get. For example, the JQuery $.get function is used to retrieve javascript from the server - not to locate any controls on a page. I can't see how anyone could expect methods and properties that come from $.get to be able to work with $get which you seem to use to locate controls.
Where can I find documentation that describes the jquery methods and properties availabe from the objects returned by $find and $get. I can't use intellisense because I'm working on a corporate project, where the team leader won't allow the insertion of JQuery intellesense libraries into the webpages. Besides, I'm NOT looking for intellisense. I need a printed list of methods/properties that I can use which I can reference and have a global view of.
="rgcItemName" ' inside the grid's columns. The background color on the header doesn't change when you sort. How can manipulate this css class (HeaderStyle-CssClass="rgcItemName" ) in order to activate the background color when you click a header in order for it to sort?<telerik:GridTemplateColumn HeaderText="Name" HeaderStyle-HorizontalAlign="Center" HeaderStyle-CssClass="rgcItemName" ItemStyle-CssClass="rgcItemName" HeaderTooltip="Full spelled out name of the primitive. May not exceed 200 characters." SortExpression="name"> <ItemTemplate> <%#Container.DataItem("name").ToString%> </ItemTemplate> </telerik:GridTemplateColumn>="rgcItemName" .rgcItemName { width:13%; }Hello.
I was wondering if someone has experienced this problem and knows how to fix it.
In my web application, when a page with a RadScheduler component is launched, the current date is displayed on top of the component in the following format: Tuesday, August 30, 2011.
After a second or two, the date changes to 8/30/2011.
What should I do to prevent the change in the date format?
Thank you in advance.
Paulo
Error in: https://myserver/cloud/Telerik.Web.UI.WebResource.axd?type=rau
Error message: Request timed out.
I checked with one who got it several times and it sounds like she is running Silverlight. Is there a setting I need to tweak to keep it from timing out?