Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
130 views
When I wrap the scheduler in an updatepanel, the javascript stops working. When I click "recurring", nothing happens. When I remove the updatepanel, everything works fine.
Peter
Telerik team
 answered on 01 Jul 2009
3 answers
121 views
Hi,

sometimes without any apparent reason the following style tag is being added to the scheduler

style="top: 84px; left: 0px"

the value are random.

It happens when pressing F7 to switch from code behind to the aspx page (not sure),

After that the Vertical scroll on FF stopped working....

FYI
Mickey


Peter
Telerik team
 answered on 01 Jul 2009
3 answers
164 views
I've noticed that when I have a radgrid with "AutoGenerateColumns='false'" and then set the export property "RadGrid1.ExportSettings.IgnorePaging = false" no data from the grid is exported to excel.  If I remove the AutoGenerateColumns property/attribute, it works fine.

I've applied the AutoGenerateColumns attribute to both the RadGrid and the MasterTableView (not at the same time), and even set it as a property in the code behind, but nothing is working. 

Here's the grid as I currently have it:

<telerik:RadGrid ID="RadGrid1" runat="server" AutoGenerateColumns="false" AllowPaging="true" AllowSorting="true">
<MasterTableView >
</MasterTableView>
</telerik:RadGrid>

And Here's the codebehind that calls the ExportToExcell method:

private void btnExcel_Click(object sender, EventArgs e)
{
ConfigureReport();
        RadGrid1.MasterTableView.ExportToExcel();
}

private void ConfigureReport()
{
        RadGrid1.ExportSettings.FileName = "RadGridExportToExcel";
        RadGrid1.ExportSettings.IgnorePaging = this.cbxPaging.Checked;
        RadGrid1.ExportSettings.ExportOnlyData = this.cbxFormat.Checked;
        RadGrid1.ExportSettings.OpenInNewWindow = true;
}


Any ideas?

Thanks,
Pat Lindley
Daniel
Telerik team
 answered on 01 Jul 2009
1 answer
90 views
Hi Telerik Guys !

Hope you are doing well !

Guys,
 As per your suggestions, I have downloaded the Q2 2009 RAD CONTROLS from your website & now Iam using my application using the NEW CONTROLS. 
But , Im still facing the problem that I have faced with your earlier(Q3 2008 controls.)

Im sure that , you know about the exact problem .

Now , Im using the DEFAULT SKIN of the RAD GRID, that resemble mostly with the GRAY SKIN of your previous controls.

I have following   issues :

 1. COLUMN RESIZING ISSUES :-  Whenever I used to resize the width of the column the whole allignment of the WEB PAGE gets distorted. Please help me to manage the web page as it is & resize only the columns & make them shorter & longer to the width that we try to set while draging it (columns) with our mouse.

I have fixed the width of the RAD GRID to say 98% - 97%.

Please solve this issue.

 2. VERTICAL GRID LINES NOT SHOWING UP:- Though, I have applied that property with the HTML tags of  RAD GRID the vertical GRID LINES are not showing up.

I dont know what to do ??

Please help me as soon as possible.

Please !!!

Ajay

Dimo
Telerik team
 answered on 01 Jul 2009
2 answers
97 views
Hi,

Where is the documentation for migrating from Classic to AJAX editions hiding?  I'd expected it to be in the CHM, but it isn't. I haven't found anything suitable on the website either.

Regards
Paul
Paul Buxton
Top achievements
Rank 1
 answered on 01 Jul 2009
1 answer
154 views
Your documentation suggests set_ajaxSettings is useable.

I need to decide in javascript whether an item  from a toolbar or panelbar control (based on its value) should update an iframe or not.

If it does then I need to add the toolbar/panelbar to the ajaxSettings of the AjaxManager.



Martin
Yavor
Telerik team
 answered on 01 Jul 2009
1 answer
247 views
Hi Telerik Guys !

 I'm enclosing the SCREEN SHOTS of my DEMO project at the below mentioned location :-

http://www.picamatic.com/show/2009/06/29/06/52/4176817_1024x768.jpg

http://www.picamatic.com/show/2009/06/29/06/53/4176824_1024x768.jpg
Name of the file are :-
(a.) GRID-I.jpg
(b.) GRID-II.jpg



Please acknowledge the same & help me sort out my problem.

I have encircled the issues that are creating problems.
 
(i.e. 1.  HORIZONTAL SCROLL bars appear at the end of the page that allow the dislocation of the web page ).
       2.  VERTICAL GRID LINES DOES NOT APPEAR 
       
