Telerik Forums
UI for ASP.NET AJAX Forum
8 answers
187 views
I was looking at my old version of the editor. These steps:

1. Add this to HTML view

a<br>
b<br>
c<br>

2. Switch to Design view. And then highlight the text (Ctrl+A)
3. Click the bullet list.
4. The generated HTML was

<ul><li><span style="line-height: 1.5;">a</span></li><li><span style="line-height: 1.5;">b</span></li><li><span style="line-height: 1.5;">c</span></li></ul>

But, in the latest version, the HTML generated is 

<ul><li>a<br>
b<br>
c</li></ul>

So, the logic of the bullet points has changed. How can I add a bullet list to selected text (as done previously) in the new version.

Thanks.
LePaul
Top achievements
Rank 1
 answered on 28 Jan 2014
3 answers
92 views
hi.
how can i showing RadFileExplorer's upload dialog when root folder is empty on page load?
Dobromir
Telerik team
 answered on 28 Jan 2014
1 answer
81 views
I'm wondering how to set a column width when my grid is empty.

Right now I'm using the <columns> to generate my template, and NoRecordsTemplate which just says 'No Rows'.
Inside Columns I have several GridTemplateColumn fields and use ItemStyle to set the width.
The problem is when the grid is empty the column widths do not apply.

I have pasted in the code for the grid below:

<telerik:RadGrid ID="rdGrdDueToday" Height="200px" runat="server" Width="100%" AutoGenerateColumns="False"
                                        Skin="Sunset" AllowCustomPaging="false" DataSourceID="dsBFsDueToday" AllowSorting="true"
                                        OnItemCommand="rdGrdGeneric_itemcommand" AllowPaging="false" DataKeyNames="brfo_id"
                                        OnDataBound="rdGrdGeneric_Databound">
                                        <MasterTableView DataSourceID="dsBFsDueToday" DataKeyNames="brfo_id">
                                            <AlternatingItemStyle CssClass="evenRowBFs" />
                                            <NoRecordsTemplate>
                                                No BFs were found</NoRecordsTemplate>
                                            <HeaderStyle CssClass="HeaderBFs" />
                                            <ItemStyle CssClass="oddRowBFs" />
                                            <Columns>
                                                <telerik:GridTemplateColumn HeaderText="PID" DataType="System.Int32" UniqueName="prsn_id"
                                                    SortExpression="prsn_id">
                                                    <ItemStyle HorizontalAlign="Left" Width="68px" VerticalAlign="Middle" />
                                                    <ItemTemplate>
                                                        <asp:Label runat="server" ID="lblPID" Text='<%# Eval("prsn_id") %>' CssClass="labelOneRowHighFontBigger"></asp:Label>
                                                    </ItemTemplate>
                                                </telerik:GridTemplateColumn>
                                                <telerik:GridTemplateColumn HeaderText="Name" DataType="System.String" UniqueName="Name"
                                                    SortExpression="Name">
                                                    <ItemStyle HorizontalAlign="Left" VerticalAlign="Middle" Height="15px" Width="275px" />
                                                    <ItemTemplate>
                                                        <asp:Label runat="server" ID="lblName" Text='<%# Eval("Name") %>' CssClass="labelOneRowHighFontBigger"> </asp:Label>
                                                    </ItemTemplate>
                                                </telerik:GridTemplateColumn>                                               
                                            </Columns>
                                        </MasterTableView>
                                        <ClientSettings EnablePostBackOnRowClick="True" EnableRowHoverStyle="True">
                                            <Scrolling AllowScroll="True"></Scrolling>
                                        </ClientSettings>
                                    </telerik:RadGrid>
Princy
Top achievements
Rank 2
 answered on 28 Jan 2014
3 answers
392 views
Hi all, real quick question here, is it at all possible some how to allow the filter / markfirstmatched stuff to filter the list on the item.value as well as the text but only display the text element..?

Basically, we have a list of establishments and the value for each establishment is it's site id, some people would love to just type in the 4 digit site id instead of the full name of the site (old school people who are fast with the number pad...) and so it'd be really good if I could specifiy what the items get filtered on?

If I can't filter on both the text and value, could I atleast change to filtering to point at the item.tooltip as I have added both the Text and Value into the tooltip...

Thanks in advance!!!

Adam.
Adam
Top achievements
Rank 1
 answered on 28 Jan 2014
1 answer
91 views
hello,

I have a telerik grid with pagination,

programmatically, i set cells values from ItemDataBound event, one of columns contain accumulated values ,

my problem appears when i navigate to second page , i want to display in first row the total already displayed in previous page,  

how can i achieve that ?

thanks in advance..
Viktor Tachev
Telerik team
 answered on 28 Jan 2014
1 answer
4 views
Hi,

I am experiencing some strange things when playing MP3 in the Mediaplayer.
One of them is that the counter doesn't show the correct time, see screenshot.

