Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
142 views
When i minimize my window in a tabstrip like your demo and I click on tab to show window like this, The content of my window is reloaded and i lost all my change before minimize. If i look in source of my page, i see change i've made but restore cause a reload. Why ?

 

 

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);

 

 

}

Collin
Top achievements
Rank 1
 answered on 01 Sep 2011
1 answer
365 views
I understand that this is supposed to be JQuery code, and the following calls in many of your clientside ajax samples:

 

 

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.

 

Dan Lehmann
Top achievements
Rank 1
 answered on 01 Sep 2011
2 answers
68 views
Hi!
I'am trying to drag and copy one record from a Radgrid to another Radgrid, but at the moment only can Drag and Drop, i would like to just copy, records from Radgrid1 have to stay here.
Is it possible to do this?.
kharen
Top achievements
Rank 1
 answered on 01 Sep 2011
4 answers
97 views
I need to make the entire time slot (the cell for a given day) clickable to the detail view of the day. So the same behaviour as clicking the date link but for the whole cell. Any ideas?

Thanks,
Dan
Dan
Top achievements
Rank 1
 answered on 01 Sep 2011
2 answers
106 views
Hello,

I have a costume skin that works fine, except when I implement the 'HeaderStyle-CssClass="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>


HeaderStyle-CssClass="rgcItemName"

.rgcItemName
{
    width:13%;
}


your help would be appreciated!

Thanks!

German
German
Top achievements
Rank 1
 answered on 01 Sep 2011
2 answers
330 views

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

Paulo
Top achievements
Rank 1
 answered on 01 Sep 2011
1 answer
129 views
I would like to prevent the selection of all child items. All I need is the main items to expand to show the child. I need to eliminate that back ground and the action of the selection of the child item.

Thanks,

TC

Here is my code so far.

<style type="text/css">
    .RadPanelBar .rpRootGroup
    {
        border: none !important;
        text-decoration: none;
    }
    
    .RadPanelBar .rpRootGroup .rpLink .rpSelected
    {
        background-color: #FFFFFF;
    }
    
    .RadPanelBar .rpRootGroup .rpLink, .RadPanelBar .rpRootGroup .rpOut
    {
        border: 0 !important;
        padding: 0 !important;
        background-color: #FFFFFF;
    }
    .RadPanelBar .rpExpandHandle
    {
        display: none !important;
    }
</style>


<telerik:RadPanelBar runat="server" ID="RadPanelBar1" Width="90%">
</telerik:RadPanelBar>

codebehind: RadPanelBar1.LoadContentFile("Files/HomeLoanFAQs.xml");


<PanelBar>
  <Item Text="What is a mortgage?">
    <Item Text="A Mortgage (also called a home loan) is a legal contract made between a lender and a borrower that uses property as collateral to secure the loan. The lender can take possession of the property if the borrower fails to pay the prearranged home loan payments." />
  </Item>
  <Item Text="What is a mortgage refinance?" >
    <Item Text="A homeowner acquires a new loan in order to pay off their existing mortgage loan. A couple reasons that homeowners refinance obtain a lower interest rate and/or access cash form their home equity in the way of &quot;cash out refinance&quot;." />
  </Item>
  <Item Text="What is a second mortgage?" >
    <Item Text="A second mortgage loan is a lien, which is in second position, behind the first mortgage loan. Both the first and second mortgage loans are secured by the same property. Generally a second mortgage loan is based on the amount of equity in the property." />
  </Item>
</PanelBar>


Kate
Telerik team
 answered on 01 Sep 2011
1 answer
230 views
We have some users who are getting the following exception when uploading:

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?

Dobromir
Telerik team
 answered on 01 Sep 2011
14 answers
271 views
Hey Telerik,

I ran in an interesting issue today. I deployed a web application that uses FileExplorer.... some browsers can't press the "Select" button in the Upload window. The cursor changes to a "hand" like you can click on it... but no amount of clicking around will execute it.

It's strange...  I've seen it happen in both IE and Firefox.

I know there is a control buried underneath it.... I've search the forums but didn't see anything.

Telerik.web.ui.dll: 2011.1.322.40
Firefox: 3.6.16
Flash: 10,1,102,64

Any clue on what's going ok ?

Screenshot: http://i.imgur.com/NLEZq.png

-Josh
Dobromir
Telerik team
 answered on 01 Sep 2011
1 answer
214 views
Hi,

I just installed Raditor 5.8.10 on my SP2010 farm.  I see the following exception on my WFE server.  Any idea?
=========================================================================

08/31/2011 20:57:31.70  w3wp.exe (0x0390)                        0x12D0 SharePoint Foundation          Runtime                        tkau Unexpected System.Exception: Invalid Configuration File: /_wpresources/RadEditorSharePoint/5.8.10.0__1f131a624888eeed/Resources/ConfigFile.xml. Error message: Could not find a part of the path 'c:\_wpresources\RadEditorSharePoint\5.8.10.0__1f131a624888eeed\Resources\ConfigFile.xml'.    at Telerik.SharePoint.MOSSRadEditor.GetValidConfigFile()     at Telerik.SharePoint.MOSSRadEditor.ProcessConfigFile()     at Telerik.SharePoint.MOSSRadEditor.OnLoad(EventArgs e)     at Telerik.SharePoint.RadHtmlField.OnLoad(EventArgs e)     at System.Web.UI.Control.LoadRecursive()     at System.Web.UI.Control.LoadRecursive()     at System.Web.UI.Control.LoadRecursive()     at System.Web.UI.Control.LoadRecursive()     at System.Web.UI.Control.LoadRecursive()     at System.Web.UI.Control.LoadRecursive()     at System.Web.... 6e471adf-4e18-42e2-bd63-948f1e33bf6d
08/31/2011 20:57:31.70* w3wp.exe (0x0390)                        0x12D0 SharePoint Foundation          Runtime                        tkau Unexpected ...UI.Control.LoadRecursive()     at System.Web.UI.Control.LoadRecursive()     at System.Web.UI.Control.LoadRecursive()     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) 6e471adf-4e18-42e2-bd63-948f1e33bf6d
Ultra
Top achievements
Rank 1
 answered on 01 Sep 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?