I'm also enclosing the detailed HTML code as below :-

 <telerik:RadGrid ID="RadGrid1" runat="server" DataSourceID="SqlDataSource1" GridLines="Vertical" 
           SkinID="DemoRadGrid" Skin="Default" Width="98%">  
           <HeaderContextMenu EnableTheming="True" Skin="Default">  
               <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> 
           </HeaderContextMenu> 
           <MasterTableView Frame="Void" AutoGenerateColumns="False" DataKeyNames="city_id" DataSourceID="SqlDataSource1">  
               <NoRecordsTemplate> 
                   No records to display !  
               </NoRecordsTemplate> 
               <Columns> 
                   <telerik:GridBoundColumn DataField="city_id" DataType="System.Int32" HeaderText="City ID" 
                       ReadOnly="True" SortExpression="city_id" UniqueName="city_id">  
                       <HeaderStyle Font-Names="Trebuchet MS" Font-Size="14px" ForeColor="#3496B4" Width="20%" /> 
                   </telerik:GridBoundColumn> 
                   <telerik:GridBoundColumn DataField="country_id" DataType="System.Int32" HeaderText="Country ID" 
                       SortExpression="country_id" UniqueName="country_id">  
                       <HeaderStyle Font-Names="Trebuchet MS" Font-Size="14px" ForeColor="#3496B4" Width="20%" /> 
                   </telerik:GridBoundColumn> 
                   <telerik:GridBoundColumn DataField="city_name" HeaderText="City Name" SortExpression="city_name" 
                       UniqueName="city_name">  
                       <HeaderStyle Font-Names="Trebuchet MS" Font-Size="14px" ForeColor="#3496B4" Width="30%" /> 
                   </telerik:GridBoundColumn> 
                   <telerik:GridBoundColumn DataField="city_description" HeaderText="City Description" 
                       SortExpression="city_description" UniqueName="city_description">  
                       <HeaderStyle Font-Names="Trebuchet MS" Font-Size="14px" ForeColor="#3496B4" Width="30%" /> 
                   </telerik:GridBoundColumn> 
               </Columns> 
           </MasterTableView> 
       </telerik:RadGrid> 
       <asp:SqlDataSource ID="SqlDataSource1" runat="server"   
           ConnectionString="<%$ ConnectionStrings:ajay_practiceConnectionString %>"   
           SelectCommand="SELECT [city_id], [country_id], [city_name], [city_description] FROM [city]">  
       </asp:SqlDataSource> 

I have used the following code with in the SKIN FILE :-

<telerik:RadGrid runat="server" Skinid="DemoRadGrid">
    <ClientSettings EnableRowHoverStyle="true" EnablePostBackOnRowClick="true"  AllowColumnsReorder="true" ReorderColumnsOnClient="true">
     <Resizing AllowRowResize="True" EnableRealTimeResize="True" ClipCellContentOnResize="true" ResizeGridOnColumnResize="True" AllowColumnResize="True"></Resizing>
        <Scrolling AllowScroll="true" SaveScrollPosition="true" UseStaticHeaders="true" ScrollHeight="100px" />
        <Selecting AllowRowSelect="true" />
    </ClientSettings>
</telerik:RadGrid><telerik:RadGrid runat="server" Skinid="DemoRadGrid">


Please help !



Dimo
Telerik team
 answered on 01 Jul 2009
3 answers
112 views
Hello,

When adding a new meeting, I wondering how to preselct the resource in the edit detail view.
With the following control I want to have a preselection on TeamMember when I add a meeting on the related line (for example to preselect John Doe if I add a meeting on the line of John Doe). As per today code, it is not working (see below).
Thank you for your help
David

 

    <telerik:RadScheduler ID="RadScheduler1" runat="server"   
        DataSourceID="RP_NG_Assignment"   
        HoursPanelTimeFormat="htt"   
        SelectedView="TimelineView" 
        TimelineView-NumberOfSlots="28" 
        TimelineView-SlotDuration="1.00:00:00" 
        GroupBy="TeamMember"   
        GroupingDirection="Vertical"   
        ValidationGroup="RadScheduler1"   
        DayStartTime="08:00:00" 
        DayEndTime="17:00:00" 
        TimeZoneOffset="01:00:00" 
        ColumnWidth="50px" 
        Height="100%" 
        DataEndField="End"   
        DataKeyField="ID"   
        DataStartField="Start"   
        DataSubjectField="Subject"   
        Skin="Office2007" > 
        <ResourceTypes> 
            <telerik:ResourceType DataSourceID="RP_NG_User" ForeignKeyField="UserID" KeyField="GlobeID" Name="TeamMember" TextField="FullName" /> 
            <telerik:ResourceType DataSourceID="RP_NG_Roles" ForeignKeyField="RoleID" KeyField="ID" Name="Roles" TextField="Name" /> 
        </ResourceTypes> 
    </telerik:RadScheduler> 
Peter
Telerik team
 answered on 01 Jul 2009
4 answers
786 views
I have a div with its own id in the ItemTemplate of a GridTemplateColumn of a RadGrid.
 How can I access this div from the code behind?
If it was a div in the web page I could access it just by typing its id but this method does not work now that it is nested inside the grid.
Thank you very much.
Sebastian
Telerik team
 answered on 01 Jul 2009
1 answer
69 views
I am using Beta Q2 Ajax and am having a problem getting paging to work when used with an XML DataSource. The total number of rows and the page numbers show up on initial display, but when I click on a page number, the grid disappears altogether!

One more thing, I have the RadGrid inside of a MultiPageView.
Pavlina
Telerik team
 answered on 01 Jul 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?