Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
151 views
My request is for the creation of a manaual or set of tutorials for real end users not developers. The users who use this editor are often real non technical people who have no understanding whatsoever of HTM or the web, they can just about use word. These users consistently find using the RadEditor for anything other than basic text editing difficult because of the concepts involved. As an example the concept of applying classes is one they find very difficult but with some basic knowledge the soon get the hang of it (like styles in word).
I realise this is a difficult thing todo because of the many ways the editor can be configured but I personally would be so happy if you achieved this so I didnt have to spend any more of my time training users on how to do basic CMS.

Thanks
John

p.s. I have provided them all with RadEditorAjaxEndUserManual.pdf but they find it too difficult to understand.
Tervel
Telerik team
 answered on 12 Mar 2009
1 answer
265 views
I'm using the RadSlider as a custom scrollbar (like in this application scenario: http://demos.telerik.com/aspnet-ajax/slider/examples/customscrollbar/defaultcs.aspx) and would like to be able to allow the user to scroll inside the content div using the mouse's scroll wheel. Is there a way to accomplish this?
Tsvetie
Telerik team
 answered on 12 Mar 2009
2 answers
117 views
Hi,

I updated from Q3 08 to Q1 2009.
Everything (from a fast test) works fine - except compressin.
Regarding to the documentation (and a blog post) I use the following setting (beside others) in web.config.

<telerik.web.ui> 
    <radCompression  EnablePostbackCompression="true"/>  
</telerik.web.ui> 
After the Update I get an error telling me that EnablePostbackCompression is not a valid attribute.

Regards

Manfred
Sebastian
Telerik team
 answered on 12 Mar 2009
1 answer
119 views
Hi iam working on RAD Slider
Plz tell me how to bind the data from the SQL SERVER View to SLIDER In C#












Thanks in Advance
Sumanth
Tsvetie
Telerik team
 answered on 12 Mar 2009
0 answers
113 views
hi,

Is it possible to set the WorkDayStarTime to 3:30 or any time I want?
Same with  EndTime also.

Thanks,
Bermo
Bermo
Top achievements
Rank 1
 asked on 12 Mar 2009
1 answer
125 views
Hello ,

on our Sharepoint server we are recieving constantly these errors

Error: Failure in loading assembly: RadSpell.Net2, Version=3.2.4.0, Culture=neutral, PublicKeyToken=b5dad7bf2bf594c2
Error: Failure in loading assembly: RadEditor.Net2, Version=7.3.2.0, Culture=neutral, PublicKeyToken=852c9eb6525c1b53

Any idea how to get rid of these issue?

Thank you









Stanimir
Telerik team
 answered on 12 Mar 2009
0 answers
71 views
Hi,

Am new to Telerik RAD controls. In a page am using RAD tabstrip control with 5 tabs. Each tab is having 5 combo box and the values are fetched from DB. The problem is the load time of the page......

As I dont want to use viewstate I disabled it. Please suggest how to overcome this problem....

Kind Regards,
Jack
Jagadeswaran
Top achievements
Rank 1
 asked on 12 Mar 2009
6 answers
175 views
Dear telerik,

Is it possible to share the same ColorBox for multiple Pickers? The reason for this is that when multiple color pickers are present on the page, some browsers begin to lag.

Thank you for your support.
Tsvetie
Telerik team
 answered on 12 Mar 2009
1 answer
95 views
Hi all,

I am just getting to grips with the RadGrid and trying to style it with my own skin. though having some really strange problems...

Code is below, though a quick explanation..
The RadGrid is bound to a List<custom object> and binds all well and good
Sorting is enabled and works well
Paging is enabled and works well
Filtering is enabled though this is where is starts to get a little funky...

I want the filter to appear on only certain columns, so set AllowFiltering="True" on the GridBoundColumn in the skin file - this works
I then set the AllowFiltering="false" on the GridTemplateColumn as these only contain buttons that i don't want/need to filter

If a default skin is applied then the content of this template column contains 2 buttons that are built and applied during the OnItemDataBound event.

As soon as i wish to use my custom skin via the SKinId then an additional column appears to the right of my buttons column containing the string value for the type that is being used in the grid - in this case "BoxOfficeBO.BLL.BL.UserProxy". This additional column contains the filters though the filter images is not found

The skin is only in its infant stage at the moment, next to nothing applied.

I know there are many ways to create the buttons for the rows, though at the time this best suits the need; though will re-factor if this is what is causing the issue.

So, how do i:
    A) Hide the filter options for certain columns and not others
    B) stop the type being output as a string in the template when custom skining?


Any ideas would be great.

Cheers

ASPX Code:

<telerik:RadGrid ID="SummaryGrid" runat="server" EnableEmbeddedSkins="false" SkinID="AdminGrid" 
                 AutoGenerateColumns="False" AllowSorting="true"   
                 GridLines="Both" BorderColor="Black" BackColor="gray" AllowPaging="True" PageSize="5" OnItemDataBound="BindRows" > 
 
