Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
313 views
When we do a “copy – paste”   from excel, the format gets lost, it only keeps the structure of the table, the rest is a flat text. 
The same behavior is present in your demonstration page (version Q2 2009 SP1 2009.2.826).  Our workaround is to paste the copied structure in Word and then to copy it from Word to the RAD editor to preserve the format.

Ianko
Telerik team
 answered on 06 Aug 2014
1 answer
100 views
I was going through Telerik Control and found out that it has ImageGallery Control which takes all the images from a folder and can automatically start SlideShow.

Similarly, I need to show SlideShow of all the Images from a folder when a user clicks on a HyperLink in a popup window. I was using PicLens Lite http://www.stylus.co.za/piclens/ but it doesn't have support of IE 11.

Can it be done?

Thanks
Shinu
Top achievements
Rank 2
 answered on 06 Aug 2014
1 answer
62 views
I have a RadRotator in a div at the bottom of a page in my application. The div can be hidden and shown by the user clicking a button (using jQuery slideToggle). I am using the RadRotator in the CoverFlowButtons mode. The Rotator contains a list of images and also has hidden fields containing certain pertinent data - a timeline value in particular whereby a particular "slide" should be displayed for a certain period of time before moving on to the next one. The user can choose to switch between slides manually and this all functions correctly. I discovered early on that every time the Rotator is "slid" into view (or hidden) the OnClientItemShown event gets fired. I trap the event using a flag so that it doesn't reset the timeline position to the start of that slide every time the user shows or hides the Rotator. Up until a recent Telerik update that has operated perfectly well. Unfortunately, I've applied a couple of updates to my development source recently (applied one only to get another update almost immediately so I applied that as well) before doing some further development work. But now I have found I am having a problem whereby every time the user shows or hides the Rotator the time positioning gets reset and it would appear that this is because the OnClientItemShown event is being fired twice. Can you please investigate and see if there's a problem here - I don't really want to have code round multiple executions of the event?

The code I have in the event gets the current item using the "args.get_item()" method and then performs some further code with data read from the contents of the item but only if my "flag" is not set. While debugging my code I can see that this works perfectly but after I've run on out of the event, it executes the event again which by then has reset my flag so it thinks it is valid to perform the rest of the code.

Any help would be greatly appreciated. I can go back to earlier versions of the Telerik controls if necessary to establish what version the problem started to occur in though I'd prefer not to have to if at all possible.

Thanks and regards

Paul.
Slav
Telerik team
 answered on 06 Aug 2014
3 answers
147 views
In the editor demo, clear the content. Use either <p> or <div> for new lines. Use the link tool to create a simple link. Move the cursor to the end of the link and press 'enter' a couple of times to create new lines. Switch to html view and you will see the link repeated several times, with '&nbsp;' in place of the display text.

You can also see this with the sample content - place the cursor at the end of the 'tons of features' link and press 'enter'. Again, you will see the link repeated.

No problem when using <br> for new lines.

Ianko
Telerik team
 answered on 06 Aug 2014
17 answers
673 views
<telerik:RadComboBox Visible="false" TabIndex="4" Skin="Vista" ID="rcbBarNumber" Runat="server" Width="200px" HighlightTemplatedItems="true" ShowToggleImage="false" EnableOverlay="true" ShowDropDownOnTextboxClick="false" DropDownWidth="350px" MaxLength="20" CausesValidation="false"  AllowCustomText="true" EnableLoadOnDemand="true" ShowWhileLoading="true" EnableScreenBoundaryDetection="false" ExpandDirection="Up" EnableVirtualScrolling="true" ShowMoreResultsBox="true" AutoPostBack="True" OnClientItemsRequested="OnClientItemsRequested" OnClientDropDownOpening="OnClientDropDownOpening" OnItemsRequested="rcbBarNumber_ItemsRequested" OnSelectedIndexChanged="rcbBarNumber_SelectedIndexChanged"  ItemsPerRequest="10" CollapseAnimation-Type="None" MinFilterLength="0">
</telerik:RadComboBox>    
 
<asp:TextBox ID="tbFirmName" ToolTip="Enter Firm Name" runat="server" TabIndex="5" Width="250" MaxLength="70" />
 
