Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
154 views
All,

I have created a website using the radcontrols. I have a few pages that seem to show incorrectly when deployed over the Cisco Web VPN. For instance, I have a default page that contains the radscheduler and a master page that contains a radpanelbar. These items show and work fine using the default VPN client, but when I try to use the pages over the existing WebVPn, they seem to now show up on the page or completly lose their functionality. I have read on forum posts that Cisco rewrites the jscript files and that enabling smart tunneling is a possible workaround. Does anybody know of any other workarounds that could help me in this matter because some of my users cannot install the VPN client because of Federal restrictions on their laptops. Thanks for all the help.

Paul
Telerik team
 answered on 09 Oct 2009
4 answers
194 views
Hi,
I have a problem in Timeline View in RadScheduler, The appointment collapse on each other and especially when I make the test wrap inisde the appointment  as shows in the attached picture. Please need a solution and I am waiting your replay

Thanks
Ban Shareef

Peter
Telerik team
 answered on 09 Oct 2009
5 answers
139 views
Hi,

Last week i installed RadEditorMOSS_5_3_1_Dev in our sharepoint environment. I followed the steps describe in http://homercles.wordpress.com/2008/06/30/installing-telerik-moss-editor/.

1: install ASP.Net Ajax Extensions
2: Extending SharePoint web.config files with Microsoft ASP.NET AJAX 1.0
3: Add RadEditorMOSS_5_3_1_Dev solution to sharepoint
4: IIS Reset

Note:
I did not add a ScriptManager into a SharePoint MasterPage.

My question is:
- Why is the standard sharepoint editor not replaced by the RAD Editor?
- What do i need to do to accomplish this?


Kinds regards

B
Stanimir
Telerik team
 answered on 09 Oct 2009
2 answers
154 views
I have dockpanels that can be dragged by clicking the content area, I also have a contextmenu for each dock. The problem is that dragging will start by left or right clicking the dockpanel while the contextmenu is also opened by right clicking. This is in a situation where the dock titlebars are hidden to get a WYSIWYG display of the page. I like to use left clicking to start dragging and right clicking to open the contextmenu. Is there a way to prevent starting a drag when using the right mouse button?

Any suggestion is greatly appreciated...

Kind regards,
Huib van Dongeren
Huib
Top achievements
Rank 1
 answered on 09 Oct 2009
6 answers
209 views
I have a grid with 3 columns, a combo box, text box and numeric box.  Its been working ok, then suddenly for no reason I can see it will no longer switch to edit mode.  I can insert new rows and delet existing rows, but clicking the edit button does nothing.  Can anyone see what the hell could have happened here ?  It juststopped working and I cant see why

<telerik:RadGrid ID="RadGridCastList" GridLines="None"   
            AutoGenerateColumns="false" PageSize="10" 
            AllowPaging="true" AllowSorting="false" runat="server" Skin="Vista"   
            onneeddatasource="RadGridCastList_NeedDataSource" OnUpdateCommand="RadGridCast_UpdateCommand" 
            OnItemCreated="RadGridCast_ItemCreated" OnDeleteCommand="RadGridCast_DeleteCommand" 
            OnInsertCommand="RadGridCast_InsertCommand"   
            onitemdatabound="RadGridCast_ItemDataBound" Width="100%"   
            HorizontalAlign="Left" > 
              
            <MasterTableView ShowFooter="false" DataKeyNames="ID" EditMode="InPlace" CommandItemDisplay="Top" InsertItemPageIndexAction="ShowItemOnCurrentPage" Name="CastlistMembers">  
                <Columns> 
                  
                                          
                    <telerik:GridEditCommandColumn ButtonType="ImageButton" UniqueName="EditCommandColumn">  
                        </telerik:GridEditCommandColumn> 
                          
                      
                    <telerik:GridTemplateColumn UniqueName="CastMember" HeaderText="Cast Member" 
                        SortExpression="CastMember">  
                          
                        <ItemTemplate> 
                            <%#DataBinder.Eval(Container.DataItem, "CastMemberName")%> 
                        </ItemTemplate> 
                        <EditItemTemplate> 
                            <telerik:RadComboBox DataTextField="CastMemberName"   
                             DataValueField="CastMemberID"   
                             OnItemsRequested="RadComboBox1_ItemsRequested" 
                                EnableLoadOnDemand="True"   
                                ID="RadComboBox1"   
                                runat="server"   
                                Width="220px"   
                                SelectedValue='<%#Bind("CastMemberName") %>'>  
                            </telerik:RadComboBox> 
                        </EditItemTemplate> 
                    </telerik:GridTemplateColumn> 
                      
                    <telerik:GridTemplateColumn HeaderText="Role" UniqueName="CastMemberRole" DataField="CastMemberRole">  
                        <ItemTemplate> 
                            <asp:Label ID="lblCastMemberRole" runat="server" Text='<%# Eval("CastMemberRole") %>' /> 
                        </ItemTemplate> 
                        <EditItemTemplate> 
                            <telerik:RadTextBox ID="txbCastMemberRole" Width="300px" runat="server" TextMode="SingleLine" 
                                Text='<%# Bind("CastMemberRole") %>' /> 
                        </EditItemTemplate> 
                        <ItemStyle VerticalAlign="Top" /> 
                    </telerik:GridTemplateColumn> 
                      
                    <telerik:GridTemplateColumn UniqueName="DisplayOrder" HeaderText="Display Order" 
                        SortExpression="DisplayOrder">  
                          
                        <ItemTemplate> 
                            <%#DataBinder.Eval(Container.DataItem, "DisplayOrder")%> 
                        </ItemTemplate> 
                        <EditItemTemplate> 
                            <telerik:RadNumericTextBox ID="RadNumericTextBoxDisplayOrder" runat="server" DataType="System.Int" MinValue="0" NumberFormat-DecimalDigits="0">  
                            </telerik:RadNumericTextBox>   
                        </EditItemTemplate> 
                    </telerik:GridTemplateColumn> 
                      
                     <telerik:GridButtonColumn ConfirmText="Delete this cast list member ?" ButtonType="ImageButton" 
                                        CommandName="Delete" Text="Delete" UniqueName="DeleteColumn1">  
                                        <HeaderStyle Width="20px" /> 
                                        <ItemStyle HorizontalAlign="Center" CssClass="MyImageButton" /> 
                                    </telerik:GridButtonColumn> 
                                      
                </Columns> 
 
 
