hi this is the structure of my page..
loading panel is working fine in Chrome and IE8.
but in FireFox page is not completely loaded but the loading image vanished.
<telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">
<script type="text/javascript">
function pageLoad(sender, eventArgs) {
if (!eventArgs.get_isPartialLoad()) {
var myAjaxControl = <%= RadAjaxManager1.ClientID %>;
myAjaxControl.ajaxRequest();
}
}
function OnResponseEnd(sender, eventArgs)
{
var currentLoadingPanel = $find("<%= RadAjaxLoadingPanel1.ClientID %>");
var currentUpdatedControl = "ctl00_PageCenterContent_Radpanebottom";
currentLoadingPanel.hide(currentUpdatedControl);
}
function OnRequestStart(sender, eventArgs)
{
var currentLoadingPanel = $find("<%= RadAjaxLoadingPanel1.ClientID %>");
var currentUpdatedControl = "ctl00_PageCenterContent_Radpanebottom";
currentLoadingPanel.show(currentUpdatedControl);
Hi all,
How to persistence the selected row of file explorer during the sorting and paging of telelrik file explorer grid.
I detected TELERIKs new version have already build in functionality of
persistence the selected row during the sorting and paging. i am using
DOTNETNUKE 6.1.5 and telelrik version is -2012.1.411.35,
is there any version problem ? or how can i do this ...
when hovering over the textbox, however, this style is lost and it reverts to it's default font. Is there something else I need to set or is this a defect?
I have a function that iterates through all the nodes and places the checked nodes into a list. The problem is that it will miss any child nodes of collapsed parents because the parents are created on the server side with Telerik.Web.UI.TreeNodeExpandMode.ServerSideCallBack.
I believe what is happening is that because these nodes are defined requiring a callback, that their children are not written out to the browser until that AJAX callback is fired. Because of this, they do not come up in the tree.get_allNodes call I use to iterate through all the nodes at the time I use it because the parent nodes in question have not been expanded (i.e., the child nodes in question have not been added to the document).
Forcing all the nodes to expand prior to checking for checked nodes works, but is unwieldy.
Does anyone have any suggestions or ideas about how I might work around this? I'm not that familiar with using this control, so I thought maybe a more experienced user might be able to guide me in the right direction.
One can set it to be expanded on load as well as to not collapse on blur, but is there a way to force it to always be expanded? Various events will still collapse it and make the app look clunky. :<
i would like to use it like a listbox but with the filtering of a combobox (letter decoration of matched strings, etc ). I currently do it with standard asp.net listbox control and textbox control but want the rich text, etc. :>
I have a master/detail RadGrid that is using the detail row footer to display a sum of the detail rows. What I need to do is to display only the detail row footer row values but hide all of the actual detail rows. How can I do this?
I use a RadGrid that receives data from a webservice. The webservice returns items and count in "Count" property. But NumericPages pager shows only "1" in pager bar. I have a lot of items and pager should show several pages. NextPrevNumericAndAdvanced shows message "Displaying page 1 of 151, items 1 to 15 of 2261." in this case. It means that count is recieved correctly.
What's the reason of this NumericPages pager behaviour? How can I get it to work properly?