Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
183 views
I have downloaded the psd skin files from http://www.telerik.com/support/product-skins-downloads.aspx.

However, the files do not have the slices in them.  Anyway we can get the slice information in these files that produces the output images?
Nicholas
Top achievements
Rank 1
 answered on 30 Jun 2008
1 answer
78 views
This is addressed to users, rather than Telerik folk (I know what their answer is <g>.)

I bought the RadControls for ASP.NET over a year ago (Q1 07)... so my support contract has now expired.

Should I renew?
Should I go to the new controls (for ASP.NET/AJAX)?
Why?

Some views would be helpful.... TX

Steve
Donna
Telerik team
 answered on 30 Jun 2008
1 answer
128 views
Is it possible to have a gridview that allows people to edit rows, but prevent them from editing select columns within the gridview?
Shinu
Top achievements
Rank 2
 answered on 30 Jun 2008
1 answer
133 views

I need to disable or make invisible selection check boxes for some rows depending on a value of an item in the row.

The following technique partially works. It prevents the user from selecting certain rows.  But it has 2 problems.

1) It disables entire rows (displays them in light grey).  Instead I want to just disable or make invisible the checkbox for these rows.

2) The user can still check all rows by clicking the checkbox in the header.

This post addresses problem #2:
http://www.telerik.com/community/code-library/submission/b311D-mkmkk.aspx

Notes with this posted project say the problem will be solved in Q1. Is it fixed?  It seems not.
Anyway the script provided "almost works".  But I get an "object needed" message on the line that references HiddenField1

 checkBox = $get($get('HiddenField1').value)

even though I do have the following on the user control:

            <asp:HiddenField ID="HiddenField1" runat="server" />
            <asp:HiddenField ID="HiddenField2" runat="server" />

*** code ***

protected void RadGrid1_PreRender(object sender, EventArgs e)
{
    foreach (GridDataItem item in RadGrid1.MasterTableView.Items)
    {
        GridDataItem dataitem = (GridDataItem)item;

        string scs = dataitem["SCSname"].Text;
        if (scs != "(none)") //disable chkbox
        {
            dataitem.Enabled = false;

            if (dataitem.Selected)
            {
                dataitem.Selected = false;
            }
        }
    }
} 

Konstantin Petkov
Telerik team
 answered on 30 Jun 2008
5 answers
279 views
We have a checkbox and a RadDatePicker in a GridTemplateColumn using the Office2007 skin for the grid. For some reason, the RadDatePicker is showing up with the left and bottom borders inside the grid (meaning the border below the RadDatePicker and the border to the left of the input and to the left of the calendar icon). Below is the GridTemplateColumn that we are using:

<telerik:GridTemplateColumn HeaderText="Expiration" UniqueName="TemplateColumn1"> 
                                <ItemTemplate> 
                                    <asp:CheckBox ID="chkExpires" runat="server" Checked='<%# DataBinder.Eval(Container, "DataItem.Expires") %>' />&nbsp; 
                                    <telerik:RadDatePicker ID="dtpExpires" runat="server" DbSelectedDate='<%# Bind("ExpireDate") %>'> 
                                        <DatePopupButton CssClass="radPopupImage_Default" /> 
                                        <Calendar UseColumnHeadersAsSelectors="False" UseRowHeadersAsSelectors="False" Skin="WebBlue"> 
                                        </Calendar> 
                                        <DateInput Width="100%"> 
                                        </DateInput> 
                                    </telerik:RadDatePicker> 
                                </ItemTemplate> 
                            </telerik:GridTemplateColumn> 

I need to get the borders gone because it doesn't look good and the DatePicker is taking up a lot more space than it needs to.
Dimo
Telerik team
 answered on 30 Jun 2008
1 answer
147 views
Hello,
I am using alphabetic paging with objectdatasource. Which is working properly.
When i am trying to use multiple selection with checkbox, selection is not persisting with paging. I found an example of persisting selection with paging, but paging doesn't support alphabetic paging. 

Thanks
Julfia


Bodevain Svensson
Top achievements
Rank 1
 answered on 30 Jun 2008
2 answers
144 views
I have this property of the RadScheduler:  OnClientAppointmentMoveEnd="AppointmentMoveEnd", below is the javascript for the function.  It fires after you move an appointment in the scheduler.

<telerik:RadScriptBlock ID="RadScriptBlock1" runat="server">
           <script type="text/javascript">
               
                function AppointmentMoveEnd(sender, eventArgs)
                {
                    var ajaxManager = $find("<%=RadAjaxManager1.ClientID%>");
                    var apt = eventArgs.get_appointment();
                    var newStartTime = eventArgs.get_newStartTime();
                    alert(newStartTime);

                     ajaxManager.ajaxRequest(newStartTime);

                }
           </script>
       </telerik:RadScriptBlock>

So looking at this line above (ajaxManager.ajaxRequest(newStartTime);) - this calls my C# server side code, in there I try to convert newStartTime to a .NET DateTime object, but the string looks like this:

"Sun Jun 29 2008 09:00:00 GMT-0500 (Central Daylight Time)"

- the above does not convert to a DateTime object (using Convert.ToDateTime()).  I could obviously manipulate this with javascript to work, but is there somethign built in that i can use?  RadControls are developed for .NET code, you think it would convert to a .NET convertable string object.  It would probably work if the 'Sun' part was not there.   Thank you
Joe
Top achievements
Rank 1
 answered on 30 Jun 2008
1 answer
85 views
After copying RadPanelBar  from session My RadPanelBar cannot open the childe items
 Session["radpenelbar"] = panelMenu;/// Copy RadPanelBar to Session
-------------------------------------------------------------------------
   RadPanelbar radppanel= new RadPanelbar();
               radppanel = (RadPanelbar)Session["radpenelbar"];
   form1.Controls.Add(radppanel);/// Copy from session
Atanas Korchev
Telerik team
 answered on 30 Jun 2008
6 answers
349 views
I was wondering if it is possible to change the background color of the timeslot of the radscheduler control at runtime?  I'm looking for the kind of functionality that the specialdays has with the radcalendar control, but I don't know what event I should hook up to or if it is even possible.

Thanks,
Marcello
Peter
Telerik team
 answered on 30 Jun 2008
1 answer
136 views
(RadControls Prometheus v2007.3 1425)

Hi,

I have a radTooltip, a radSchedule and a radCalendar on the page. It is configured with the following values:
RelativeTo="Mouse"
AutoTooltipify="true"
ToolTipZoneID assign with radSchedule.ClientID.

I have no association whatsoever between the radCalendar and the Tooltip control and , asd far as I can see, I have no duplicated elements IDs on the page at least not created by me.
 
Problem:
Each time I move the mouse over an appointment schedule nothing happens. Then I change the schedule view, lets say to week view, and when I move the mouse over the appointments and the tooltip is shown. Great! The problem is that if I move the mouse over a day in the calendar the tooltip is shown too, despite I have nothing configured to do so.

Can anyone help me?

Best regards,
Nuno

Svetlina Anati
Telerik team
 answered on 30 Jun 2008
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?