Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
105 views
I have a very large grid and I'm researching ways to improve performance.

 Currently, the users can do the following, and I'd like to keep as much of this behavior as possible: 

  • Double clicking a row switches the entire row to edit mode.
  • Able to edit multiple rows at the same time (paging is not enabled)
  • Clicking an 'Add' button on a row inserts a new blank row under the row.
  • Multiple new rows can be added.
  • No changes are committed until the user clicks a save button for the whole grid.

 Is it possible to customize the grid meet these requirements? Also, is it possible to minimize the network traffic by only sending the new or edited values to the server instead of the whole grid? Thanks.
Maria Ilieva
Telerik team
 answered on 04 Nov 2010
6 answers
116 views
Dear all

How can I implement RadGrid Row to be in Edit Mode when selecting the row ?

Regards
Noha
Pavlina
Telerik team
 answered on 04 Nov 2010
5 answers
274 views
Dears,

I have a RadGrid with Enabled sorting on columns and I am using a RadAjaxManger in page to update RadGrid data. I noticed that clicking on any column in order to sort caused a page postback. So, what should I add to RadAjaxManager in the page to prevent page post back?



 

Pavlina
Telerik team
 answered on 04 Nov 2010
1 answer
72 views
hi,
     I had a radwindow working fine. Now i integrated the

RadAsyncUpload

with

TemporaryFolder

 

="~\TempFiles" MultipleFileSelection="Automatic"

 


Attached is a screen shot of the window. Now, since i have the radupload on the page. Even if i click on cancel which does not do anything other than closing the radiwindow. It throws an error (javascript)

htmlfile: Unspecified error

i did not selected any file. Do you have any idea ?

Thanks,

Regards,

Osman
Genady Sergeev
Telerik team
 answered on 04 Nov 2010
2 answers
106 views

 

Hello,

I installed the latest version of Rad Controls for ASP.Net. After selecting a file name using the browse/select dialog, I was attempting to manually delete and modify it.
However when I click on the text box, the file name is padded with many spaces (why???) and while I am deleting these spaces appended at the end (using backspace button on keyboard), characters from the file name are actually deleted. In addition to that, while pressing the backspace button and thus deleting, somehow the full path to the file starts showing in the text box!

Are you aware of this bug? Is there any workaround?

I was expecting to be able to highlight the file name and delete several characters. This is not possible.

Regards,
M. Rusu

Additional info:
Using IE 6
Telerik[1].Web.UI_2010_2_929_Dev.msi

M. R.
Top achievements
Rank 1
 answered on 04 Nov 2010
3 answers
725 views
Hi Telerik Team,

I want to Export the Rad Grid data to the Excel Sheet, I have added a link button to the Rad Grid dynamically. For Exporting the Rad Grid data to the Excel Sheet i have placed the rad grid inside a "RadAjaxPanel", When i place the Rad grid Inside the RadAjaxPanel the entire data is being Exported to the Excel sheet, but the link button that i have added dynamically to the Rad grid is not doing any post back (My requirement is on clicking this link button it will get the DataKey and based on the DataKey value it will fetch the Records from the Database and display in the RadGrid in a POP-up), but when I remove the Rad Grid from the RadAjaxPanel the data is not being Exporting to the Excel Sheet it is giving the Following Error:

"Server Error in '/' Application.

Invalid postback or callback argument.  Event validation is enabled using <pages enableEventValidation="true"/> in configuration or <%@ Page EnableEventValidation="true" %> in a page.  For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them.  If the data is valid and expected, use the ClientScriptManager.RegisterForEventValidation method in order to register the postback or callback data for validation."

In this Case the Link Button that i have added dynamically is doing the Post back and displaying the Data in the Pop-up.
This is the Code that i am use for Rad Grid for opening pop-up on Link button Click:

"<telerik:RadGrid ID="rgAccountDetails" runat="server" AllowPaging="True" PageSize="10" AllowFilteringByColumn="True" AllowSorting="True"  Visible="false"
                Skin="Vista" OnPreRender="rgAccountDetails_PreRender" OnColumnCreated="rgAccountDetails_ColumnCreated" OnGridExporting="rgAccountDetails_GridExporting"
                OnItemCommand="rgAccountDetails_ItemCommand" OnPageIndexChanged="rgAccountDetails_PageChanged"
                OnExcelMLExportRowCreated="rgAccountDetails_ExcelMLExportRowCreated">
                <ExportSettings ExportOnlyData="true" IgnorePaging="true" OpenInNewWindow="true">
                <Excel Format="ExcelML" />
                <Pdf FontType="Subset" PaperSize="Letter" PageWidth="18in" PageHeight="150in" />
            </ExportSettings>
                    <PagerStyle Mode="NextPrevAndNumeric" />
            <MasterTableView  DataKeyNames="AccountID" CommandItemDisplay="Top">
               <CommandItemSettings ShowExportToWordButton="true" ShowExportToExcelButton="true"
                ShowExportToCsvButton="true" ShowAddNewRecordButton="false" ShowExportToPdfButton="True" />
                <RowIndicatorColumn>
                    <HeaderStyle Width="20px" />
                </RowIndicatorColumn>
                <ExpandCollapseColumn>
                    <HeaderStyle Width="20px" />
                </ExpandCollapseColumn>
            </MasterTableView>
        </telerik:RadGrid>"

