Telerik Forums
UI for ASP.NET AJAX Forum
7 answers
142 views
Hi, 

It's really simple, in a RadScheduler, in the methode AppointmentDataBound is it possible to add an icone before the text?

I done this for example : 
e.Appointment.Font.Bold = true;
e.Appointment.ForeColor = Color.Green;

But I would like to put an icone at the same time.

Thank you

Peter
Telerik team
 answered on 06 Mar 2012
2 answers
149 views
IE9 seems to be ignoring the style sheets from RadStyleSheet for a custom skin if it is not running in compatibility mode. I have a custom skin from the Visual Style Builder that I made into an assembly and added as a DLL to my website. I tested it on a sample page and this is the error that IE gives me:

SEC7113: CSS was ignored due to mime type mismatch
Telerik.Web.UI.WebResource.axd?compress=1&_TSM_CombinedScripts_=%3b%3bMySkin%3aen-US%3a759be785-708d-4ffb-9221-0edb1548ff41%3a7d6cac8e%3bTelerik.Web.UI%2c+Version%3d2012.1.215.40%2c+Culture%3dneutral%2c+PublicKeyToken%3d121fae78165ba3d4%3aen-US%3ab29b07e8-2c1e-44e5-9e1b-59bb6459fb01%3afe53831e

I'd prefer to keep away from compatibility mode. Thanks for the help.
Kei
Top achievements
Rank 1
 answered on 06 Mar 2012
6 answers
236 views
Is there a way to get the same look and feel of radtoolbar for the first level of menu items? What I mean is to have Images on the top of text with proper alignment. In the drop downs I can live with images on the side. I saw a reply to similar question in the thread http://www.telerik.com/community/forums/aspnet/toolbar/radtoolbar-dopdown-menu.aspx. This fix will not work for me. What I really want to achieve is posted in the picture

Suraj
Kate
Telerik team
 answered on 06 Mar 2012
1 answer
240 views
Hi, 

I have a radgrid within a multiPage interface. The grid populates fine. Here is the Aspx definition on this

<telerik:RadGrid ID="RadGrid1" runat="server" AllowCustomPaging="True" 

                    AllowFilteringByColumn="True" AllowPaging="True" AllowSorting="True" 

                   GridLines="None" Skin="WebBlue">


I have an imagebutton that when clicked does this 

 Dim filename As String =  "whatever.xls"

        RadGrid1.ExportSettings.OpenInNewWindow = True

        RadGrid1.ExportSettings.FileName = filename

        RadGrid1.ExportSettings.ExportOnlyData = True

        RadGrid1.ExportSettings.IgnorePaging = True

        RadGrid1.ExportSettings.OpenInNewWindow = True

No matter what, the resulting excel only contains the first 25 rows. I have also tried forcing the above code by adding the following

  RadGrid1.MasterTableView.AllowPaging = false

        RadGrid1.Rebind()

'... the above code here and then..

 RadGrid1.MasterTableView.AllowPaging = true

        RadGrid1.Rebind()

No approach seems to work. There is no AjaxManager involved, and the grid itself is not ajaxified. Anyone out there have any ideas? The only complication in all of this is that the grid resides in a multipage / tabbed interface, but the export to Excel button resides outside of the multipiage. Also, I am using MasterPages - pretty simple there - no AjaxManager there either. Any thoughts appreciated.

      

Andrey
Telerik team
 answered on 06 Mar 2012
1 answer
94 views
Hi,
I would like to know if Radgrid would help me accomplish my task in an easy and efficient manner. I'am giving a lengthy description.
I have a ArrayList of StudentGroupOrder as datasource.

  • I would like to have grid that should look like the one in attachments.
  • Each StudentGroupOrder has propertes - ID, ArrayList of BookOrder, StudentCount (Fill the first row only)
  • Each BookOrder object has Decription, Rules, Price, Quantity properties that should be used to fill the grid.
  • Each StudentGroupOrder should populate 1 column. i.e. instead of populating by row, I want it to populate by column.
  • For more information, all the BookOrder objects will have same values for all properties but ID, Quantity.
  • I need paging.
  • Each page should have set 4 columns per page. If there are no objects to fill all the columns, empty columns should be created, for user to create new objects.

