Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
120 views
Hello,

Is there any way to display the text in a Radgrid column on a single line, with the whole text appearing as a tooltip , if the column width is not enough to display the whole text?

Thank you,
Krishnen
krishnen
Top achievements
Rank 1
 answered on 25 Aug 2009
4 answers
358 views
Hi Telerik,

I have an UpdatePanel where I do some Ajax processes.
When I want to save my form, I want to do a PostBack of my page. I do it so with a PostBackTrigger, such as:
<asp:PostBackTrigger ControlID="but_save" />

The thing is, when the page reloads, I loose the skin of my RadControls items, expect the RadComboBox ones. I fixed this problem for my RadUpload and RadGrid (by setting the EnableAjaxSkinRendering Property to true on these elements after the update).
But it still doesn't work with my RadDatePicker... I set the same property to true, before and/or after the update, but the skin is not rendered.

Do you know what my problem can be?

Thanks for your help.
Remi


Veli
Telerik team
 answered on 25 Aug 2009
4 answers
93 views
Dear Sirs,
i have a problem: i need to retrieve ParentID Node of Selected Node, how can i do that?
If possible in VB language
Many thanks

Luca
Luca Fumagalli
Top achievements
Rank 1
 answered on 25 Aug 2009
2 answers
96 views
Is it possible to use a RadTextBox as an item in the toolbar?  For example, as the subject line to an email?
Rumen
Telerik team
 answered on 25 Aug 2009
2 answers
141 views
Hi,
I use linq and will display the default valuse when the User insert an Record.
That is my solution:


Class:
ublic partial class VersandUnternehmen : INotifyPropertyChanging, INotifyPropertyChanged  
{  
      
    private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);  
      
    private int _VersandunternehmenID;  
      
    private string _Text;  
      
    private int _Sortierung =100 ;  
      
    private string _Memo;  
      
    private System.Data.Linq.Binary _Timestamp;  
      
    private string _Anwendung= ConfigurationSettings.AppSettings["Anwendung"].ToString();  
      
    private EntitySet<VersandServicearten> _VersandServicearten; 

Set the default Values
protected void RG1_ItemCommand(object source, Telerik.Web.UI.GridCommandEventArgs e)  
    {  
        if (e.CommandName == RadGrid.InitInsertCommandName)  
        {  
            
            VersandUnternehmen vu = new VersandUnternehmen();  
            ListDictionary defaultValues = new ListDictionary();  
 
            defaultValues["Anwendung"] = vu.Anwendung;  
            defaultValues["Sortierung"] = vu.Sortierung;  
            e.Item.OwnerTableView.InsertItem(defaultValues);  
        }  
    } 

Here I have only 2 Values that with geht default values, but in other classes it will be 20-40 Values.
is there  a shorter solution  to set set the defaultvalues?

Thank U
Dieter
Dieter
Top achievements
Rank 1
 answered on 25 Aug 2009
1 answer
84 views
Now this is REALLY weird. Upload has been working fine until today (or at least I think it has been) and I noticed that it is not uploading any files. I have tested it with my development and well as production and I get the same results.

I select an image, click Upload and the UploadedFiles has no files and InvalidFiles as no files. It is as if it is not doing anything. I havenot changed any code, so what is going on?
ClarkSRoberts
Top achievements
Rank 1
 answered on 25 Aug 2009
6 answers
340 views
I've searched through the forums and can't find a solid solution to this.

Here is the scenario:
  • I'm populating a RadTreeView with data from a sqldatasource.
    Here are the lines of code that set the data source and related fields.

                             DataFieldParentID="parentid" 
                             DataFieldID="id"                              
                             DataTextField="tooltip" 
                             DataNavigateUrlField="url"  
                             DataSourceID="SqlDataSource1" 

  • When i click on a node i want the NavigateUrl that has been set from the sqldatasource to open in a RadPane (that's located on the same page)



Matt Johnston
Top achievements
Rank 1
 answered on 25 Aug 2009
4 answers
243 views
Hi,

I have a RadMenu with 1 level of items.  I have given the "New" menu item an AccessKey of N.  When I hit on my keyboard alt+N it will select the menu item but not activate its postback like a click or hitting enter while focused on it would.  Is there a way to tell the control when its accesskey have been activated to perform a click?
Michael Arocho
Top achievements
Rank 2
 answered on 25 Aug 2009
1 answer
383 views
Hi,

Please I have 2 problems I can not solve in RadScheduler:
1- I can not manage the Row Height of the Cell in Monthly View, I try all the ways by change the RowHeight Property or by CSS and no effect, it is still the same and can not resize it.
2- In the TimelineView I have GroupingDirection="Vertical"  and I have many entry but if there is any appointment on one of the rows it look very wide in height and shift the rows down so every thing is shifted too and the Time Lines will not be corresponded to the Headers !

so PLEASE help me and tell me what is the problem.

* check this picture for the TimeLineView Problem on this link "http://www.mypicx.com/uploadimg/1747555670_08242009_1.jpg"

Thanks
Ban Shareef
Peter
Telerik team
 answered on 25 Aug 2009
1 answer
170 views
I recently posted this question in the ASP.NET Classic Controls forum, http://www.telerik.com/community/forums/aspnet/tabstrip/select-first-child-tab-in-tabstrip.aspx, since the problem was similar, but in case those forums are not checked/updated (and since I am using the newer set of ASP.NET AJAX Q3 2009 controls) I am reposting here.

I have a hierarchical RadTabStrip that is databound through a SqlDataSource.  I am trying to set up a "fallback" default scenario where if the FindByURL method does not find a match that the RadTabStrip defaults to the selecting the "deepest" value of the first tab.

For example, assume that FindByURL could not find a matching tab in the items below.  By default I would like Parent1GrandChild1 selected if the tabstrip has a 3 level hierarchy.  I would like Parent1Child1 to be selected if the tabstrip has a 2 level hierarchy, and Parent1 selected if it only has root level tabs.  I do not know how to always select the first tab item in the deepest level of the tabstrip.


Parent1                Parent2
Parent1Child1        Parent2Child1    Parent2Child2
Parent1Grandchild1    Parent1Grandchild2 


I also need to do this in the codebehind instead of the clientside script on page load and am using RadControls for ASP.NET AJAX [Version: 2009.2 701 (Jul 1, 2009)].
Veselin Vasilev
Telerik team
 answered on 25 Aug 2009
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?