Telerik Forums
UI for ASP.NET AJAX Forum
11 answers
990 views
Hey Guys,
 I am using the 2008.3.1125.20 release of Rad Ajax controls, I have a RadGrid that uses a usercontrol (MyControl.ascx) to Insert/Edit records. I have set the EditForm mode to pop up, when I click the edit button on the grid the editfrom appears, But it is not accessible. It is grayed outed with the rest of the page, this renders the page useless at this point as I can access niether the edit form nor any other controls. I am using a Master/Content page so I don't know if this is causing the problem.

Any help will be greatly appreciated.

Regards,
Nyron.
Pavlina
Telerik team
 answered on 02 Sep 2016
2 answers
59 views

This issue only occurs on IE.

I have a paragraph :

<p>Example text. <a href="~/link.aspx?_id=B24915261EB04B28B48C4775A4C37D24&amp;_z=z" id="Link 1">Find out more about </a><a href="~/link.aspx?_id=F54964261EB041238C4775A4C37D24&amp;_z=z" id="Link 2">policies</a> </p>

In the design view, I select the whole paragraph and assign a new paragraph style to it (ex: Heading 1, heading 2). This one line is split into 3 different lines. Seems like IE splits by tag.

Any idea of how I can resolve this?

Cheers

Rumen
Telerik team
 answered on 02 Sep 2016
1 answer
187 views

Hey all.

I have a stored procedure that returns two columns: [dates] and [total]. I have bound a RadHtmlChart to this data as a Line Series. Currently, my tooltip is showing the [Total] properly, however I'd also like it to display the date.

Doing #=dataItem.dates# returns something along the lines of "Mon Aug 27 2016 12:00:000 Eastern Standard Time", which I would desperately need formatted. I'd prefer "08/29/16" and have tried to achieve it using the following:

#= kendo.format(\'{0:MM/dd/yy}\', dates) #

but this results in the tooltips not working at all, which I assume is indicative of a syntax error. Can anyone assist?

<telerik:RadHtmlChart runat="server" ID="RadHtmlChart1" Layout="stock" DataSourceID="report">
            <PlotArea>
                <Series>
                    <telerik:LineSeries DataFieldY="Total" Name="Combined Total">
                        <LineAppearance LineStyle="Smooth" />
                        <LabelsAppearance Visible="false"></LabelsAppearance>
                        <TooltipsAppearance>
                            <ClientTemplate>
                            <strong>Combined: </strong>#=dataItem.Total#
                            </ClientTemplate>
                        </TooltipsAppearance>
                    </telerik:LineSeries>
                </Series>
                <XAxis DataLabelsField="dates" Type="Date" BaseUnit="days" BaseUnitStep="1" EnableBaseUnitStepAuto="true">
                    <TitleAppearance Text="Date"></TitleAppearance>
                    <MajorGridLines Visible="true" />
                    <MinorGridLines Visible="false" />
                </XAxis>
                <YAxis>
                    <TitleAppearance Text="Declines"></TitleAppearance>
                    <LabelsAppearance DataFormatString="{0}">
                    </LabelsAppearance>
                </YAxis>
            </PlotArea>
        </telerik:RadHtmlChart>
Ianko
Telerik team
 answered on 02 Sep 2016
2 answers
72 views

Hi,

I'm getting an error when a user clicks on the export to excel button while the grid is edit or insert mode. Is there a quick way to address this or do i have to check for the grid's state and disable/enable the button?

Christian
Top achievements
Rank 1
 answered on 01 Sep 2016
3 answers
166 views
I want to be able to display only files that are not set to hidden by the OS.

How do I filter files that are hidden?  I'm using the filter example, but it looks like there is no attribute or property of Hidden.

Vessy
Telerik team
 answered on 01 Sep 2016
3 answers
347 views

I'm new to UI for ASP.NET AJAX, so please excuse my probably stupid question:

I'm working on a legacy project which I am supposed to leverage to the latest Visual Studio edition.

In the legacy application, it was common to download some files, add them to some project related "lib" folder and then reference the Assemblies therein.

Since we have NuGet now, I'd like to migrate the existing procedure to the currently suggested behaviour and download a matching NuGet package which then everyone in the team will automatically have downloaded and installed.

I can't find the Telerik NuGet package on nuget.org, though.

What is the suggested process of adding Telerik UI for ASP.NET AJAX to a web project?

Your help is apprecited.

Marin Bratanov
Telerik team
 answered on 01 Sep 2016
1 answer
87 views

Hello, 

I am getting lots of Not Loaded (error) in Image Editor of telerik:RadEditor. Please see the attachment for more details. It's really urgent, so help will be highly appreciated!!!

 

Thanks in advance.....

 

Attiq.

Rumen
Telerik team
 answered on 01 Sep 2016
4 answers
793 views
Hello Telerik Users,
I want to add an attribute to a GridBoundColumn which I create in the code. How do I achieve this?

Kind regards,

Marijn Ophelders
Eyup
Telerik team
 answered on 01 Sep 2016
3 answers
272 views

Hi,

Using the css border-collapse:collapse has no effect on the layout. Could you pls give an example how to create a simple grid layout with gridlines where the borders are all the same size (no double-up)?

Marin Bratanov
Telerik team
 answered on 01 Sep 2016
5 answers
768 views
hi  
   help me, how to find the controls  'rdpIntrwDate' and  'txtInterviewDateHij' within radgrid editform using javascript?
 Thanks for any suggestion



<telerik:GridTemplateColumn HeaderText=" Interview Date " UniqueName="InterviewDate" DataField="InterviewDate"
 HeaderStyle-ForeColor="Black"  >
<EditItemTemplate>
         <telerik:RadDatePicker ID="rdpIntrwDate" runat="server" Width="200px" DateInput-AutoCompleteType="Disabled"
                      AutoPostBack="false" SelectedDate='<%# Eval("InterviewDate")==DBNull.Value?DateTime.Today:Eval("InterviewDate") %>'
                        onkeydown="return (event.keyCode!=13);"
         CssClass="PersonalDatePicker" DateInput-DateFormat="dd/MM/yyyy" DateInput-DisplayDateFormat="dd/MM/yyyy">
           <ClientEvents OnDateSelected="GrigToHij" />
          </telerik:RadDatePicker>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="lblIntrwDate" runat="server" Text='<%# Eval("InterviewDate") %>'></asp:Label>
</ItemTemplate>
</telerik:GridTemplateColumn>
 
 <telerik:GridTemplateColumn HeaderText=" InterviewDateHij " UniqueName="InterviewDateHij" DataField="InterviewDateHij"
   HeaderStyle-ForeColor="Black"  >
    <EditItemTemplate>
        <telerik:RadTextBox ID="txtInterviewDateHij" runat="server"  Width="200px"
             Height="20px" ForeColor="#0066FF">
                    <ClientEvents OnValueChanged="HijToGreg" />
         </telerik:RadTextBox>
   </EditItemTemplate>
    <ItemTemplate>
      <asp:Label ID="lblDOBHij" runat="server" Text='<%# Eval("InterviewDateHij") %>'></asp:Label>
    </ItemTemplate>
</telerik:GridTemplateColumn>
Eyup
Telerik team
 answered on 01 Sep 2016
Narrow your results
Selected tags
Tags
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
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?