<MasterTableView AllowFilteringByColumn="True" > 
    <Columns> 
        <telerik:GridBoundColumn DataField="Title" HeaderText="Title" SortExpression="Title"  UniqueName="Title" ItemStyle-Width="5%"  ></telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="Forename" HeaderText="Forename" SortExpression="Forename" UniqueName="Forename" ItemStyle-Width="20%" ></telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="Surname" HeaderText="Surname" SortExpression="Surname"  UniqueName="Surname" ItemStyle-Width="20%"></telerik:GridBoundColumn> 
        <telerik:GridHyperLinkColumn DataTextField="Email" SortExpression="Email" DataNavigateUrlFormatString="mailto:{0}" DataNavigateUrlFields="Email"  HeaderText="Email" UniqueName="Email"  ItemStyle-Width="20%"></telerik:GridHyperLinkColumn> 
        <telerik:GridTemplateColumn  AllowFiltering="true" UniqueName="Locked" > 
            <HeaderTemplate> 
                <asp:Label runat="server" ID="userlockedheader" Text="Enabled" /> 
            </HeaderTemplate> 
            <ItemTemplate> 
                <asp:Image runat="server" ID="LockedImage" /> 
            </ItemTemplate> 
        </telerik:GridTemplateColumn> 
        <telerik:GridBoundColumn DataField="LastAccessed" SortExpression="LastAccessed"  HeaderText="Last Login"  UniqueName="LastAccessed" ItemStyle-Width="20%"></telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="RoleName"  HeaderText="Role" SortExpression="Role"  UniqueName="RoleName" ItemStyle-Width="20%"></telerik:GridBoundColumn> 
        <telerik:GridTemplateColumn HeaderText="Actions">  
            <ItemTemplate> 
                <asp:Panel runat="server" ID="ActionsPanel"></asp:Panel> 
            </ItemTemplate> 
        </telerik:GridTemplateColumn> 
    </Columns> 
</MasterTableView> 
 
</telerik:RadGrid>  


Code behind for itemDataBound

 protected void BindRows(object sender, GridItemEventArgs e)  
        {  
                        
            if (e.Item is GridDataItem)  
            {  
                UserProxy user = (UserProxy)e.Item.DataItem;  
                if (user != null)  
                {  
                    Image locked = e.Item.FindControl("LockedImage"as Image;  
                    locked.ImageUrl = (user.IsLocked) ? ThemePath + "images/icons/false.png" : ThemePath + "images/icons/true.png";  
                }  
                                  
                // Delete Button  
                if (CanDelete)  
                {                     
                    Panel ActionsPanel =  (Panel)e.Item.FindControl("ActionsPanel");                      
                    ImageButton DeleteBtn = new ImageButton();  
                    DeleteBtn.ImageUrl = ThemePath + "images/icons/delete16.png";  
                    DeleteBtn.ToolTip = "Delete User";  
                    DeleteBtn.ID = "delete_" + e.Item.RowIndex.ToString();  
                    DeleteBtn.CommandArgument = "delete_" + user.UserId.ToString();  
                    DeleteBtn.Command += new CommandEventHandler(ActionButtonClicked);  
                    DeleteBtn.CssClass = "ActionButton";  
                    DeleteBtn.OnClientClick = "return ConfirmMessage('" + Resources.CommonMessages.ConfirmDeleteBefore + " " + user.Forename + " " + user.Surname + "" + Resources.CommonMessages.ConfirmDeleteAfter + "')";  
                    DeleteBtn.Attributes.Add("onMouseOver""return WindowStatus('Delete User " + user.Forename + " " + user.Surname + "')");  
                    DeleteBtn.Attributes.Add("onMouseOut""return WindowStatus('')");  
                    ActionsPanel.Controls.Add(DeleteBtn);                      
                }  
 
                // View Button  
                ImageButton ViewBtn = new ImageButton();  
                ViewBtn.ImageUrl = ThemePath + "images/icons/open16.png";  
                ViewBtn.ToolTip = "Open User";  
                ViewBtn.ID = "open_" +  e.Item.RowIndex.ToString();  
                ViewBtn.CommandArgument = "open_" + user.UserId.ToString();  
                ViewBtn.Command += new CommandEventHandler(ActionButtonClicked);  
                ViewBtn.CssClass = "ActionButton";  
                ViewBtn.Attributes.Add("onMouseOver""return WindowStatus('Open User " + user.Forename + " " + user.Surname + "')");  
                ViewBtn.Attributes.Add("onMouseOut""return WindowStatus('')");  
                ((Panel)e.Item.FindControl("ActionsPanel")).Controls.Add(ViewBtn);  
            }  
               
        } 


Skin in INFANT stage -

<telerik:RadGrid  runat="server" SkinID="AdminGrid" ImagesPath="~/app_themes/admin theme/images/icons/">  
 
<MasterTableView>      
    <Columns> 
        <telerik:GridBoundColumn ShowSortIcon="true" AllowFiltering="true" FilterImageToolTip="Filter" FilterImageUrl="filter.gif"></telerik:GridBoundColumn> 
        <telerik:GridTemplateColumn AllowFiltering="false" ></telerik:GridTemplateColumn> 
    </Columns> 
</MasterTableView> 
<FilterItemStyle  /> 
<HeaderStyle BackColor="#C1DFFD" Font-Bold="False" Font-Size="12px" ForeColor="Black" Wrap="True" /> 
</telerik:RadGrid> 









Dimo
Telerik team
 answered on 12 Mar 2009
9 answers
354 views
Hi,

In the old version of RadEditor I was able to close open dialogs in Javascript with the command CloseDlg(). However, that code is no longer working and I can't find an equivalent in the documentation of the Ajax version. Can you point me in the right direction?

Cheers,
Matt
Fiko
Telerik team
 answered on 12 Mar 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?