This is on www.soonar.nl
Could it be that it has to do with VBR encoding of the MP3?

M.
Eyup
Telerik team
 answered on 28 Jan 2014
1 answer
5 views
Hi Team,

I have Combo Box , where on Item Request i am showing more than 15000 records with Formated form, Data is geting show on multiple column in item template, but its takes too much time and system gets hang everyime, Data returns very quick from database but on demand load systems gets hang.
Could you please help to rid this issue.

HTML

 

<telerik:RadComboBox ID="ddlProplandowner" runat="server" Width="700px" Height="200px"

 

ItemRequestTimeout="100" DropDownWidth="730px" EmptyMessage="Choose ..." EnableLoadOnDemand="true"

 

AllowCustomText="false" HighlightTemplatedItems="true" OnClientSelectedIndexChanged="ProplandownerLookup"

 

ShowMoreResultsBox="True" EnableItemBindingExpressions="True" EnableVirtualScrolling="True" >

 

<HeaderTemplate>

 

<table cellspacing="5" cellpadding="0" width="680">

 

<tr>

 

<td align="left" width="110">

First Name

 

</td>

 

<td align="left" width="100">

Last Name

 

</td>

 

<td align="left" width="100">

Entity Type

 

</td>

 

<td align="left" width="150">

Corporation/Trust/Company

 

</td>

 

<td align="left" width="110">

State

 

</td>

 

<td align="left" width="100">

County

 

</td>

 

</tr>

 

</table>

 

</HeaderTemplate>

 

<ItemTemplate>

 

<table cellspacing="0" cellpadding="0" width="680px">

 

<tr>

 

<td align="left" width="110">

<%

 

#DataBinder.Eval(Container.DataItem, "FirstName")%>

 

</td>

 

<td align="left" width="100">

<%

 

#DataBinder.Eval(Container.DataItem, "LastName")%>

 

</td>

 

<td align="left" width="100">

<%

 

#DataBinder.Eval(Container.DataItem, "ContactTypeName")%>

 

</td>

 

<td align="left" width="150">

<%

 

#DataBinder.Eval(Container.DataItem, "CorpTrustName")%>

 

</td>

 

<td align="left" width="110">

<%

 

#DataBinder.Eval(Container.DataItem, "CurrentStateId")%>

 

</td>

 

<td align="left" width="100">

<%

 

#DataBinder.Eval(Container.DataItem, "CurrentCountyname")%>

 

</td>

 

</tr>

 

</table>

 

</ItemTemplate>

 

</telerik:RadComboBox>

Code

Dim itemOffset As Integer = e.NumberOfItems

 

 Dim endOffset As Integer = Math.Min(itemOffset + ItemsPerRequest, ds.Rows.Count)

 e.EndOfItems = endOffset = ds.Rows.Count

 ddlProplandowner.DataTextField ="ContactName"

 

ddlProplandowner.DataValueField = "Id"

ddlProplandowner.DataSource = ds

ddlProplandowner.DataBind()

 

e.Message = GetStatusMessage(endOffset, ds.Rows.Count)

Boyan Dimitrov
Telerik team
 answered on 28 Jan 2014
1 answer
77 views
Hi All,

I'm using v.2013.3.1114.45 to pain some chart. My chart has many series(more than 10), so the legend appear in more than one lines, and I find I cannot format the legend to let the multiple line left justified. I thought an workaround way to fill the legend name with space to same length but it still did not work. Can anyone help on this, attached the screenshot. Thanks very much.
Stamo Gochev
Telerik team
 answered on 28 Jan 2014
1 answer
118 views
Hi,

Im using Radbutton for my aspx pages, I previously saw on telerik documention which shows all the telerik images using SecondaryIconCssClass but now im unable to find it .

Can somebody help navigating to that page.

I don't want to use images, I want to use as the following

 <telerik:RadButton ID="rdbtnSave" runat="server" Text="Save" Skin="WebBlue"
                        onclick="rdbtnSave_Click">
                        <Icon PrimaryIconCssClass="rbSave" PrimaryIconLeft="4" PrimaryIconTop="4"></Icon>
                    </telerik:RadButton>
                    <telerik:RadButton ID="rdbtnCancel" runat="server" Text="Cancel" Skin="WebBlue"
                        onclick="rdbtnCancel_Click">
                        <Icon SecondaryIconCssClass="rbCancel" SecondaryIconRight="4" SecondaryIconTop="4">
                        </Icon>
                    </telerik:RadButton>
Shinu
Top achievements
Rank 2
 answered on 28 Jan 2014
2 answers
280 views
I have a grid with a GridHyperLink column and I would like to have a tooltip displayed for the link.  What is the best way to do this?  I understand that I can change it to a GridTemplateColumn and create everything myself, but I was hoping there was a way to do it in ItemDataBound or in another event.

Thanks,
Joel
Joel Kraft
Top achievements
Rank 2
 answered on 28 Jan 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?