Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
83 views
I have implemented server side grid and I can see previous grid events like sorting columns, paging events like page index change page size are retaining even after new data bind. I want to clear all the previous events using one method when i do a fresh databind instead of using separate expressions for clearing each event.
Maria Ilieva
Telerik team
 answered on 15 Mar 2016
5 answers
787 views
I am using the date time picker to display apointment times what I was wanting to do was remove times that where booked with the radscheduler I no this would be custom code but is their any pointers on how to remove items from time time picker element of date time ?.
Viktor Tachev
Telerik team
 answered on 15 Mar 2016
1 answer
120 views

Hello,

  I am trying to export only grid selected rows in excel. While doing that Item.selected is not working in Grid_Exporting Event. Why?

PLUS, is there any way in grid Item Command "ExporttoExcel" like

e.exportoutput = HTML; // In grid_exporting

by which i can modify excel output.?

Konstantin Dikov
Telerik team
 answered on 15 Mar 2016
1 answer
74 views

Hi,

I have a playlist that is generated using only local mp4 items.  Everything is working correctly but I cannot figure out how to get the playlist to auto-advance to the next video.  For additional clairity, when video 1 plays and completes...i'd like it to start playing video 2...then 3...etc.  Currently it just remains at blank screen at end of video 1 and video 2 must be manually clicked to proceed.
Could you please assist with proper way to accomplish this. 

-Mike

Eyup
Telerik team
 answered on 15 Mar 2016
1 answer
257 views

I am using the RadCloudUpload control to copy files to Azure. The control itself is located in a RibbonBarTemplateItem, and the PanelContainerSelector is located in another section of the page. Everything works as expected.

For UI consistency, I want to style the Select Button for the RadCloudUpload to look like other RibbonBarButton controls. How would I go about doing that? Is there a CSS style I can specify, or a way to programmatically fire the event called by the Select Button of the  RadCloudUpload control?

 

Thanks...

Dean

Magdalena
Telerik team
 answered on 15 Mar 2016
1 answer
55 views

I have using TabStrip & Multi Page controls togather.

 

I have 4 tabs , but some how last tab's page(which using multi page control) is visible with every tab(at end of tab content), this happend after i upgraded to new version.

 

Can anybody tell me what causes this thing ?

 

Dhaval.

Nencho
Telerik team
 answered on 15 Mar 2016
1 answer
126 views

Hi,

I have noticed when I set ExplorerMode to Filetree

Filter box disappear.  Anyway to turn it on in this mode?

 

thanks

Vessy
Telerik team
 answered on 15 Mar 2016
3 answers
173 views

Hi,

I wanted that vertical splitter to be off or expanded by default,

resulting that left file treepane is hidden. How to do this?

I have tried this but doesn't work, don'r also expanded option.

thanks

  for (int i = 0; i < RadFileExplorer1.Splitter.Items.Count; i++)
        {
            RadSplitBar item = RadFileExplorer1.Splitter.Items[i] as RadSplitBar;
            if (item != null)
            {
                item.CollapseMode = SplitBarCollapseMode.None;
            }
        }           

Vessy
Telerik team
 answered on 15 Mar 2016
10 answers
420 views

hello,

i have 3 RadPane, when the button btnFilterVisible on the first RadPane is pressed the second RadPane filterPane is collapsed and this should give more space the the third RadPane resultsPane. The height of resultsPane is 100%
how can i change the size dynamically when we press the button (to show or hide the second RadPane)?
when i set the resultsPane height in filterPane_Collapsed there was no affect on the resultsPane size.

 

<telerik:RadSplitter ID="splitterContent" runat="server" Width="100%" Height="100%" Orientation="Horizontal">       
    <telerik:RadPane ID="searchPane" runat="server" Width="100%" Height="80px">               
        <asp:Button ID="btnFilterVisible" runat="server" Text="Hide Filter" OnClientClick="btnFilterVisible_clicked()"  />  
     </telerik:RadPane>
     <telerik:RadPane ID="filterPane" runat="server" Width="100%" Height="200px" OnClientExpanded="filterPane_Expanded" OnClientCollapsed="filterPane_Collapsed">
     </telerik:RadPane>
     <telerik:RadPane ID="resultsPane" runat="server" Width="100%" Height="100%" Scrolling="Both"  >
      </telerik:RadPane>
 </telerik:RadSplitter>  
  
 <script type="text/javascript">
 
     function btnFilterVisible_clicked()
     {
         var splitter = $find("<%= splitterContent.ClientID %>");
         var filterPane = splitter.getPaneById("<%= filterPane.ClientID %>");
         var resultsPane = splitter.getPaneById("<%= resultsPane.ClientID %>");
         var filterText = $("#<%=btnFilterVisible.ClientID%>").val();
         if (filterText == "Hide Filter")
         {
             filterPane.collapse();
             $("#<%=btnFilterVisible.ClientID%>").val("Show Filter");
         }
         else
         {
             filterPane.expand();
             $("#<%=btnFilterVisible.ClientID%>").val("Hide Filter");
         }
     }
 
     function filterPane_Collapsed()
     {
        //resize resultsPane
     }
 
     function filterPane_Expanded()
     {
        //resize resultsPane
     }
 
</script>

Vessy
Telerik team
 answered on 15 Mar 2016
14 answers
930 views
Going back and retesting a previously working piece of code, I now get a different result under version 311 and 402.

On initial page load, I am setting the MinDate value to "DateTime.MinValue" (or 01/01/0001). This is accepted and works through the UI (accepting dates that far back). But on PostBack, it resets the MinDate to "01/01/2001" instead of keeping my MinDate, which changes the entered value to "01/01/2001" instead of keeping my value. I was using "01/01/1900" as the test date.
 
I'm not sure when this functionality changed, but it was previously working fine. Is this expected behavior? How do we accept really old dates?

Pavlina
Telerik team
 answered on 14 Mar 2016
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
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
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?