Can we accomplish it with RadGrid.

Andrey
Telerik team
 answered on 06 Mar 2012
1 answer
117 views
Hi,
I am using a css file to assign the style of rad controls in page, i call this css in all pages as below
<LINK rel="stylesheet" type="text/css" href="~/_layouts/My_Project_Folder/Style/Styles.css"/>
i have set the width of radtextbox in this css. and this works when using telerik Q3 2009, but when i change to Q1 2012, the width of textbox not showing as mentioned in this css file.
how can i fix this issue.

thanks in advance.
Jiju
Galin
Telerik team
 answered on 06 Mar 2012
2 answers
96 views
Dear all,

Just starting using the Telerik Commercial Components our company did buy.

After successfully using the RadGrid I found that all but the navigation arrows at the bottom are working was expected.
When you have multiple pages you van click the page number to navigate to the respective page, this is working flawless.

When you try to use the arrows next to the page numbers there is a post-back but the page viewed is still the samen.
Also the >> and << to jump to the last and first page give a post-back but the page viewed remains the same.

For clarification, the highlighted page number also remains the same, so not the data shown in the viable grid is the correct one for the highlighted page-number.

When anyone would like to have more information, please ask.

    <telerik:RadGrid ID="RapportGrid" runat="server"  CellSpacing="0" 
        GridLines="Horizontal" AllowPaging="True" Height="447px" Culture="nl-NL">
        <ClientSettings>
            <Scrolling AllowScroll="True" UseStaticHeaders="True" />
        </ClientSettings>
        <PagerStyle Mode="NextPrevAndNumeric"></PagerStyle>
    </telerik:RadGrid>
Zeo
Top achievements
Rank 1
 answered on 06 Mar 2012
11 answers
533 views
Hi,
 I have a radgrid with static headers, scrolling enabled and resizable columns. When grid is loaded initially, everything is fine. But when I resize any of column, a gap(white space) comes between mastertableview and scrollbar. I have tried many solutions given on telerik forum, but none of them helped.

Regards,
Mahesh
<telerik:RadGrid ID="Grid" runat="server" Width="100%"
         AutoGenerateColumns="false">
    <HeaderStyle Font-Bold="False" Font-Size="Small" />
    <ClientSettings EnableAlternatingItems="false">
        <Resizing AllowColumnResize="true" ClipCellContentOnResize="true" ResizeGridOnColumnResize="false"
        ShowRowIndicatorColumn="false" EnableRealTimeResize="false" AllowResizeToFit="true" />
        <Scrolling AllowScroll="true" UseStaticHeaders="true" SaveScrollPosition="false" />
    </ClientSettings>
    <ItemStyle Wrap="false"/>
    <AlternatingItemStyle Wrap="false" />
    <HeaderStyle Wrap="false" />
    <MasterTableView TableLayout="Fixed" Width="100%">
    </MasterTableView>
</telerik:RadGrid>
Pavlina
Telerik team
 answered on 06 Mar 2012
4 answers
187 views
Hi , I have a project with 2011 Q1  , i just upgrade the project to 2012 Q1 but it has a warning :

Assembly Reference "D:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\Bin40\Telerik.Web.UI.dll" was not updated properly. This usually happens in Visual Studio 2010 when an assembly exists both in the GAC and in a local folder. Please, use the GAC reference instead.

what should I do ?
max
Top achievements
Rank 2
 answered on 06 Mar 2012
6 answers
531 views
Hello, can anyone provide sample c# code or detailed documentation on the easiest way to extract/parse portions of a weekly recurrence string like:?

DTSTART:20090410T120000Z
DTEND:20090410T180000Z
RRULE:FREQ=WEEKLY;UNTIL=20090430T040000Z;INTERVAL=2;BYDAY=MO,WE

I have this value stored in a db field as a string and would like to extract some parts of this like the 'BYDAY' values and re-assign them to an existing appointment's recurrency rule.

Thanks in advance.
Peter
Telerik team
 answered on 06 Mar 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?