Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
59 views
Hey guys and gals,

First time posting here - but I'm thus far really liking all the products. In fact, I'll probably pick up the control pack if everything works out.

In any case, I'm a bit of a noob with all this and was looking for a solution to my issue. This situation:

I have a Stand-Alone Zone and a Datalist which has a Zone and Dock in each populated row. The end-all is that the user will populate the Stand-Alone with his/her selection from the Datalist.

I loaded everything in, ran it, and got an error.

 """"The ID of RadDock with ID='RadDock1' is not unique to RadDockLayout with ID='RadDockLayout1'. Please, set the UniqueName property of RadDock with ID='RadDock1' with a value, which is unique to RadDockLayout with ID='RadDockLayout1'."""""

So - I'm pretty sure I'm just not adding a spot of code somewhere or something. Anyhoo - is there anyone out there who could give me a hand with the solution?

I greatly appreciate it!
Thanks in advance.

Regards,

Matt
Matt
Top achievements
Rank 1
 answered on 13 Oct 2010
7 answers
105 views
Hi, I am facing a strange issue with RadMenu.
I set an OnClientItemClicking javascript function that gets correctly called in FireFox but does nothing in IE8 (if I put an alert in there it is not shown).
Is there any way I can debug this issue?
Thanks
Luca
Morten
Top achievements
Rank 2
Iron
Iron
Iron
 answered on 13 Oct 2010
5 answers
36 views
Hi,

I'm using RadChart in a SharePoint (MOSS 2007) enviroment.

The MOSS servers have sessionState disable. Thus I use the TempImageFolder property
Images of the charts are renderd. No problems here.

Now I started using Active Regions for drill down use of the graph.
And now I'm getting session state errors.

Is it not possible to have Active Regions without having sessionState on true ?

-----------------------------------------------------------------------------------------------------------
F.Y.I -> With Session state ON, the drill down function works.

Greetings
Erik
Erik
Top achievements
Rank 1
 answered on 13 Oct 2010
6 answers
108 views
I created a page for our internal site that uses the editor.   The end users are allowed to use this editor to add content to the site.  The problem is that when the content is in the editor the fonts appear much larger than when the content is displayed on the view page.  The view page is a totally seperate page from the editor page.

I looked at the HTML and the code is different between the two.  The editor uses <style> tags and the resulting html has <FONT> tags.

Is there some option I should be setting to get the output from the editor to use <style> tags?

Thank you
Alva
Top achievements
Rank 1
 answered on 13 Oct 2010
2 answers
167 views

hi,

i've recently encounter problem while working with radtreeview:

i've radtreeview with datasource (datatable) from database however when i click button i want to change that datasource 

(rebuild radtreeview) and load radtreeview with new nodes and roots; data from database are proper but assigning it to radtreeview 

doesn't work - old "state" radtreeview remains.

is there any way to do this ?

best regards

ksysiek

KRZYSZTOF
Top achievements
Rank 1
 answered on 13 Oct 2010
2 answers
88 views
I have an ajaxified grid that sits in a content page. The master page has a RadScriptManager tag and the content page has a ScriptManagerProxy tag. In the grid, I'm using the CommandItemSettings tag to display my Export to Excel buttons...

<CommandItemSettings ShowAddNewRecordButton="true" AddNewRecordImageUrl="../../App_Themes/InfoSource/Images/ico_add_24.png"
    AddNewRecordText="Add a Request" ShowExportToExcelButton="true" ExportToExcelImageUrl="../../App_Themes/InfoSource/Images/ico_excel_24.png"
    ExportToExcelText="Export to Excel" ShowExportToPdfButton="true" ExportToPdfImageUrl="../../App_Themes/InfoSource/Images/ico_acrobat_24.png"
    ExportToPdfText="Export to PDF" ShowRefreshButton="true" RefreshImageUrl="../../App_Themes/InfoSource/Images/ico_refresh_24.png"
    RefreshText="Refresh" />

I understand that I need to turn Ajax off for these buttons so that the export actually works. I'm trying to turn them off from the code behind using the following code...

if (e.Item is GridCommandItem)
{
    ScriptManager scriptManager = ScriptManager.GetCurrent(this.Page);
 
    Button btncmd = (e.Item as GridCommandItem).FindControl("ExportToExcelButton") as Button;
    scriptManager.RegisterPostBackControl(btncmd);
    btncmd = (e.Item as GridCommandItem).FindControl("ExportToPdfButton") as Button;
    scriptManager.RegisterPostBackControl(btncmd);
}

but I get an error:

Value cannot be null.
Parameter name: control

 
scriptManager.RegisterPostBackControl(btncmd);

