Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
48 views
Hi,

I need to use the RAD Menu control in my Sharepoint 2010 Master Page. Kindly can you guide me how to go about it.

Thanks
Ali
Kalina
Telerik team
 answered on 15 Mar 2011
3 answers
134 views
Hi,

Our web applications are currently using the following versions of Telerik ASP.NET AJAX:
2008 Q3
2010 Q1
2010 Q2
2010 Q3


When browsing some of these web applications using IE8, the IE8's Compability View mode has to be switched on.

We are in the process of upgrading these web applications to use the latest version of Telerik ASP.NET AJAX which fully supports IE8.

Can you please tell us which version of Telerik ASP.NET AJAX to use so that the IE8's Compatibility View mode does NOT need to be switched on?

Regards
Sebastian
Telerik team
 answered on 15 Mar 2011
6 answers
142 views
Hi All,
I am just trying to remove the validation from the AdvancedInsert and Edit templates that require that a subject must be entered.
I want the subject to be optional.
Anybody know how to do this?
Thanks,
Steele.
Peter
Telerik team
 answered on 15 Mar 2011
5 answers
326 views
Hi i am doing change of page size of radgrid  on click of radpane event PaneCollapsed , but its not changing ? how to do this?


   function PaneCollapsed(sender, eventArgs) {
       var grid = $find('<%= radgvInbox.ClientID%>');
       grid.MasterTableView.PageSize = 20;
       var masterTable = $find("<%= radgvInbox.ClientID %>").get_masterTableView();
       masterTable.PageSize = 20;                  
   }

i tried the above two ways... how to do this?
Bhuvan
Top achievements
Rank 1
 answered on 15 Mar 2011
1 answer
66 views
We were using custom skins for radgrid with telerik version 2008.1.415.20.
But we have upgraded the telerik to version 2010.2.929.35 and the custom skins no longer work

We inspected the code and the new dll appends an addition tag in front of the class name and some of the class names have been completely changed.
For instance:
The class RadGrid_ASCDGrid has been changed to RadGrid RadGrid_ASCDGrid in the generated code.
Class MasterTable_ASCDGrid has been changed to rgMasterTable etc.etc..

I looked at the code samples on your site and i see a class called "RadGrid RadGrid_MyCustomSkin" (just like it changed in my code). However you style sheet does not contain the same class. Instead it still has the "RadGrid_MyCustomSkin" class.

How can I resolve this. What do I have to do to use the same existing style sheet?

Your code:
<telerik:RadGrid ID="RadGrid1" Skin="MyCustomSkin" EnableEmbeddedSkins="false" DataSourceID="ObjectDataSource1"
            PageSize="10" runat="server" AllowFilteringByColumn="true"
            AllowPaging="True" AllowSorting="True" ShowFooter="True"
            ShowStatusBar="true" GridLines="None" AutoGenerateColumns="false">


is rendered as <table id="RadGrid1" class="RadGrid RadGrid_MyCustomSkin" cellspacing="0" ..... >

In the old version it used to render the class as RadGrid_MyCustomSkin, but now its RadGrid RadGrid_MyCustomSkin. However there is no style defined as RadGrid RadGrid_MyCustomSkin.

Please advice.
thanks
jay
Iana Tsolova
Telerik team
 answered on 15 Mar 2011
2 answers
288 views
Hi, I wolud like to stop postback call on collapse event. How I do?  I have a Panel bar that on click (server) bind a grid inside him and expan panel. This is ok, but them when I click on expand panel the control recall server side, and then, collapse panel. I wolud like to call serve when expand but not then collapse. Can I do?
thank

<telerik:RadAjaxPanel ID="RadAjaxPanel1Contratti" runat="server" Height="100%"
                    LoadingPanelID="RadAjaxLoadingPanel1" 
                    ClientEvents-OnResponseEnd="adjustSizeEnd" 
                    ClientEvents-OnRequestStart="adjustSizeStart">             
                    <telerik:RadPanelBar runat="server" ID="RadPanelBarContratti" 
                    AllowCollapseAllItems="True" Width="100%" 
                    CssClass="panelBoxOut"
                    onitemclick="RadPanelBarContratti_ItemClick" 
                    OnClientItemExpand="OnExpand" 
                    OnClientItemCollapse="OnCollapse">
                        <Items>                
                            <telerik:RadPanelItem Text="Contratti" value="pnlDataAnagafica">
                                <Items>
                                    <telerik:RadPanelItem Value="Grid">
                                        <ItemTemplate>     
                                        <div class="panelBoxIn">                                                                              
                                            <telerik:RadGrid ID="grdContratti" runat="server" DataSourceID="ObjectDataSourceContratti" 
                                            GridLines="None" Visible ="False" AutoGenerateColumns="False">
                                                <MasterTableView>                                                                                                                  
                                                </MasterTableView>
                                            </telerik:RadGrid>   
                                        </div>
                                        </ItemTemplate>
                                    </telerik:RadPanelItem>
                                </Items>
                            </telerik:RadPanelItem>                
                        </Items>
                    </telerik:RadPanelBar>   
                </telerik:RadAjaxPanel>
