Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
243 views
Hi,

I'm having an issue using telerik control on one of the page i'm working on now, it is using ajaxpro.2
and on the page_load event of the page 
Utility.RegisterTypeForAjax(typeof(_Default));
is called.
well my problem is that when i add a radcombobox to the page it will not work throwing a javascript error
like "h constructor something" and the other one is n(l) something", i've made certain test on the page
the first one is i added a radscriptmanager and remove the radcombobox and it is working fine, but when i add
the radcombobox a javascript error is thrown, and lastly is i remove the code on the page_load event of the page
and add the radscriptmanager and radcombobox and it works fine, so i'm assuming that the problem is ajaxpro.2 is not compatible
with telerik controls? anyone has experienced this problem before? TIA

-eds
Genady Sergeev
Telerik team
 answered on 19 Oct 2010
1 answer
93 views

Is it possible to resizing the most right column on the RadGrid. I'm not able to do this in my application and as I can see in this demo it's not possible also. http://demos.telerik.com/aspnet-ajax/grid/examples/client/resizing/defaultcs.aspx

Pavlina
Telerik team
 answered on 19 Oct 2010
1 answer
131 views
I need the insert image control to have an upload option or have image manager slimmed way down. I don't want the file view functionality in the image manager. That's the best way to explain it. I want the user to upload an image and it insert into the editor. That's all, no extras.
Rumen
Telerik team
 answered on 19 Oct 2010
1 answer
87 views
Hello,

We use the RadEditor to allow our customers to create emails that will be sent to email clients.  We've noticed in IE8 and Chrome that you are unable to set the specific font for an area of text if that font happens to be the same as the default body font for the HTML page the editor is on.  


times new roman<br />
<span style="font-family: verdana;">verdana</span><br />
<span style="font-family: georgia;">georgia</span><br />
times new roman<br />
<span style="font-family: arial;">arial</span>

Rumen
Telerik team
 answered on 19 Oct 2010
3 answers
131 views
Hello,

I have RadGrid with GridTemplateColumn that has text with <br> tags and some other html tags.
When I excport the grid to excel it splits every text line within the template row to cells.
How can I make all the text in the template cell exported as single cell?

Best Regards,
Alex Vr.
Daniel
Telerik team
 answered on 19 Oct 2010
3 answers
197 views

I'm trying to add totals to the headers of my grouping columns but can't figure out how to do it.  As you can see from the image I attached I need to see the total ticket count for each region before or after it has been expanded and I need to same logic applied to the second grouping by client as well.  Is this something that can be done or do I need to use detail grids here?

<telerik:RadGrid ID="rg1" runat="server" DataSourceID="dsPriority1" Skin="Web20"
                                                    AllowAutomaticUpdates="false" AllowAutomaticDeletes="true" AutoGenerateColumns="false"
                                                    AllowSorting="true" AllowPaging="false" ShowFooter="true" PageSize="50" PagerStyle-Position="TopAndBottom">
                                                    <MasterTableView ShowGroupFooter="true" GroupsDefaultExpanded="false" HeaderStyle-BackColor="#7FA5D7"
                                                        ItemStyle-BackColor="#B0C4DE" AlternatingItemStyle-BackColor="White" FooterStyle-Font-Bold="true">
                                                        <Columns>
                                                            <telerik:GridBoundColumn HeaderText="Region" DataField="Region">
                                                            </telerik:GridBoundColumn>
                                                            <telerik:GridBoundColumn HeaderText="Client" DataField="ClientName">
                                                            </telerik:GridBoundColumn>
                                                            <telerik:GridBoundColumn HeaderText="Ticket #" DataField="TicketNumber" Aggregate="Count">
                                                            </telerik:GridBoundColumn>
                                                        </Columns>
                                                        <GroupByExpressions>
                                                            <telerik:GridGroupByExpression>
                                                                <GroupByFields>
                                                                    <telerik:GridGroupByField FieldName="Region" />
                                                                </GroupByFields>
                                                                <SelectFields>
                                                                    <telerik:GridGroupByField FieldName="Region" HeaderText="Region" SortOrder="Ascending" />
                                                                </SelectFields>
                                                            </telerik:GridGroupByExpression>
                                                        </GroupByExpressions>
                                                        <GroupByExpressions>
                                                            <telerik:GridGroupByExpression>
                                                                <GroupByFields>
                                                                    <telerik:GridGroupByField FieldName="ClientName" />
                                                                </GroupByFields>
                                                                <SelectFields>
                                                                    <telerik:GridGroupByField FieldName="ClientName" HeaderText="Client" SortOrder="Ascending" />
                                                                </SelectFields>
                                                            </telerik:GridGroupByExpression>
                                                        </GroupByExpressions>
                                                    </MasterTableView>
                                                </telerik:RadGrid>
Timothy Kruszewski
Top achievements
Rank 1
 answered on 19 Oct 2010
2 answers
462 views
I have a gridview with 3 layers of grouping and can't figure out how to format the child groups.  For example, I would like to first grouping(Region) to be white, the second grouping(Client) to be black and the third grouping(Team) to be some other color. 