I can't seem to figure out if I just don't have the name of the button's correct or if I have the ScriptManager setup wrong. Can you give me a hand with this? Thanks.
Philip Senechal
Top achievements
Rank 1
 answered on 13 Oct 2010
1 answer
96 views

Hi everyone.

This is the code

aspx

 

<

 

telerik:RadComboBox ID="rcmbPrioridad"

 

 

                                    runat="server"

 

 

                                    Skin="Mac"

 

 

                                    AutoPostBack="true"

 

 

 

                                    EmptyMessage=" -Seleccione prioridad- "

 

 

 

                                    MarkFirstMatch="True"

 

 

                                    TabIndex="1"

 

 

 

                                    Width="99%"

 

 

 

                                    ToolTip="Prioridad de pago">

 

 

 

     <Items>

 

 

 

         <telerik:RadComboBoxItem Value="0" Text="" />

 

 

 

         <telerik:RadComboBoxItem Value="1" Text="Normal" />

 

 

 

         <telerik:RadComboBoxItem Value="2" Text="Pago programado" />

 

 

 

         <telerik:RadComboBoxItem Value="3" Text="En espera" />

 

 

 

     </Items>

 

 

 

     <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>

 

 

 

 </telerik:RadComboBox>

 

 

 

<telerik:RadComboBox ID="rcmbTipoPeriodo"

 

 

                                     runat="server"

 

 

                                    AutoPostBack="true"

 

 

                                    Skin="Mac"

 

 

                                    Width="99%"

 

 

 

                                    Height="230px">

 

 

 

    <CollapseAnimation Type="OutQuint" Duration="200" />

 

 

 

</telerik:RadComboBox>

vb
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
    If Not Page.IsPostBack Then

 

        Call pcHabilitaCtrlRegistro(False)
    End If

 

 

End Sub

 

Protected

 

Sub rcmbPrioridad_SelectedIndexChanged(ByVal o As Object, ByVal e As Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventArgs) Handles rcmbPrioridad.SelectedIndexChanged

    do something....

 

 

End Sub

 

Private

 

Sub pcHabilitaCtrlRegistro(ByVal bolCtrlLlave As System.Boolean

 

 

    rcmbTipoPeriodo.Enabled = bolCtrlLlave
End Sub

The problem is when I change te seleccion of  "rcmbPrioridad" control the code does the following
1- Page_Load event    (Its correct)
2- rcmbPrioridad_SelectedIndexChanged    (Its correct)
3- rcmbTipoPeriodo_TextChanged   (Thast the problem)

Why enter to 3 step if any control change text property of rcmbTipoPeriodo

Thank so much.
Jose Luis.

 

goku
Top achievements
Rank 1
 answered on 13 Oct 2010
16 answers
193 views

I am using radeditor’s old version and now i want to upgrade to new one.

I downloaded the trial version and problem I am facing is, when I insert any ‘<span’> tag in radeditor, and try to read  the content of radeditor I am getting <font> tag instead of <span> tag.

 

For ex.

$find("RadEditor1").set_html('<span> hi </span>');

alert($find("RadEditor1").get_html());

 

I am getting alert ‘<font>hi</font>’ instead of ‘<span>hi</span>’.

Rumen
Telerik team
 answered on 13 Oct 2010
1 answer
278 views
Hi,

I'm adding some columns to a grid dynamically and have a select column but it's rendering incorrectly.  See attached png for the problem, but essentially the select hyperlink is appearing inside the first column.

the markup is:

<telerik:RadGrid ID="RadGrid_FileView" runat="server" Height="318px" AllowSorting="true"
    AllowPaging="false" AllowFilteringByColumn="false" AutoGenerateColumns="false"
    OnItemCommand="RadGrid_FileView_ItemCommand" ShowStatusBar="true">
    <MasterTableView AutoGenerateColumns="false" DataKeyNames="FileSharepointID">
        <Columns>
            <telerik:GridButtonColumn HeaderText="" Text="Select" CommandName="Select" />
            <telerik:GridBoundColumn HeaderText="File" UniqueName="Filename" DataField="Filename" />
        </Columns>
    </MasterTableView>
    <ClientSettings>
        <Selecting AllowRowSelect="true" />
    </ClientSettings>
</telerik:RadGrid>
Geoff Ballard
Top achievements
Rank 1
 answered on 13 Oct 2010
4 answers
70 views
I have one RADwindow in my page and when ever i close it by clicking on asp .net button its showing all the items on the parent page selected. its like when you press Select All from keyboard.  Same things does not happen if i click on red close button on right top corner.
Neo
Top achievements
Rank 1
 answered on 13 Oct 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Andrey
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Andrey
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?