Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
383 views
Good nigth

I am using RadHtmlChart Column Chart and i want to know if it is possible to change the collums width to be like a Vertical Line ( 1px)

Best Regards,

Jose
Leg
Top achievements
Rank 1
 answered on 04 Nov 2013
4 answers
185 views
I am trying to use a RadContentTemplateTile in an asp:Repeater but the bindings are blank?  Any ideas?

<asp:Repeater ID="Repeater1" runat="server" DataSourceID="SqlDataSource1">
                <ItemTemplate>
                    <telerik:RadContentTemplateTile ID="RadContentTemplateTile1" runat="server"
                        Skin="Telerik">
                        <ContentTemplate>
                            <div>
                                Name:<%# Eval("Name")%>
                            </div>
 
                        </ContentTemplate>
                        <PeekTemplate>
                            <div>
                                peek here
                                <telerik:RadButton ID="RadButton2" runat="server" Text="RadButton"></telerik:RadButton>
                            </div>
                        </PeekTemplate>
                        <PeekTemplateSettings Animation="Slide" ShowPeekTemplateOnMouseOver="true" HidePeekTemplateOnMouseOut="true" />
                    </telerik:RadContentTemplateTile>
                </ItemTemplate>
 
            </asp:Repeater>


Marty

moegal
Top achievements
Rank 1
 answered on 04 Nov 2013
1 answer
1.1K+ views
Is it possible to enable date range selection within the RadDatePicker control by setting the Calendar-RangeSelectionMode property to either ConsecutiveClicks or OnKeyHold?  I was hoping for a sort of "out of the box" functionality, without the need for additional client-side scripting.  I know I can enable this functionality by using the RadCalendar control, which would cause the calendar to permanently display on the page, however I like the associated [format friendly] input field of the RadDatePicker along with the optional RadCalendar popup; however when using the following code, upon selecting my first/"start" date, the calendar dialog closes before I am able to select my second/"end" date.

<telerik:RadDatePicker runat="server" ID="MyDatePicker" Calendar-RangeSelectionMode="ConsecutiveClicks" />


Thanks,

Martin
Viktor Tachev
Telerik team
 answered on 04 Nov 2013
1 answer
79 views

I am using Telerik radgrid (version 2013.3.1015.35) control with grouping enabled. I need to know whether radgrid support paging/custom paging within a group. If so, how to implement.

I am trying to implement paging within the group as marked in red in the image attached. (pagination control can be default telerik pagination control)


Maria Ilieva
Telerik team
 answered on 04 Nov 2013
1 answer
37 views

I’ve been trying to get a Title for the pdf export in HTML format, and so far, no luck. I’ve seen every discussion about it and the help in the Grid documentation. So far, not cool at all.

I want to create a complex HTML div, with multiple tables, company logo, project information, filter information, and other important report information. I’m including a simple sample, if you can help me format it correctly so it can work, that would be great; if you can create a sample of a div with multiple tables, that would be great too.

Thank you,
-Sam

<div style="font-family: Arial; font-size: medium; width: 100%">
      <table style="width: 100%">
          <tr>
              <td style="width: 25%">
                  <table style="text-align: left">
                      <tr>
                          <td rowspan="3" style="vertical-align: middle">
                              <img alt="" src="../Images/2Forecast_100.png" width="200px" />
                          </td>
                          <td style="padding-left: 10px">
                              ForecastName
                          </td>
                      </tr>
                      <tr>
                          <td style="padding-left: 10px">
                              PrevForecastName
                          </td>
                      </tr>
                      <tr>
                          <td style="padding-left: 10px">
                              FilterDesc
                          </td>
                      </tr>
                  </table>
              </td>
              <td style="width: 50%; vertical-align: top;">
                  <table style="width: 100%; text-align: center;">
                      <tr>
                          <td style="font-size: large; font-weight: bold; text-align: center; width: 100%;">
                              Job Forecast Report
                          </td>
                      </tr>
                      <tr>
                          <td style="font-weight: bold">
                              JobName
                          </td>
                      </tr>
                  </table>
              </td>
              <td style="width: 25%; text-align: right; padding-right: 20px; vertical-align: middle;">
                  <table style="float: right">
                      <tr>
                          <td>
                              Comments
                          </td>
                      </tr>
                  </table>
              </td>
          </tr>
      </table>
  </div>

Kostadin
Telerik team
 answered on 04 Nov 2013
1 answer
128 views
Is it possible to databind the tile back color to a field with the hex value?

Marin Bratanov
Telerik team
 answered on 04 Nov 2013
1 answer
80 views
I had a RadScheduler in place and working under version 2011.3.1115.40 , upgraded to 2013.3.1015.40 and now the control has stopped working. Specifically, when I click  the recurrence checkbox, the associated panel does not open.

I'm getting a JS error when opening the page that is indicating that there are problems in the "AdvancedForm.js" file. The get_element() call is failing.

if ($telerik.isIE) {
    var textarea = this._getSubjectTextBox().get_element();
    textarea.style.cssText = textarea.style.cssText;
}


  Is there an ungraded version of the file I should be using with 2013.3.1015.40 ?

Boyan Dimitrov
Telerik team
 answered on 04 Nov 2013
1 answer
66 views
Hello, Telerik Team.

I would like to merge Saturday and Sunday cell and appointments

Does support any property or function?

thank you.
Boyan Dimitrov
Telerik team
 answered on 04 Nov 2013
2 answers
165 views
Hi,

I'm trying to add a CheckBox to the Edit and Insert forms. I've added a usercontrol AdvancedForm.ascx

<%@ Register TagPrefix="scheduler" TagName="AdvancedForm" Src="AdvancedForm.ascx" %>

<AdvancedEditTemplate>
                    <scheduler:AdvancedForm runat="server" ID="AdvancedEditForm1" Mode="Edit" Subject='<%# Bind("Subject") %>'
                         Description='<%# Bind("Description") %>' Start='<%# Bind("Start") %>' End='<%# Bind("End") %>' AllUsers='<%# Bind("AllUsers") %>'/>
               </AdvancedEditTemplate>
               <AdvancedInsertTemplate>
                    <scheduler:AdvancedForm runat="server" ID="AdvancedInsertForm1" Mode="Insert" Subject='<%# Bind("Subject") %>'
                         Start='<%# Bind("Start") %>' End='<%# Bind("End") %>' Description='<%# Bind("Description") %>' AllUsers='<%# Bind("AllUsers") %>'  />
               </AdvancedInsertTemplate>


And in the AdvancedForm.aspx, I've added this code

   <asp:CheckBox ID="cboxAllUsers" runat="server" Text="All Users" />

   
[Bindable(BindableSupport.Yes, BindingDirection.TwoWay)]
     public bool AllUsers
     {
         get
         {
             return cboxAllUsers.Checked;
         }
 
         set
         {
             cboxAllUsers.Checked = value;
         }
     }

I'm getting this error 

DataBinding: 'Telerik.Web.UI.Appointment' does not contain a property with the name 'AllUsers'.


How do I fix this error?


Thanks!
Boyan Dimitrov
Telerik team
 answered on 04 Nov 2013
7 answers
247 views
Hello

Can someone suggest a server side approch to closing a docked and or expanded sliding pane?

Setting the expandid id or the docked id to a non existant panel did not work.

Kyle
Vessy
Telerik team
 answered on 04 Nov 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?