<EditFormSettings> 
<EditColumn UniqueName="EditCommandColumn1"></EditColumn> 
</EditFormSettings> 
                <PagerStyle AlwaysVisible="True" /> 
 
 
            </MasterTableView> 
        </telerik:RadGrid> 
Pavlina
Telerik team
 answered on 09 Oct 2009
1 answer
150 views
I have a dynamically generated RadGrid created during Page_Init and added to a placeholder control on the page. For some reason if I set a SkinID to our custom skin, it does not take it. The RadGrid renders with the RadGrid_default skin styles instead. Is there something I am missing? Note: a static grid on the same page does apply the skin correctly.

Thanks
Shanthala
Mira
Telerik team
 answered on 09 Oct 2009
1 answer
80 views
when i set AccessKey to the tab and set it to disabled i get an error after i use this shortcut (sth like):  preventDefault is empty or it is not an object

Paul
Telerik team
 answered on 09 Oct 2009
3 answers
188 views
hi,    

    We have a requirement. There are 30 bound columns in the rad grid and 2 of them are freezed. All the column widths are set using  headerstyle width property and we have even set the resizing property of radgrid. Everything works fine. But when any column is resized the freezed columns behaviour is weird, its size increases once horizontal scroll is done. Freezing and resizing doesnt work  properly. plz find the code below. any inputs will be appreciated

<

 

telerik:RadGrid runat="server" ID="dummy" AutoGenerateColumns="true"

 

 

Visible="false" OnColumnCreated="dummy_ColumnCreated"  HeaderStyle-Width="200" HeaderStyle-Wrap="false" >

 

 

<MasterTableView TableLayout="Fixed" CellSpacing="1"/>

 

 

<ClientSettings>

 

 

<ClientEvents OnRowSelected="RowSelectedOU" />

 

 

<Scrolling AllowScroll="true" UseStaticHeaders="true" FrozenColumnsCount="1" ScrollHeight="275px">

 

 

</Scrolling>

 

 

<Selecting AllowRowSelect="true" />

 

 

<Resizing AllowColumnResize="true" ResizeGridOnColumnResize="true" AllowRowResize="false" EnableRealTimeResize="false" />

 

 

</ClientSettings>

 

 

</telerik:RadGrid>

Regards,
Srikanth

 

Pavlina
Telerik team
 answered on 09 Oct 2009
1 answer
59 views
hi,

I'm having a checkboxlist which is binding from the db, it has the following values

1.family
2. friends
3. business

on selecting the checkbox the scheduler populates with the appropriate values, so  what i want is i want to give different colors to these three for eg for family -blue , friends-green, business - orange
so that we can identify
 
any idea

regards
chinnu
Schlurk
Top achievements
Rank 2
 answered on 09 Oct 2009
1 answer
69 views

 

I have RadGrid in web application, Paging Working Perfectly when pagerStyle Mode is set to "NumericPages" and "Advanced"

When Mode is

1) set  to ="NextPrevAndNumeric"  Paging is not working properly.  i.e.,  I have total 4 pages is in grid.  When I click Page 2, data on page 2 displayed properly.  When I click Page 3.  Data on page 4 is displayed.  Now if i press Page 2 then Data on Page 3 is displayed.  when I click Page 1 then data on page 2 is dispalyed.

I have binded datagrid on pageload  also I have Grid's pageIndexChanged Method.  When I remove Pageindex changed mehtod then also same issue occurs..

2) set mode to = "NextPrev"   then also paging have issues.  i.e.  I have total 4 pages is in grid, when I click "next" data on page 2 displayed.   Then again if you click "Next"  data on page 1 displayed instead of data on page 3.

Kindly suggest what is the reason behind this odd behavior ??

Pavlina
Telerik team
 answered on 09 Oct 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?