<telerik:RadGrid ID="rg2" runat="server" Skin="Web20" AllowAutomaticUpdates="false"
                                AllowAutomaticDeletes="true" AutoGenerateColumns="false" AllowSorting="true"
                                AllowPaging="false" ShowFooter="true" ShowGroupPanel="false" ShowGroupHeader="true"
                                OnItemDataBound="rg1_ItemDataBound" OnPreRender="rg2_PreRender">
                                <MasterTableView ShowGroupFooter="false" GroupsDefaultExpanded="false" HeaderStyle-BackColor="#7FA5D7"
                                    ItemStyle-BackColor="White" AlternatingItemStyle-BackColor="#B0C4DE" FooterStyle-Font-Bold="true">
                                    <Columns>
                                        <telerik:GridBoundColumn HeaderText="Region" DataField="Region">
                                        </telerik:GridBoundColumn>
                                        <telerik:GridBoundColumn HeaderText="Client" DataField="ClientName">
                                        </telerik:GridBoundColumn>
                                        <telerik:GridBoundColumn HeaderText="Team" DataField="TeamName" Aggregate="Count">
                                        </telerik:GridBoundColumn>
                                        <telerik:GridTemplateColumn HeaderText="Ticket #" UniqueName="TicketNumber"
                                            DataField="TicketNumber">
                                            <ItemTemplate>
                                                <asp:HyperLink ID="hlTicket" runat="server" Text='<%# Bind("TicketNumber") %>'></asp:HyperLink>
                                            </ItemTemplate>
                                        </telerik:GridTemplateColumn>
                                        <telerik:GridBoundColumn HeaderText="TicketID" DataField="TicketID" Visible="false">
                                        </telerik:GridBoundColumn>
                                        <telerik:GridBoundColumn DataField="TotalTickets" Visible="false">
                                        </telerik:GridBoundColumn>
                                        <telerik:GridBoundColumn DataField="GridID" Visible="false">
                                        </telerik:GridBoundColumn>
                                    </Columns>
                                    <GroupByExpressions>
                                        <telerik:GridGroupByExpression>
                                            <GroupByFields>
                                                <telerik:GridGroupByField FieldName="Region" />
                                            </GroupByFields>
                                            <SelectFields>
                                                <telerik:GridGroupByField FieldName="Region" HeaderText="Region" SortOrder="Ascending" />
                                            </SelectFields>
                                        </telerik:GridGroupByExpression>
                                    </GroupByExpressions>
                                    <GroupByExpressions>
                                        <telerik:GridGroupByExpression>
                                            <GroupByFields>
                                                <telerik:GridGroupByField FieldName="ClientName" />
                                            </GroupByFields>
                                            <SelectFields>
                                                <telerik:GridGroupByField FieldName="ClientName" HeaderText="Client" SortOrder="Ascending" />
                                            </SelectFields>
                                        </telerik:GridGroupByExpression>
                                    </GroupByExpressions>
                                    <GroupByExpressions>
                                        <telerik:GridGroupByExpression>
                                            <GroupByFields>
                                                <telerik:GridGroupByField FieldName="TeamName" />
                                            </GroupByFields>
                                            <SelectFields>
                                                <telerik:GridGroupByField FieldName="TeamName" HeaderText="Team" SortOrder="Ascending" />
                                            </SelectFields>
                                        </telerik:GridGroupByExpression>
                                    </GroupByExpressions>
                                </MasterTableView>
                            </telerik:RadGrid>
Timothy Kruszewski
Top achievements
Rank 1
 answered on 19 Oct 2010
1 answer
116 views
Hi,

ZeroPadNumericRanges

 

of Radmaskedtextbox is not working.Please let me know how this will be work

Dimo
Telerik team
 answered on 19 Oct 2010
2 answers
139 views
Hi, for the insert, I'm doing this:

        Protected Sub rdScheduler_AppointmentInsert(ByVal sender As Object, ByVal e As Telerik.Web.UI.SchedulerCancelEventArgs) Handles rdScheduler.AppointmentInsert
            Dim uid As Integer
            If Not e.Appointment.Resources.GetResourceByType("User") Is Nothing Then
                uid = CInt(e.Appointment.Resources.GetResourceByType("User").ToString)
            Else
                uid = -1
            End If

            objEventController.Add(e.Appointment.Subject, e.Appointment.Start, e.Appointment.End, e.Appointment.RecurrenceRule, e.Appointment.RecurrenceParentID, uid)
        End Sub

This always seem to insert a 0 as e.Appointment.RecurrenceParentID.
That's fine with me, but when I want to delete an item, it will always say somthing like: "Cannot locate the parent of appointment with ID = '5'. Ensure that the parent appointment with ID = '0' exists and is loaded."

So what should I do.
Peter
Telerik team
 answered on 19 Oct 2010
1 answer
84 views
Hi,

We were struggling with some of the client requirement where they want inline spell check. We are heavily relying on Telerik ASP.NET AJAX. Unfortunately telerik do not have this feature.

We are exploring Karamasoft spell check which perfectly fits with the requirement, but again I want to stick to Telerik. I am expecting they will come up with the feature in future release.

Thanks
Shoeb
Rumen
Telerik team
 answered on 19 Oct 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?