Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
72 views
Hello,

I am using RadAjax panel for the whole page. I am having listboxes and other labels in my page along with radgrid.

When I move listitem from one listbox to another listbox, I am using radajax panel not to postback.

But after that I see the columns in the RagGrid, 2 of them are disappearing which I am displaying Dynamically.

All other columns are bound columns. What is the reason ?

TIA
Richard
Top achievements
Rank 1
 answered on 22 May 2012
7 answers
169 views
I have a radgid that has a button for each export. (csv,xls,word,pdf) They are all set up the same and they all work except for the csv one. The CSV is only exporting the headers not the data. It used to work and nothing has changed that has anything to do with the export but now it is not working. I have tried the following steps. Rebooted my machine and restarted VS and i have also rerefrenced Telerik.Web.UI.dll and it is still only giving me "MenuId","MenuPageKey","MenuHeader","MenuLinkText","MenuLink","MenuSortOrder","MenuView","MenuHeaderSortOrder"

PDF word and excel all give me full data

below is my radgrid code and the code for the exports.
<telerik:RadGrid ID="RadGrid1" OnSortCommand="RadGrid1_SortCommand" OnPageIndexChanged="RadGrid1_PageIndexChanged" OnNeedDataSource="RadGrid1_NeedDataSource" 
        AllowSorting="True" PageSize="15" AllowPaging="True" runat="server" EnableEmbeddedSkins="false" 
        Skin="EasyEcomm" AutoGenerateColumns="true" ExportSettings-ExportOnlyData="false" ExportSettings-FileName="SqlExport" 
         ExportSettings-OpenInNewWindow="true"
        <PagerStyle Mode="Slider" /> 
        <ClientSettings EnableRowHoverStyle="true"
        </ClientSettings> 
    </telerik:RadGrid> 
    <asp:Label ID="SqlStatementLabel" runat="server" Text=""></asp:Label><br /> 
    <div class="bottom_left_div" runat="server" id="ButtonsDiv"
        <br /> 
        <asp:Button ID="BackButton" runat="server" Text="&lt;&lt; Back" OnClick="BackButton_Click" /><asp:Button 
            ID="ExportCSVButton" runat="server" Text="Export to CSV" OnClick="ExportCSVButton_Click" /> 
            <asp:Button 
            ID="ExportXLSButton" runat="server" Text="Export to XLS" OnClick="ExportXLSButton_Click" /> 
             
            <asp:Button 
            ID="ExportWRDButton" runat="server" Text="Export to Word" OnClick="ExportWRDButton_Click" /> 
            <asp:Button 
            ID="ExportPDFButton" runat="server" Text="Export to PDF" OnClick="ExportPDFButton_Click" /> 
             
             
        
    </div> 

    protected void ExportCSVButton_Click(object sender, EventArgs e) 
    { 
        RadGrid1.MasterTableView.AllowPaging = false
        RadGrid1.MasterTableView.Rebind();  
        RadGrid1.ExportSettings.IgnorePaging = true
        RadGrid1.MasterTableView.ExportToCSV(); 
    } 
   
 
    protected void ExportXLSButton_Click(object sender, EventArgs e) 
    { 
        RadGrid1.MasterTableView.AllowPaging = false
        RadGrid1.MasterTableView.Rebind();  
        RadGrid1.ExportSettings.IgnorePaging = true
        RadGrid1.MasterTableView.ExportToExcel(); 
    } 
 
    protected void ExportWRDButton_Click(object sender, EventArgs e) 
    { 
        RadGrid1.MasterTableView.AllowPaging = false
        RadGrid1.MasterTableView.Rebind();  
        RadGrid1.ExportSettings.IgnorePaging = true
        RadGrid1.MasterTableView.ExportToWord(); 
    } 
 
    protected void ExportPDFButton_Click(object sender, EventArgs e) 
    { 
        RadGrid1.ExportSettings.Pdf.PageHeight = Unit.Parse("162mm"); 
        RadGrid1.ExportSettings.Pdf.PageWidth = Unit.Parse("600mm"); 
        RadGrid1.MasterTableView.AllowPaging = false
        RadGrid1.MasterTableView.Rebind();  
        RadGrid1.ExportSettings.IgnorePaging = true
        RadGrid1.MasterTableView.ExportToPdf(); 
    } 


Thank you for your help
Paul
Top achievements
Rank 1
 answered on 22 May 2012
1 answer
72 views
Please guide me to fix this. How could I customize the telerik RadFilter Control

Advance & Thanks
Tamim
Richard
Top achievements
Rank 1
 answered on 22 May 2012
1 answer
102 views
How can I do to save my graphs in pdf? Is there any tools for this?
Richard
Top achievements
Rank 1
 answered on 22 May 2012
1 answer
58 views
Hi,
How can we add a user control (that contien listebox, listecombo,radupload,picture from database ... ) inside  
a liste view ?
Thank you 
Richard
Top achievements
Rank 1
 answered on 22 May 2012
3 answers
104 views
I did translate radscheduler.main.resx as shown in this video
http://tv.telerik.com/watch/aspnet/radscheduler/radscheduler-localization-with-resource-files

could not find lines for "Edit Appointement" and "Subject"
what name do they have in resx file?
Jean-Marc
Top achievements
Rank 1
 answered on 22 May 2012
2 answers
108 views
The input fields for the table width and height are too small to show 3-digit numbers comfortably. I would like to make them bigger. I can't figure out where to put a style or a little script to execute to make the change.

I know I can do this by creating a custom skin, but I really don't want to go that far.

Please let me know if there is a simple way to do this.
Dan Ehrmann
Top achievements
Rank 1
 answered on 22 May 2012
5 answers
130 views
Hi,

I'm trying the ASP.NET AJAX suite, and I don't know how to solve this function:

I have two treeviews: 
  1. First treeview will receive nodes from second treeview
  2. node from one treeview can't be moved to nodes of the same treeview
  3. nodes of second treeview can be moved only to first treeview
  4. nodes of first treeview can't be moved to second treeview 

I try to implement the functionality: processes(first preeview) and activities(second treeview), where a process can have multiple activities, but a activity can't have processes as child.

I hope you can help me.

Regards
Zeus_developer
Top achievements
Rank 1
 answered on 22 May 2012
5 answers
586 views
The project I am working on has nested web.config files and I have wrapped the httpHandlers in <location path="." inheritInChildApplications="false">. This throws the error:
['~/Telerik.Web.UI.WebResource.axd' is missing in web.config. RadStyleSheetManager requires a HttpHandler registration in web.config.]

When I remove the "location" tag everything works as expected.

Is there a work-around to fix this issue?

The project is using dotnetnuke professional and uses the telerik controls specifically for dotnetnuke.
Brett
Top achievements
Rank 1
 answered on 22 May 2012
3 answers
67 views
Hi Telerik Team,
                     I have a design Problem with Telerik Rad Combo Box. It over flows on other controls. It appears as shown below



Please help me in fixing this.

Thanks
Aravind
Ivana
Telerik team
 answered on 22 May 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?