Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
116 views
I am exporting data from a RadGrid to PDF. I got the column formatting set fine. The problem I am having is each row is too close to each other that it is somewhat difficult to distinguish between them.

How can I add a buffer between each row?

This could be a blank row or just add a set number of pixels to each row.

Thanks,

Scott
Scott Lapp
Top achievements
Rank 1
 answered on 10 Feb 2010
3 answers
121 views
Hello,

The question in the title:
Is there any way to include radcontrols like RatTabStrip in editor content to display them later.

Thanks for help.
CS
Rumen
Telerik team
 answered on 10 Feb 2010
7 answers
248 views
Folks,

Environment: RadControls for ASP.NET AJAX Q3 2009 / VS 2008 SP1/IE7/WINXP SP 2.

I was working in the below Link. After clicking the Edit Command, I got the attached error. This error I received with the Rad Controls installed in my local work station. Any help will be appreciated. Thanks
 
gc_0620

http://demos.telerik.com/aspnet-ajax/grid/examples/generalfeatures/gridattachmentcolumn/defaultcs.aspx
gc_0620
Top achievements
Rank 1
 answered on 10 Feb 2010
4 answers
119 views
I have a color picker and want to define a discrete set of colors which are to be shown. My declaration is below. Since upgrading to the Q3 2009 controls, this isn't working. My color picker shows the discrete set colors along with what appears to be the entire default color palette. The color picker is within an ajaxified container, though I don't know if that is the problem, and it certainly wasn't before the upgrade.

<telerik:RadColorPicker   
                                                                runat="server"   
                                                                ID="rcpBackground"   
                                                                Columns="12"   
                                                                Width="350" 
                                                                ShowEmptyColor="false" 
                                                                ShowIcon="True"   
                                                                AutoPostBack="True" 
                                                                Skin="Hay">  
                                                    <Items> 
                                                        <telerik:ColorPickerItem Title="Red" Value="#FF0000" /> 
                                                        <telerik:ColorPickerItem Title="Orange" Value="#FF9900" /> 
                                                        <telerik:ColorPickerItem Title="Yellow" Value="#FFFF99" /> 
                                                        <telerik:ColorPickerItem Title="Light Green" Value="#86D986" /> 
                                                        <telerik:ColorPickerItem Title="Green" Value="#00CC00" /> 
                                                        <telerik:ColorPickerItem Title="Dark Green" Value="#006600" /> 
                                                        <telerik:ColorPickerItem Title="Light Blue" Value="#7AB8FF" /> 
                                                        <telerik:ColorPickerItem Title="Blue" Value="#0000CC" /> 
                                                        <telerik:ColorPickerItem Title="Dark Blue" Value="#000066" /> 
                                                        <telerik:ColorPickerItem Title="Brown" Value="#663300" /> 
                                                        <telerik:ColorPickerItem Title="Gray" Value="#C8C8C8" /> 
                                                        <telerik:ColorPickerItem Title="Black" Value="#000000" /> 
                                                    </Items> 
                                                </telerik:RadColorPicker> 
Matt
Top achievements
Rank 1
 answered on 10 Feb 2010
4 answers
131 views
We had Radeditor set up and working perfectly on all of our SharePoint websites, then all of the sudden the Radeditor stopped replacing the default editor. I noticed it still worked in Radeditor WebParts, but none of the Wiki or other content editing areas were using the Radeditor. I deactivated and reactivated on all sites, but no luck. I then retracted the solution and re-deployed it. Then activated it again on all sites and no luck again.

I am wondering what else i can try. I used the iisreset command at every intermediate stage, including after activating the features on the site and I am still unable to use the RadEditor on anything but a web part on all websites that were previously working fine.

Thanks!

-Brad
Brad
Top achievements
Rank 1
 answered on 10 Feb 2010
1 answer
1.6K+ views
Hi. I'm sure this is easy if you know how. I have a RadGrid with a number of columns. Column 2 holds an id and the first column hold a select option:

<

 

telerik:GridButtonColumn Text="Show" CommandName="Select" >

 

 

 

</telerik:GridButtonColumn>

How do I get that id value so that I can use it serverside.? I use C#.

 

 


/Christian 
Pavlina
Telerik team
 answered on 10 Feb 2010
1 answer
134 views
hi all

i am using radupload in my webform
i want to initiate upload after some process to happen

e.g.
i am having a database named dataemp
in that a table tb1
having fields
id = auto number
name = text
address = text
photodir = text
photoname = text

now what i want to do is that after filling form
name: textbox
address: textbox
photo: radupload

when user fills the form
after that he clicks submit button
at that time
insert name and address in database
get id from dataemp.tb1

and then in picture directory at server i want to create a directory named id(fetched from dataemp.tb1)
and then i want radupload to upload file in that directory i.e picture/<id>/

all of the things i have done but having some problem that process flow should be
  1. insert into database
  2. get id from database
  3. create dir
  4. initiate upload


please needed help ASAP
Vesko
Top achievements
Rank 2
 answered on 10 Feb 2010
5 answers
426 views

Forum,

I have been unable to find a solution for PageSizeChanged Event for Detail Tables.  The below two code snippets show the RadGrid PageSizeChanged event functionality for Master Table PageSizeChange event.  I am using this functionality for User Profile settings and need the Detail Tables.  Let me know if there is a solution for this issue...

<telerik:RadGrid ID="RadGrid1" runat="server" DataSourceID="edsValuation" GridLines="None" 
        AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False" AllowFilteringByColumn="true" 
        OnPageSizeChanged="RadGrid1_PageSizeChanged"   
        PagerStyle-AlwaysVisible="true">  
</Format Code Block> 
 
 
protected void RadGrid1_PageSizeChanged(object source, GridPageSizeChangedEventArgs e)  
        {  
            Profile.LayoutProfile.StoreGridTableViewPageSize(RadGrid1.MasterTableView, e.NewPageSize);  
        } 

Thanks,
Bryan

Telerik.Web.UI - 2009.2.826.35

Pavlina
Telerik team
 answered on 10 Feb 2010
2 answers
164 views
I'm using a RadDateTimePicker control and in my app the user can configure whether to allow Date and Time, Date only or Time only. I am able to set the Date popup and Time popup as hidden when needed, but I can't figure out how to hide the Date or Time in the input portion of the control. Is this possible, or do I need to use 3 controls to achieve this (DateTimePicker, DatePicker and TimePicker)?

Thanks,
Lucas
Lucas Harron
Top achievements
Rank 1
 answered on 10 Feb 2010
2 answers
233 views
I have a Radtreeview that sits inside a RadGrid. For some reason the expand/collapse buttons of the Treeview are not working. I can expand the Treeview initially, however the NodeExpand event never fires.(a postback does occur to the server, and I have several buttons on the node that work also.) Once the node has been expanded, the collapse button stops functioning, and clicking on it does nothing.(no postback to server). I have the ExpandMode set to ServerSide. However, if I change the Expandmode to Clientside it continues to work. I really need the control to work with ExpandMode set to serverside, to reduce the loading for large Tree's
Aaron Mell
Top achievements
Rank 1
 answered on 10 Feb 2010
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?