In the above code the link button is doing Post Back and fetching the data and display in the Pop-up, but Rad grid data is not exported to the Excel sheet.

"<telerik:RadAjaxPanel ID="RadAjaxPanel2" runat="server" LoadingPanelID="RadAjaxLoadingPanel2" 
        ClientEvents-OnRequestStart="requestStart" HorizontalAlign="NotSet">
        <telerik:RadGrid ID="rgInvoicedetails" runat="server" AllowPaging="True" 
                PageSize="7" AllowFilteringByColumn="True" AllowSorting="True"  Visible="False"
         Skin="Vista" OnItemCommand="rgInvoicedetails_ItemCommand" OnColumnCreated="rgInvoicedetails_ColumnCreated"
           OnPageIndexChanged="rgInvoicedetails_PageChanged" GridLines="None">
                 <PagerStyle Mode="NextPrevAndNumeric" />
                 <ExportSettings FileName="InvoiceReports" ExportOnlyData="true" IgnorePaging="true" OpenInNewWindow="true">
                      <Excel Format="ExcelML" FileExtension="xlsx"  />
                <Pdf FontType="Subset" PaperSize="Letter" PageWidth="18in" PageHeight="150in" />
                 </ExportSettings>
            <MasterTableView DataKeyNames="InvoiceID">
                <CommandItemSettings ExportToPdfText="Export to Pdf" />
                <RowIndicatorColumn>
                    <HeaderStyle Width="20px" />
                </RowIndicatorColumn>
                <ExpandCollapseColumn>
                    <HeaderStyle Width="20px" />
                </ExpandCollapseColumn>
            </MasterTableView>
        </telerik:RadGrid>
        </telerik:RadAjaxPanel>"

In the above code the link button is not doing Post Back and is not able fetching the data and display in the Pop-up, but the Grid data is Exported to the Excel Sheet.



Please help me.

Thanks,
Arvind.
Shinu
Top achievements
Rank 2
 answered on 04 Nov 2010
3 answers
172 views
I know that you guys have been using sprites in skins for an age now, but I stumbled across the Sprite and Image Optimization FrameWork on CodePlex and wondered if anyone from telerik towers wanted to comment on its usability with controls like RadToobBar and RadTreeView where the developer may well be requesting a number of images for the control in question.

-- 
Stuart
Kamen Bundev
Telerik team
 answered on 04 Nov 2010
6 answers
300 views
Hi,
I am trying to use a simple appointment template, but I just cannot make it work. Version: 2010.1.413.35

 <telerik:RadScheduler runat="server" ID="RadScheduler1" SelectedView="WeekView" SelectedDate="2009-02-02"
  TimeZoneOffset="-05:00:00" FirstDayOfWeek="Sunday" LastDayOfWeek="Saturday"
  StartEditingInAdvancedForm="false" EnableDescriptionField="true"
  OnClientAppointmentCreated="appointmentCreated" Width="100%" Height="100%" OverflowBehavior="Scroll"
  ShowAllDayRow="false"
  ShowFullTime="true"
  ShowFooter="false"
  Skin="Office2007"
  style="outline:none;border:0px;top:0px;bottom:0px;position:absolute;"
  >
  <AdvancedForm Modal="true" />
  <TimelineView GroupBy="Calendar" GroupingDirection="Vertical" />
  <WebServiceSettings Path="../WebServices/Plan/Agenda.asmx" ResourcePopulationMode="ServerSide" />
 <TimeSlotContextMenuSettings EnableDefault="true" />
 <AppointmentContextMenuSettings EnableDefault="true" />            
 
 <AppointmentTemplate>
    <div>
     <h1><%# Eval("Subject") %></h1>
    </div>
 </AppointmentTemplate>
 
 </telerik:RadScheduler>

Thanks,

Teo
tasos
Top achievements
Rank 1
 answered on 04 Nov 2010
1 answer
156 views
Hello,

Can i change the special days tooltip style? (font/Backcolor/forcolor etc)

Regards,
Oren
Cori
Top achievements
Rank 2
 answered on 04 Nov 2010
1 answer
190 views
Hi all,
    I'm trying to create a usercontrol for file explorer using RadFileExplorer and RadWindow , but when i use the user control the RadFileExplorer not work fine. 
Below are the problem that i encounter.
   1. when the control load I need to pre the refresh button of the RadFileExplorer to display all the folder inside my ViewPaths
   2. The header of the list file on Firefox is to big that all space is been occufied
   3. The list file on the IE has a big space

here is the sample code that I made

<telerik:RadWindow runat="server" Width="550px" Height="500px" VisibleStatusbar="false" ShowContentDuringLoad="true" VisibleOnPageLoad="true" ID="WindowExplorer" Modal="true" Behaviors="Close,Move" Title="File Explorer">
    <ContentTemplate>
        <table width="100%" height="100%" cellspacing="0" cellpadding="0">
           <tr>
              <td align="center">
                  <telerik:RadFileExplorer runat="server" ID="Explorer" Width="530px" Height="440px">
                       <Configuration ViewPaths="~/Administration/controls" />
                   </telerik:RadFileExplorer>
              </td>
           </tr>
        </table>        
    </ContentTemplate>
</telerik:RadWindow>
Dobromir
Telerik team
 answered on 04 Nov 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?