I want to reftesh the child windos from parent how refresh the child windows from parent.
the child windows contain the Radgrid . want to refresh the grid value
how to do this
my code is
for open child windows
function OpenResults() {
GetRadWindow().BrowserWindow.OpenPopUp(null);
GetRadWindow().close();
}
function GetRadWindow() {
var oWindow = null;
if (window.radWindow) oWindow = window.radWindow; //Will work in Moz in all cases, including clasic dialog
else if (window.frameElement.radWindow) oWindow = window.frameElement.radWindow; //IE (and Moz az well)
This is probably really quick and simple but I couldn't see an answer.
My rotator displays two entries at a time. I need to say that if the count is less than 3 don't rotate. at teh moment the rotation still occurs and as such the two items switch place which looks a bit stupid.
Is there some way of setting the rotator to not rotate. Obviously I could set the frame duration to some silly value to get around this.
Here is the problem. When I click the the drop down button and select the same item. By right the selectedIndexChanged fire. However after the latest telerik version update. It will fire and the selectedvalue is blank.
I found this problem in IE7 and IE8 but working fine in firefox.
There is a large number of columns, i.e. 100+ (a lot of data). I also assigned column width in code at ColumnCreated time.
The grid displays perfectly. It displays about 26 columns at any given time with first 7 frozen. So, when the grid first displays, one can see columns 1 through 7 (frozen) and 8 through 25 When I click to the right of the scrollbar, I expect to see columns 1 through 7 (frozen) and 26 through 43. Instead, the grid would display 1 through 7 and 35 through 52, essentially skipping some columns. Not good from a user's standpoint.
What would account for this odd behavior? Would hidden columns cause this? I appreciate any advise.
Hi,
I have a radgrid on my aspx page. I am navigating thru my custom page. I ahve to get the correct page index to pass it to my database based on which the data i get to be bind.
I am currently using RadGrid1.CurrentPageIndex for knowing the Index where I am.
But actually during my testing i found it is wrong.
What is variable or field name do i need to check to get the correct Page Index to bind my custom page to.
I am using Telerik 2009.2.826.35 ajax controls .
Unfortunately, whenever I try to set the controls to be updated by the ajaxmanagerproxy everything
is messed on the screen, as you can see below. I am use a Page Control.
Does anyone know why this should be happening?
I tried many variations of the controls configuration without success. I also looked at samples, but
none of them has something compared to my configuration .
I have a radgrid with detail table and i would like to disable certain rows but keep the expand button enabled.
In the grid prerender event i have this code :
foreach (GridDataItem item in (sender as RadGrid).Items)
{
if (DisableRow(item))
{
item.Enabled = false;
item["ExpandColumn"].Enabled = true;
(item["ExpandColumn"].Controls[0] as Button).Enabled = true;
}
}
But this doesn't enable the expandbutton, so i think setting the item to disabled will always force the expand button to be disabled as well.
I could set the font settings so the row would look disabled but then i wouldn't be able to check if it is enabled in client-side code, i need to do that to determine if a contextmenu may be shown or not.
I have a RadGrid posted with data by use of GridBoundColumns. These columns/cells is given a fixed width and itemstyle-wrap set to false. This cause that full text in some cells isn't shown fully, and therefore I want to have a tooltip at each cell, showing the full content. I don't have the tooltip possibility at the GridBoundColumn, and cannot figure out how to do it afterwards by either OnItemCreated or OnDataBound?!