Telerik Forums
UI for ASP.NET AJAX Forum
9 answers
178 views
I have 2008.1.515 installed on my dev machine, as well as the live server.  I downloaded the "Automatic installation" (the _dev.exe) file, and the "DLL and scripts only" (the _dev_hotfix.zip) file. 

After reading the update notes, it said that I only need to replace the hotfix files into my existing projects.

Then, what about any new project?  Should I install the "Automatic installation" files as well, besides the hotfix?

Thanks
Konstantin Petkov
Telerik team
 answered on 25 Aug 2008
1 answer
119 views

Hi

Is there a way to embed the rad editor control in moss 2007 page layouts?

Thanks

George
Telerik team
 answered on 25 Aug 2008
3 answers
135 views
hello

i want set a text and value of Radcombobox without Fire OnInputClick
from RadComboBox

i start other post in 
http://www.telerik.com/community/forums/thread/b311D-bkktbd.aspx

that describe my question


thanks
Davari
Javad Davari
Top achievements
Rank 1
 answered on 25 Aug 2008
3 answers
121 views

Hi

We have tried to upgrade rad editor on moss 2007 by retracting then removing the solution and then adding the new one, that did not work so we tried to re-install the previous version which works fine in the site collections but it does not appear under the solution management. when try to retract or delete it says that it does not exist under the solution store.
We can't add the solution again because we get an error message 
name:radeditormoss.wsp depends on other objects which do not exist

Thanks

George
Telerik team
 answered on 25 Aug 2008
4 answers
229 views

We are actually encountering an error when trying to open a RadWindow.

Markup:

<

rad:RadWindowManager ID="rwmDocumentStatus" runat="server" Skin="Office2007" ClientCallBackFunction="CallBackFunctionDocumentStatus"

OnClientShow="OnClientShowDocumentStatus"

OnClientClose="OnClientCloseDocumentStatus">

<windows>

<rad:RadWindow ID="rw_StatusSelection" runat="server" Width="400px" Height="275px" NavigateUrl="./UserControls/SubDialogs/DocumentStatus.aspx"

Modal="True" Left="" Title="" Top="" />

</windows>

</rad:RadWindowManager>

On Button Click we first this javascript function:

function

ShowSaveOptions()

{

var oWnd = window.radopen(null, "rw_StatusSelection");

if (oWnd.GetUrl())

oWnd.SetUrl(oWnd.GetUrl());

else

{

OnClientShowDocumentStatus(oWnd);

oWnd.SetUrl(radWindowNavigateURL);

oWnd.SetHeight(275);

oWnd.SetWidth(400);

oWnd.OnClientClose =

"OnClientCloseDocumentStatus";

}

}


On the line "var oWnd = window.radopen(null, "rw_StatusSelection") the error
"Sys.InvalidOperationException: Two components with the same id 'rw_StatusSelection' cant be added" is thrown.

There is only one RadWindow with that ID. So I debugged the code and saw that the error is thrown by this piece of code (Microsoft.Ajax.js.debug).

function

Sys$_Application$addComponent(component) {

/// <param name="component" type="Sys.Component"></param>

var e = Function._validateParams(arguments, [

{name:

"component", type: Sys.Component}

]);

if (e) throw e;

var id = component.get_id();

if (!id) throw Error.invalidOperation(Sys.Res.cantAddWithoutId);

if (typeof(this._components[id]) !== 'undefined') throw Error.invalidOperation(String.format(Sys.Res.appDuplicateComponent, id));

this._components[id] = component;

}

Environment Info:
There is a RadEditor in a TabPanel. When the button is clicked the user tries to update/insert a new article, which was writtein the RadEditor. On the Save Button click the radwindow should be opened and a special state has to be selected how the article should be saved. The Radwindow works fine when we start with an empty RadEditor. But when we update an article (when the Editor was filled with text at page load) the mentioned error is thrown. In both cases (new and filled editor) the button click is executing the same code.

sohrab
Top achievements
Rank 1
 answered on 25 Aug 2008
2 answers
112 views
Hi,

I have the following piece of code:

<radG:GridDropDownColumn
   DataSourceID="odsTitles"
   ListTextField="Description"
   ListValueField="TitleID"
   DataField="Title.Description"
   UniqueName="TitleDescription"
   HeaderText="Title">
</radG:GridDropDownColumn>

Here is my object datasource:

<asp:ObjectDataSource
   ID="odsTitles"
   TypeName="MyBank.Lookup.TitleManager"
   SelectMethod="GetTitles"
   runat="server">
</asp:ObjectDataSource>

My first question is:

If the grid displays all the rows, my title is not set to the title which is in my table, it seems to select the first item in the title dropdown list.

Second question, when I click on add new record, then I get the following error.

DataBinding: 'Telerik.WebControls.GridInsertionObject' does not contain a property with the name 'Title'.

The current grid loads a whole lot of Communication objects.  In the Communication class I have a reference to the Title class.

Please can someone help me?

Thanks
Brendan
Brendan Vogt
Top achievements
Rank 1
 answered on 25 Aug 2008
1 answer
104 views
Hi,

I am currently using rad editor to modify stylesheets with great difficulty. The problem lies with the fact that when a stylesheet is loaded within the editor all the whitespaces are removed. eg.

abbr,acronym,dfn{cursor:help;border:0;}
a abbr,a acronym,a dfn{cursor:pointer;}
pre,address{margin:0;padding:0;}
p,blockquote{margin:0;padding:0 0 1em 0;line-height:1.3em;}
img{border:0;}
small{font-size:0.91em;}

becomes

abbr,acronym,dfn{cursor:help;border:0;} a abbr,a acronym,a dfn{cursor:pointer;} pre,address{margin:0;padding:0;} p,blockquote{margin:0;padding:0 0 1em 0;line-height:1.3em;} img{border:0;} small{font-size:0.91em;}

Is there a way to fix this problem. I have disabled all contentfilters but this still occurs.

Lee
Rumen
Telerik team
 answered on 25 Aug 2008
2 answers
330 views
Hi,
I have RadGrid with some columns.
I use in RadGrid for edit mode FormTemplate and inside FormTemplate I have some textboxes (some textboxes are disabled and other enabled ) and one checkbox.
 And now in edit mode , when I check off my checkbox, I need to make enable all textboxes.  So I have a problem, because I don´t know, how to catch OnCheckChanged event in  Form Template in RadGrid.
Can anyone help me?
Thanks
Vlastimil Poděbradský
Top achievements
Rank 1
 answered on 25 Aug 2008
1 answer
133 views
I have a splitter, sliding zone and 2 sliding panes configured so that they each drop down with mouse-over. The mouse-over behaviour works fine.
When I click the dock button on either pane I expect the pane to remain displayed, but it disappears instead.
I have spent about an hour looking at the responses to other people who have had this problem and still do not understand how to make this basic expected behaviour to work.
Could you provide a clear solution to enable me to get this to work?
many thanks.

ASPX below:

<

body runat="server" id="MainBody" style="margin-left: 0; margin-top: 0">

<form id="form1" runat="server">

<telerik:RadScriptManager ID="RadScriptManager1" runat="server" OutputCompression="AutoDetect">

</telerik:RadScriptManager>

<telerik:RadSplitter ID="RadSplitter1" runat="server" Items-Capacity="4" Orientation="Horizontal"

SplitBarsSize="" Width="100%">

<telerik:RadPane ID="RadPane1" runat="server">

<telerik:RadSlidingZone ID="RadSlidingZone1" runat="server" Height="22px">

<telerik:RadSlidingPane ID="RadSlidingPane1" runat="server" Height="400px" Title="SlidingPane1">

aaaaaaaaaaaaaaaaaaaaa

</telerik:RadSlidingPane>

<telerik:RadSlidingPane ID="RadSlidingPane2" runat="server" Height="400px" Title="SlidingPane2">

bbbbbbbbbbbbbbbbbbbb

</telerik:RadSlidingPane>

</telerik:RadSlidingZone>

</telerik:RadPane>

</telerik:RadSplitter>

</form>

</

body>

Tsvetie
Telerik team
 answered on 25 Aug 2008
1 answer
148 views
Hello!

I managed to disable the selection for some rows according to this link:
http://www.telerik.com/community/code-library/submission/b311D-tmkbk.aspx

My Problem is the following:
When clicking the checkbox in the header (select all items) all items except the ones that are disabled are checked --> as expected.
The Problem: The Checkbox in the header does not stay checked.
That means that i cannot deselect all selected items.

Can you provide a solution for this problem.

thx in advance

Veli
Telerik team
 answered on 25 Aug 2008
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?