Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
472 views
I have a grid set up using template columns and would like to specify the header text (for sorting), but would also like to put some markup below the header text.  If I specify a value for header text, and configure the header template...the markup is displayed before the headder text.  Is there a way to get it to display after the header text?  If not, is there a way I could put the header text in the header template so that it will cause a sort when clicked?

<telerik:GridTemplateColumn DataField="OrderName" SortExpression="OrderName" HeaderText="Expense">
<HeaderTemplate>                                          
<asp:DropDownList ID="OrderNameFilterDdl" AutoPostBack="true" OnSelectedIndexChanged="OrderNameFilterDdl_SelectedIndexChanged" runat="server"></asp:DropDownList>
</HeaderTemplate>
<ItemTemplate>
<%# Eval("OrderName") %>
</ItemTemplate>
</telerik:GridTemplateColumn>
Princy
Top achievements
Rank 2
 answered on 09 Jul 2010
3 answers
175 views
I'm not sure exactly why but whenever a new table is created in the editor, every cell comes with a "nbsp" inside it by default. Is there a way to easily stop this?

Regards,
Scott

hrm just saw my &nbsp didnt render in the title, imagine that! Can't update though sorry =)
Rumen
Telerik team
 answered on 09 Jul 2010
1 answer
217 views
I'm building a site that sends internal mail to members, but I need to use an Email Client Approach... just in case an external mail arrives, can someone offer some advice?
Shinu
Top achievements
Rank 2
 answered on 09 Jul 2010
2 answers
124 views
Hi,

While using the Dock control, if I try to drag and drop a Dock control anywhere outside the DockZone, it gets dropped there.

I need a Dock only to be dropped into some defined DockZones , is it possible?

Thanks
Ajay Sharma
Ajay
Top achievements
Rank 1
 answered on 09 Jul 2010
2 answers
209 views
Hi there,

I have an web app that uses the RADEditor for content management. A couple of table styles that can be applied in are borderless. This makes it a bit difficult for the administrator to navigate the cells. Is there a configurable way to show gridlines for tables (only in the editor view) in the RADEditor?

Regards,
Scott
Scozzard
Top achievements
Rank 2
 answered on 09 Jul 2010
5 answers
282 views
I have two levels of grouping in my grid.
I am trying to hide the expand and collapse images. I tried the code as shown here.
With this solution I was able to hide the expand collapse image for the first level but I was unable to do so for the sub group.

My grid looks something like:

GROUP HEADER 1
 + GROUP HEADER 2
 XXXXXXXXXXXXXXXXXXX
 XXXXXXXXXXXXXXXXXXX

 

+ GROUP HEADER 2
 XXXXXXXXXXXXXXXXXXX
 XXXXXXXXXXXXXXXXXXX
GROUP HEADER 1
 + GROUP HEADER 2
 XXXXXXXXXXXXXXXXXXX
 XXXXXXXXXXXXXXXXXXX

Please let me know what I need to modify.

Also, I need to change the background style only for the Group header 1. How can i achieve this as well.

Thanks.

newbie
Top achievements
Rank 1
 answered on 08 Jul 2010
2 answers
285 views
Hi, basically what I want to do is to change the selectedValue of a RadComboBox, depending the value set on a RadNumericTextBox, this controls are inside a grid when a row is edited.

I have two ClientDataKeyNames (MIN and MAX), so what I want to is to have an event in client side that fires when the value of the radNumericTextBox change, then catch the new value, check if its between MIN and MAX, if its true change the selectedValue of radComboBox to "TRUE" and if not change it to "FALSE"

Hope you can help me!!! =D

Thanks in advance
Dany V
Top achievements
Rank 1
 answered on 08 Jul 2010
6 answers
713 views

Hello,

i use the RadComboBox with LoadOnDemand. In my Javascript code i'm calling comboBox.requestItems(...) to fill the RadComboBox. The EnableLoadOnDemand property ist set to false (there is no option for true in my workflow). After a postback, the SelectedValue is always empty. If i set EnableLoadOnDemand to true, the SelectedValue will be set (but this is no option for me). Is there a solution for this problem?

Best Regards

Clarence
Top achievements
Rank 1
 answered on 08 Jul 2010
5 answers
249 views
As mentioned in Telerik Documentation, it's upload control re-acts on postback. Here some users are concerned, that RAD Upload control fires its submit event, when they click to other button or any control which postback on the web form.

Related to this, Telerik online documentation also has got a solution (How to Prevent Upload). After revising those codes, I have modified it little and written codes in a way that users can easily achieve the target.

Javascript:
    <script type="text/javascript"
 
        function onClientSubmitting(progressManager, args) { 
            var eventTarget = document.getElementById('__EVENTTARGET'); 
            if (eventTarget.value == '<%= ButtonUpload.UniqueID %>') { } else { 
            var upload = $find("<%= RadUpload1.ClientID %>"); 
            var fileInputs = upload.getFileInputs(); 
            for (var i = 0; i < fileInputs.length; i++) { 
                upload.clearFileInputAt(i); 
            } 
            } 
        } 
         
    </script> 
Note: ButtonUpload is a LinkButton; Upload must be start when the ButtonUpload is fired.

In the .aspx
  <telerik:RadProgressManager id="Radprogressmanager1" runat="server" OnClientSubmitting = "onClientSubmitting" /> 
    <telerik:RadUpload ID="RadUpload1" runat="server" TargetFolder="uploads"  
        ControlObjectsVisibility="None" Height="25px" MaxFileInputsCount="1" Width="214px"  
       > 
    </telerik:RadUpload> 
    <telerik:RadProgressArea ID="RadProgressArea1" runat="server" Language=""  
        DisplayCancelButton="True"
<Localization Uploaded="Uploaded"></Localization> 
    </telerik:RadProgressArea> 
  
    <br /> 
  <asp:LinkButton runat="server" id="ButtonUpload" text="Upload" /> 
Note: Make sure to provide the onClientSubmitting method to RadProgressManager

Excluding to this topic: Some users very often complain that RadProgressArea does not work while uploading. And regarding to my experience it happens when your Application's Trust level is medium.

You can adjust it by writing these codes in web.config:
<system.web> 
    <trust level="Full" /> 
</system.web> 

Thank You

Regards,
Tekie



Alberto
Top achievements
Rank 1
 answered on 08 Jul 2010
2 answers
71 views
Hi
I would like to know whether the functionality described in this topic http://www.telerik.com/community/forums/silverlight/chart/bar-chart-type-and-two-point-labels-in-one-bar.aspx can be made in telerik asp.net ajax controls?

Thanks in advance.
kalvin
Top achievements
Rank 1
 answered on 08 Jul 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?