Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
144 views
Mornig all

Is it possible to set the chart image src to be an absolute path as this is needed for another part of our program to work? Currently the src is src="chartimage.axd......"

Thanks
Jon
Jonathan
Top achievements
Rank 1
 answered on 21 Oct 2008
1 answer
73 views
Hi ,Guys

(1) Could we use Line RadChart (in RadControls for ASP.NET AJAX Q2 2008) to draw chart as Line_Graph_Group_SubGroup_On_X_Axis.jpg  ?

(2) Could we group Year and Term on X axis ?

Thanks for your time.

Eman Lee
Giuseppe
Telerik team
 answered on 21 Oct 2008
7 answers
124 views
I cant seem to get this to work. Ive followed the guide completely including:

1. installed the ajax extensions
2. added all the necessary ajax web.config stuff
3. Drag and drop Telerik.Web.UI.dll into the GAC
4. added the safecontrol for this as such

<SafeControl Assembly="Telerik.Web.UI, Version=2008.1.515.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI" TypeName="*" Safe="True"  />
<SafeControl Assembly="Telerik.Web.UI, Version=2008.1.515.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.Design" TypeName="*" Safe="True" /> 

with the correct version.

and the error i get when i add these safecontrols is:

Parser Error Message: This page has encountered a critical error. Contact your system administrator if this problem persists.

Source Error:

Line 3:  <%@ Import Namespace="Microsoft.SharePoint.ApplicationPages" %>
Line 4:  <%@ Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
Line 5: <%@ Register TagPrefix="wssuc" TagName="Welcome" src="~/_controltemplates/Welcome.ascx" originalAttribute="src" originalPath="~/_controltemplates/Welcome.ascx" %>

when i take out the safecontrol the page works fine?
TerraForum
Top achievements
Rank 1
 answered on 21 Oct 2008
0 answers
163 views
Hi,
in my application,

How to remove the child nodes while collapsing the parent node.
because while i am trying to collapse and then expand it gives the duplicate childs.


how can i solve this..
cv
Top achievements
Rank 1
 asked on 21 Oct 2008
1 answer
227 views
Hi,

Could anyone please tell me how to retrieve the value selected from a RadComboBox into the JavaScript.
I used the following code:

function

RadComboBox1_SelectedIndexChanged(sender, args)
{
    tableView.set_pageSize(sender.getValue());
}

But it throws the error "Object doesnot support the property or method"..
Please help soon..

Thanks,
Pradeep

 

Rosi
Telerik team
 answered on 21 Oct 2008
1 answer
137 views

Would it be possible to implement the EmptyListItem functionality as seen in GridDropDownColumn also in the RadComboBox control?

With the GridDropDownColumn, you can add this:

EnableEmptyListItem="true" EmptyListItemText="(select project)" EmptyListItemValue="" 

With the ComboBox you can set Text="(select item)" but that disappears after you select an item, or you can manually add a first item and then set AppendDataBoundItems="true" but that's not as elegant as above.
Rosi
Telerik team
 answered on 21 Oct 2008
2 answers
130 views
Hi
I have got a hierarchy grid which im populating its detailview programatically. I would like to make a collapse sign(+) appear when ever a row has a subrow underneath. Does anyone know how to do this(Rigth now its only appearing when i click the row).

Thank you.

Omlac
Top achievements
Rank 1
 answered on 21 Oct 2008
2 answers
100 views
Hi,

Im trying to work out how to order by the group header.  I have the following grouping:

            GridGroupByExpression expression = new GridGroupByExpression(); 
            GridGroupByField gridGroupByField = new GridGroupByField(); 
            gridGroupByField = new GridGroupByField(); 
            gridGroupByField.FieldName = "CustomerName"
            gridGroupByField.HeaderText = "Customer Name"
            expression.SelectFields.Add(gridGroupByField); 
            gridGroupByField = new GridGroupByField(); 
            gridGroupByField.FieldName = "CustomerName"
            gridGroupByField.HeaderText = "Customer Name"
            expression.GroupByFields.Add(gridGroupByField); 
 
            gridGroupByField = new GridGroupByField(); 
            gridGroupByField.FieldName = "CustomerStatus"
            gridGroupByField.HeaderText = "Customer Status"
            expression.SelectFields.Add(gridGroupByField); 
            gridGroupByField = new GridGroupByField(); 
            gridGroupByField.FieldName = "CustomerStatus"
            gridGroupByField.HeaderText = "Customer Status"
            expression.GroupByFields.Add(gridGroupByField); 
 
            gridGroupByField = new GridGroupByField(); 
            gridGroupByField.FieldName = "CustStatusID"
            gridGroupByField.HeaderText = "Number of splits: "
            gridGroupByField.HeaderValueSeparator = " "
            // gridGroupByField.FormatString = "<strong style='color:red'>{0}</strong>"; 
            gridGroupByField.Aggregate = GridAggregateFunction.Count; 
            expression.SelectFields.Add(gridGroupByField); 
 
            rg_Results.MasterTableView.GroupByExpressions.Add(expression); 

I want to order by the customer status in the header, how would i do this?



Paul
Top achievements
Rank 1
 answered on 21 Oct 2008
1 answer
115 views
Hi,
I'm talking about the latest version of AJAX RadControls.
I've a DatePicker with this code:

<tk:RadDatePicker runat="server" ID="ForwardCalendar" Culture="it-IT" Skin="Telerik" 
    Calendar-ShowRowHeaders="false" Calendar-EnableMultiSelect="false" Calendar-EnableMonthYearFastNavigation="false" 
    Calendar-EnableNavigationAnimation="true"
    <DateInput runat="server" EnableEmbeddedSkins="false" AutoPostBack="false"
    </DateInput> 
    <DatePopupButton ImageUrl="~/images/icons/calendar.png" HoverImageUrl="~/images/icons/calendar.png" 
        ToolTip="" /> 
</tk:RadDatePicker> 

The problem is, in IE7 only (but maybe in release 6 too), that when I choose a date from the calendar, the page scrolls up to the top. I think that maybe this behaviour is caused by the '#' at the end of each day selector link.
I saw another post similar to this but I've tried to describe the problem more in detail. I hope there is a solution (maybe preventing the default event for the link via javascript?).
Thanks.
Dimo
Telerik team
 answered on 21 Oct 2008
3 answers
97 views
Hi I have 12 Textarea Controls which I spell check using the RAD spell control.

I use the  MultipleTextSource(sources) function provided on the documentation section. http://www.telerik.com/help/aspnet-ajax/spell_howtomutlipletextareas.html

Everything works great but I was wondering if there is a way to use a distinct controlSeperator for each Text Area so I can put labels in the spell checker window.

Is this possible?

 function MultipleTextSource(sources) {  
                 this.sources = sources;  
                 this.get_text = function()  
                 {  
                    var texts = [];  
                    for (var i = 0; i < this.sources.length; i++)  
                    {  
                       texts[texts.length] = this.sources[i].get_text();  
                    }  
                    return texts.join("<controlSeparator><br/>LABEL 1<br/></controlSeparator>");  
                 }  
                 this.set_text = function(text)  
                 {  
                    var texttexts = text.split("<controlSeparator><br/><br/></controlSeparator>");  
                    for (var i = 0; i < this.sources.length; i++)  
                    {  
                       this.sources[i].set_text(texts[i]);  
                    }  
                 }  
                } 

I use
the  site.
I use the javascript
George
Telerik team
 answered on 21 Oct 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?