Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
107 views
How can I transfer the url of the document I click on the AddressBox?
So when I click on a documented as shown in the AddressBox complete URL as www.mydomain.se/documents/mydocument.pdf
Vessy
Telerik team
 answered on 21 Oct 2014
1 answer
530 views
I am designing a new page and decided to 100% telerik, no asp controls.  I have a question on the radTextbox, it says its HTML5 compatabile for an input type but when I put an input type of numbers and go into IE11, it still allows text in the text box, I would think this would only allow numbers.  I see there is a radNumericTextbox that achieves my numbers on textbox, but why both if they support HTML5?

<td style="width:25%;text-align:right">Est. Attendance:</td>
               <td><telerik:RadTextBox ID="txtAttendance2" runat="server" Width="80px" MaxLength="4" InputType="Number"></telerik:RadTextBox>
                   <telerik:RadNumericTextBox ID="txtAttendance" runat="server" Width="80px" MaxLength="4"></telerik:RadNumericTextBox>
               </td>
Viktor Tachev
Telerik team
 answered on 21 Oct 2014
2 answers
185 views
Not a question, but a discovery that I didn't see documented...

I wanted to add a custom tooltip to my sparkline column chart. However, I kept getting duplicate series values showing in the tooltip. (See the image "sparkline-tooltip-series.jpg.)" It seems that the series value is displayed in addition to whatever you put in the template if the template is added to the Series. Here is the code behind the example in the image:

<telerik:RadHtmlChart runat="server" ID="rhcSol" Layout="Sparkline" Width="150px" Height="40px">
  <PlotArea>
    <Series>
      <telerik:ColumnSeries DataFieldY="cxCount">
        <Appearance FillStyle-BackgroundColor="Red"></Appearance>
        <TooltipsAppearance>
          <ClientTemplate><div style="color:white;">Sol #= category #</div>
      <div> #= value #</div>
          </ClientTemplate>
        </TooltipsAppearance>
      </telerik:ColumnSeries>
    </Series>
    <XAxis DataLabelsField="sol"></XAxis>
  </PlotArea>
  <Legend>
    <Appearance Visible="false"></Appearance>
  </Legend>
</telerik:RadHtmlChart>



To avoid this extra appearance of the series value, you have to use a shared template and put it in the PlotArea (not the Series). Code example for sparkline-tooltip-shared.jpg:

<telerik:RadHtmlChart runat="server" ID="rhcSol" Layout="Sparkline" Width="150px" Height="40px">
  <PlotArea>
    <CommonTooltipsAppearance Shared="true" Visible="true">
      <SharedTemplate><div style="color:white;">Sol #= category #</div>
      <div style="text-align:right;"> #= points[i].value #</div>
      </SharedTemplate>
    </CommonTooltipsAppearance>
    <Series>
      <telerik:ColumnSeries DataFieldY="cxCount">
        <Appearance FillStyle-BackgroundColor="Red"></Appearance>
        <TooltipsAppearance>
        </TooltipsAppearance>
      </telerik:ColumnSeries>
    </Series>
    <XAxis DataLabelsField="sol"></XAxis>
  </PlotArea>
  <Legend>
    <Appearance Visible="false"></Appearance>
  </Legend>
</telerik:RadHtmlChart>
Tom
Top achievements
Rank 1
 answered on 21 Oct 2014
4 answers
195 views
I am doing the data binding and filtering using the client side scripting.

I have set the following attributes for the GridDateTimeColumn:

GridDateTimeColumn.CurrentFilterFunction = GridKnownFunction.Between
GridDateTimeColumn.EnableRangeFiltering = True
GridDateTimeColumn.EnableTimeIndependentFiltering = True

The filter command is firing when i entered date in the From and To textboxes. That is fine.
The problem is, once i cleared both the textboxes, the filter command is not firing.
Also, when the filter command is firing for other columns, it still keeps the value entered in the From and To textboxes of the GridDateTimeColumn.

So, please help me how to invoke filter command as the command name as "NoFilter" if the filter value is cleared by the user.
Valli
Top achievements
Rank 1
 answered on 21 Oct 2014
1 answer
112 views
I have a RadWindow to show comments when I click button of GridButtonColumn of a RadGrid. When I click, in the ItemCommand event of the RadGrid I have the following code:

protected void rgQualityReport_OnItemCommand(object sender, GridCommandEventArgs e)
{
    if (e.CommandName == "ShowComment")
    {
        GridDataItem dataItem = e.Item as GridDataItem;
        comments.Content = dataItem["ColumnDate"].Text;
        this.modalPopupComments.VisibleOnPageLoad = true;
        RadWindowManager1.DestroyOnClose = true;
        RadWindowManager1.Controls.Add(modalPopupComments);
    }
}


The problem is the following:When I click the button, the radwindow is showed correctly. However, after close the radwindow and reload the page, in a postback reload I have the following error:sys.webforms.pagerequestmanagerservererrorexception JSCRIPT error.

Can you help me, please?Thanks!
Maria Ilieva
Telerik team
 answered on 21 Oct 2014
1 answer
584 views
Hi!
Is there any way in Telerik to have a responsive grid? I use it in a web page and with a lot of column headers, I wish it was as responsive as the grid in the link below for every device in any resolution: 
http://fooplugins.com/footable-demos/
Alternatively, is there any way to integrate footable attributes in a telerik radgrid?

Thanks!
Pavlina
Telerik team
 answered on 21 Oct 2014
3 answers
178 views
We have had our RadEditor working with a custom editor CSS file for a while, and the "Select CSS Class" dropdown properly shows just the classes in that file. I've been asked to add a TableLayoutCSSFile to provide a custom table format. Once I add the table file to the config, the table styles begin showing in the class dropdown.

Is there any way to prevent this? We don't want users to have to scroll through tons of table styles, just to get to the content styles at the bottom of the list.
Ianko
Telerik team
 answered on 21 Oct 2014
1 answer
116 views
Hi,

We were using ASP.net AJAX Q2 2013 along with VS 2010 for our development. Recently we upgraded the environment to VS 2013 and Telerik  ASP.net AJAX Q3 2013 RAD Controls.  Now we find that in all the web pages where we have the RAD Date picker, the control flickers in IE11 on post back. Also for drop down lists, the user has to click twice to get it working. There is a considerable slowness in these controls.  This is happening only in IE11 and works fine in chrome.  This was working correctly in IE 11 when we were using Q2 2013.  We cannot tell our clients to use chrome since our application works best in IE. 

We are now hesitating to provide our latest build to our clients due to the slowness of these controls.  What could be the possible issue and are there any workarounds or fixes for this? An early action from your end is appreciated.  

Thanks and Regards

Rajendran Valappil
Maria Ilieva
Telerik team
 answered on 21 Oct 2014
1 answer
113 views
Hello

I 've done the possibility at users to group by column (client mode)
That work very fine, but my column is,very large

My grid is 100 % width and all of my column are in %

Tank  you for your help

Annz
Pavlina
Telerik team
 answered on 21 Oct 2014
1 answer
109 views
I implemented a page similar to the demo here:
http://demos.telerik.com/aspnet-ajax/slider/examples/rangeslider/defaultcs.aspx

My page has a single slider and a tooltip that follows the drag handle. The tooltip shows text information and is visible at all times. This page works great.

Now I want to add a second slider on the page with a similar tooltip. However I have found out that only one tooltip can be visible on the page at the same time. So what I thought was going to be an easy change is now not so simple.

Is there any way to show two tooltips at the same time? If not, do you have an example or suggestion on what control I should use in place of the tooltip to implement similar functionality?
Niko
Telerik team
 answered on 21 Oct 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?