<telerik:RadComboBox Visible="false" TabIndex="7" Filter="StartsWith" Skin="Vista" ID="rcbFirstName" runat="server"
AllowCustomText="true" Width="200px" HighlightTemplatedItems="true" ShowToggleImage="false" EnableOverlay="true" ShowDropDownOnTextboxClick="false" DropDownWidth="350px" MaxLength="20" CausesValidation="false" EnableLoadOnDemand="true" ShowWhileLoading="true" EnableScreenBoundaryDetection="false" ExpandDirection="Up" EnableVirtualScrolling="true" ShowMoreResultsBox="true"
AutoPostBack="True" OnClientItemsRequested="OnClientItemsRequested" OnClientDropDownOpening="OnClientDropDownOpening" OnItemsRequested="rcbFirstName_ItemsRequested" OnSelectedIndexChanged="rcbBarNumber_SelectedIndexChanged" ItemsPerRequest="10" CollapseAnimation-Type="None" MinFilterLength="0">                                                           
</telerik:RadComboBox>
                                                        <asp:TextBox ID="tbMiddleName" ToolTip="Enter Middle Name" Width="200px" TabIndex="8" runat="server" MaxLength="20" />
                                                        <asp:TextBox ID="tbLastName" ToolTip="Enter Last Name" Width="200px" TabIndex="9" runat="server" MaxLength="70" />                                                       
                                                        <telerik:RadComboBox Visible="false" Skin="Vista" TabIndex="10" ID="rcbLastName" runat="server"  AllowCustomText="true" Width="200px" Filter="StartsWith" ShowWhileLoading="false" HighlightTemplatedItems="true" ShowToggleImage="false" EnableOverlay="true" ShowDropDownOnTextboxClick="false" DropDownWidth="350px" MaxLength="20" CausesValidation="false"  EnableLoadOnDemand="true" EnableScreenBoundaryDetection="false" ExpandDirection="Up" EnableVirtualScrolling="true" ShowMoreResultsBox="true"
 AutoPostBack="True" OnClientItemsRequested="OnClientItemsRequested" OnClientDropDownOpening="OnClientDropDownOpening" OnItemsRequested="rcbLastName_ItemsRequested" OnSelectedIndexChanged="rcbBarNumber_SelectedIndexChanged"  ItemsPerRequest="10" CollapseAnimation-Type="None" MinFilterLength="0">                                                                                                                          
</telerik:RadComboBox>
                                                        <telerik:RadComboBox ID="rcbSuffix" ToolTip="Enter or Select Suffix" runat="server" TabIndex="12" Skin="Vista" AllowCustomText="true" MaxLength="5" CausesValidation="false"
                                                            EnableLoadOnDemand="true" EnableVirtualScrolling="true"
                                                            DropDownWidth="50" Width="50" />
Shinu
Top achievements
Rank 2
 answered on 06 Aug 2014
1 answer
144 views
Hello All,

We are using the RadEditor with the Image Manager.

In our implementation, we do not want to let the user create new folders or move around the existing folder tree.
They can basically access one folder and one folder only.

While we have that restriction setup, our interface still shows three elements that I would like to HIDE:

(1) New Folder button/icon
(2) Current Path
(3) Browse Folder Tree

(screenshot attached as well for easier reference)

From what I've read online, we should be able to customize this to hide each of those..... which will really help me clean up the interface since these items are just adding confusion.

Can someone please help me with the proper procedure for hiding these three elements?

Thank you very much in advance. I appreciate any assistance!
Ianko
Telerik team
 answered on 06 Aug 2014
13 answers
192 views
Hi,

Is it possible to add multiple x-axis or y-axis in rad chart?

Thanks
Danail Vasilev
Telerik team
 answered on 06 Aug 2014
1 answer
69 views
Hi Guys

I am using Version - 2011.2.915.40
I am having button for Collapse and Expand above RadTreeList
When i hit collapse all node collapses , no issue, after collapse when i click on particular node to open , it is opening all nodes,
My requirement  - i need that particular node to open

but when all in expanded state i can open or close particular node, is this any version conflict or my approach is wrong , if any sample will be great

Please guide me

Senthil
Sentil
Top achievements
Rank 1
 answered on 06 Aug 2014
6 answers
234 views
I have created simple bar charge. 
x Axis has values like 0-6, 6-12, 12-18
for some reasons it is converting 6-12 to date format. 
how can I solve this problem? see attachment. 

using this code. 

<telerik:RadHtmlChart runat="server"  ID="NonAdmitted" >
                        <PlotArea>
                            <Series>
                                    <telerik:ColumnSeries DataFieldY="Total" Name="Test Chart">
                                        <TooltipsAppearance Color="Blue" />
                                    </telerik:ColumnSeries>
                            </Series>
                            <XAxis DataLabelsField="weeksgroup" >
                                    <LabelsAppearance>
                                    </LabelsAppearance>
                                    <TitleAppearance Text="WeeksGroup">
                                    </TitleAppearance>
                            </XAxis>
                            <YAxis>
                                    <TitleAppearance Text="Total">
                                    </TitleAppearance>
                            </YAxis>
                        </PlotArea>
                        <Legend>
                            <Appearance Visible="false" >
                            </Appearance>
                        </Legend>
                        <ChartTitle Text="Incomplete Pathway - Admitted">
                        </ChartTitle>
                    </telerik:RadHtmlChart>




Danail Vasilev
Telerik team
 answered on 06 Aug 2014
3 answers
117 views
Hi 

RadMaskedTextBox doesnt work on mobile andoid browsers.

A user asked the same question two years ago but there was no updated fix.

Has there been a fix for this?

Regards
Grant
Dimitar
Telerik team
 answered on 06 Aug 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?