Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
103 views
I'm interested in shifting the right click column context menu to a left click.  I've gotten this to work by binding to the OnColumnClick event and showing the menu in that way (though i also have to put in a timer and disable closing the menu for a short time - otherwise it shows and immediately hides itself).  However, if the user clicks on the header text itself (rather than just the column background), the grid still wants to sort itself.  Disabling sort fixes that problem, but then it also removes the sort functions from the context menu.

My context menu already has a number of custom elements in it, and i could certainly just add my own custom entries there.  But i figured i would stop in here and see if there's an out of the box way to accomplish this goal.  Can you turn off click to sort, but maintain the menu entries?

-RP
Veli
Telerik team
 answered on 15 Mar 2011
6 answers
204 views
Hi!

Can someone show me an example how to accomplish the following in RadScheduler?

The user selects the desired time slots with the mouse pointer and then right click to bring up a TimeSlotContextMenu designed something like this:

<TimeSlotContextMenus>
    <telerik:RadSchedulerContextMenu ID="SchedulerTimeSlotContextMenu" runat="server">
    <Items>
        <telerik:RadMenuItem Text="Peter" />
        <telerik:RadMenuItem Text="Adam" />
        <telerik:RadMenuItem Text="Niclas" />
        <telerik:RadMenuItem Text="Jones" />
    </Items>
    </telerik:RadSchedulerContextMenu>
</TimeSlotContextMenus>

Then when the user choose one of the menu items a booking should be done without poping up a booking form.

Is it possible? If so, how do I do it?

I'm using C# and the Rad v2010.3.1317.40.

Sincerely, Thomas




Peter
Telerik team
 answered on 15 Mar 2011
1 answer
135 views
Hi,

Can we have RadMenu in our custome sharepoint 2010 Master page. Please suggest How we can achieve this?

Thanks
Ali
Kalina
Telerik team
 answered on 15 Mar 2011
1 answer
54 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
169 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
164 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
360 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
73 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
331 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
92 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
Narrow your results
Selected tags
Tags
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?