Francesco
Top achievements
Rank 1
 answered on 15 Mar 2011
1 answer
64 views
I really appreciate your help and support, as i am a rookie here so my questions wont be that challenging for u guys :-D

my problem is that when a click on advanced button in the rad add appointments form, an new form is generated and displayed and its header is [Add Appointments], but my application is not about appointments, it is about the Employees Time Slots fot their jobs. so i have to change the word appointments to Time Slots in the scheduler everywhere,
Help will be really appreciated,

Regards,
Sher
Sher
Top achievements
Rank 2
 answered on 15 Mar 2011
3 answers
491 views
Hi,

I am using RadGrid to capture the details with EditMode="InPlace".

In my RadGrid there are 4 columns:
1. Qty
2. UnitPrice
3. TotalAmount
4. ProductAge

Now, Qty, UnitPrice, TotalAmount columns are GridNumericColumn.& ProductAge is GridDropDownColumn.

For Editmde i am using GridNumericColumnEditor & GridDropDownListColumnEditor.

When i double click on row i get the Row in Editable mode but the issue is:
> OnBlur, at client-side, of Qty/UnitPrice, i want to calculate the values and update the TotalAmount field in the grid itself.

I have searched most of the pages regarding the RadGrid in Edit Mode with Inplace for my scenario but i did not get any solution.

Please help me as soon as possible because i spent almost a day on it.

Thanks in advance.

Regards,
Mahendra
Princy
Top achievements
Rank 2
 answered on 15 Mar 2011
3 answers
83 views
Hi 

I have a rad grid in which i have a status column where I need to bind the current status from the DB. Also near by the item i have a " + " button when clicking on that, it should drop a list of status coming from dbmaster_status. and the user should be able to select a new status and update the db. what is the best option i have inside rad grid. No other button for updating the status.
Princy
Top achievements
Rank 2
 answered on 15 Mar 2011
1 answer
38 views
I'm using a RadGrid within a RadTab, within a RadWindow.  My local RadGrid attributes are:
<rad:RadGrid runat="server" id="memberGrid" 
                OnNeedDataSource="MemberGridNeedDataSource" 
                OnItemCreated="MemberGridItemCreated"
                OnItemDataBound="MemberGridItemDataBound"   
                ShowHeader="true" BorderWidth="0"  >
                <MasterTableView PageSize="3" >
                    <Columns>
                             ...
                    </Columns>                    
                </MasterTableView>
            </rad:RadGrid>
My global RadGrid skin attributes are:
<rad:RadGrid
    runat="server"
    ImagesPath="~/App_Themes/mySkin/Grid"
    Skin="mySkin"
    EnableEmbeddedSkins="false"
    AutoGenerateColumns="false"
    ShowFooter="true"
    AllowPaging="true" 
    PageSize="25"
    AllowSorting="true"
    Width="100%">
    <PagerStyle Mode="NextPrevNumericAndAdvanced"></PagerStyle>
    </rad:RadGrid>

And my OnNeedDataSource function simply resets the DataSource of the grid:
protected void MemberGridNeedDataSource(object sender, GridNeedDataSourceEventArgs e)
        {
            memberGrid.DataSource = Members; // Generic List
        }

I've added 5 items dynamically to the grid, in order each named "First", "Second", "Third", "Forth", "Fifth".  I add these items to a list using Members.InsertAt(0, new CustomListItem("First")).  The "InsertAt(0,...)" forces the next item added to the list to appear in the first row in the grid when rebound.  The issue I'm noticing is when paging, the RadGrid displays the wrong end of the list on the next page.  In the screen shot, I would expect to see, in order, "Second" and "First" on page 2 (screenshot fig b.), but instead it displays "Fifth", "Forth"...which is already being displayed when viewing page 1 (screenshot fig a.).  I've inspected the data source and all items do exist (screenshot fig c.). 

Any ideas on why the range that the RadGrid is selecting to view on the next page is not correctly aligned with the datasource?

Thanks,
Patrick
Veli
Telerik team
 answered on 15 Mar 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?