Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
74 views
Hello,

I'm testing the radgrid control if it will fulfill my expectations. My question is, is it possible to set the radgrid to MultiSelect but Single Drag & Drop. Because I want to select more then 1 row, but when I've selected for example 6 rows and I try to drag one of them, only that one should move, the other selected rows need to stay in their place. I hope this is possible with this control because achieving to program the drag and drop function took a lot of time. Thank you very much!

Kind regards,
Wesley
Tsvetina
Telerik team
 answered on 16 Apr 2012
1 answer
137 views
Hi,

I have a ComboBox  with no DataSource, in a GridEditForm, that I fill in the ItemRequested Event. I want to programatically select an item but, my combobox is empty until I click on it to fire the Event and then fill it. So is there a way to fill this combobox to select the right item? I am using this because I got alot of item in this combobox.

Here is my event sub:

Protected Sub cboGroupe_ItemsRequested(ByVal sender As Object, ByVal e As RadComboBoxItemsRequestedEventArgs)
    Dim cbo As RadComboBox = DirectCast(sender, RadComboBox)
 
    'get all customers whose name starts with e.Text
    Dim sqlGroupes As LWebStatement = ExecuteSql("Select gral_numero, gral_description " & _
                                            " from phfgrall where pram_sequence = " + GetStr(GSite_phfgrall) + " and (gral_numero like '" & Convert.ToString(e.Text) & _
                                            "%' or gral_description like '" & Convert.ToString(e.Text) & "%')" & _
                                            " order by gral_description")
    Dim itemOffset As Integer = e.NumberOfItems
    Dim endOffset As Integer = Math.Min(itemOffset + 10, sqlGroupes.Tables(0).Rows.Count)
    e.EndOfItems = endOffset = sqlGroupes.Tables(0).Rows.Count
 
    For i As Integer = itemOffset To endOffset - 1
        Dim item As RadComboBoxItem = New RadComboBoxItem(sqlGroupes.Tables(0).Rows(i)("gral_description").ToString, sqlGroupes.Tables(0).Rows(i)("gral_numero").ToString())
        item.Attributes("gral_description") = sqlGroupes.Tables(0).Rows(i)("gral_description").ToString
        item.Attributes("gral_numero") = sqlGroupes.Tables(0).Rows(i)("gral_numero").ToString
        cbo.Items.Add(item)
    Next
 
    e.Message = GetStatusMessage(endOffset, sqlGroupes.Tables(0).Rows.Count)
 
    cbo.DataBind()
End Sub

Thanks.
Cat Cheshire
Top achievements
Rank 1
 answered on 16 Apr 2012
2 answers
348 views
Hi,

I am having a radgrid, in which I have multiple records. I am unable to get How I can update records from there? Please help.
Andrew
Top achievements
Rank 1
 answered on 16 Apr 2012
1 answer
70 views
Hi all,
I want the filter option disabled while editing. How can I accomplish that?
Thanks in advance.
Shinu
Top achievements
Rank 2
 answered on 16 Apr 2012
4 answers
151 views
Hello  Telerik team.

I need help aboout we have a TextBox property issue.

We are using some textbox controls in the RadWindow control.

I set the SelectionOnFocus="SelectAll" and TextMode="MultiLine" properties on the textbox.

If close the window as soon as focus on textbox,  it raise telerik script error.

i'm attaching source code, and screen shot.
source code link is here: http://www.mediafire.com/?a2aebu7279wggus

PS. I have tested telerik version "2012.2.406.40" and "2012.1.320.40"
It still have problem both.

Vasil
Telerik team
 answered on 16 Apr 2012
2 answers
77 views
Hi

I want remove text from footer of telerik grid which shows total item in total pages.
For more details I have attached screen shot.

Thanks in advance
Satyajit Kadam.

Satyajit
Top achievements
Rank 1
 answered on 16 Apr 2012
4 answers
206 views
Library: ASP.NET AJAX Q1 2009
Control: RadEditor
Browser: IE7 or above

When a RadEditor control is presented and the user types an email address like "rpresser@aleyant.com", the RadEditor automatically changes it to a mailto: hyperlink.  If they type "www.aleyant.com" it is automatically changed to a hyperlink to http://www.aleyant.com. Et cetera.  The hyperlink can then be manually removed, but that's an extra step.

The automatic recognition does not happen if the browser is anything else: Chrome, Firefox, Safari, Opera...

How can the behavior be turned off for IE so that we get a uniform experience?
aSta
Top achievements
Rank 2
 answered on 16 Apr 2012
1 answer
93 views
Hi,

I updated to the latest Q1 SP1 release yesterday, moving from a release around Oct last year.  The drag and drop on my calendars doesn't work anymore.  Is there a breaking change that may have caused this?

Regards,

Jon
Jon
Top achievements
Rank 1
 answered on 16 Apr 2012
10 answers
188 views
Is it possible to display the progress indicators regardless of the size of the file being uploaded? I would still like a visual indicator for my users even if the file is uploaded in a few seconds. I've currently just dropped the indicators in as follows, but we don't currently allow uploads of over 10MB meaning I haven't seen these indicators yet :-)

<telerik:RadProgressManager ID="progressManager" runat="server" /> 
                <telerik:RadProgressArea ID="progressArea" runat="server"  
                    EnableEmbeddedSkins="false" Skin="FileExplorer"  
                    DisplayCancelButton="true" > 
                    <Localization Uploaded="Uploaded" /> 
                </telerik:RadProgressArea> 

And in the page load event I call this function:

private void SetProgressAreaProperties() 
    { 
        progressArea.ProgressIndicators = ProgressIndicators.CurrentFileName | 
            ProgressIndicators.RequestSize | 
            ProgressIndicators.TimeElapsed | 
            ProgressIndicators.TimeEstimated | 
            ProgressIndicators.TotalProgress | 
            ProgressIndicators.TotalProgressBar | 
            ProgressIndicators.TotalProgressPercent | 
            ProgressIndicators.TransferSpeed; 
    } 

EDIT: Oh and not sure if it matters but I am using a standard HTML upload control as opposed to your file upload control for this.

Thanks,

Michael
Genady Sergeev
Telerik team
 answered on 16 Apr 2012
2 answers
156 views
Trying to create a resource scheduler for an application and getting odd behavior from timeline view in conjunction with group by and group by direction = vertical.

here is the aspx code:
<telerik:RadScheduler ID="radScheduler" runat="server" Width="965px" OnResourcesPopulating="radScheduler_ResourcesPopulating" OnClientAppointmentsPopulated="OnClientAppointmentsPopulated"
        Height="500px" DayStartTime="07:00:00" OnClientAppointmentClick="onAppointmentClick" OnClientAppointmentsPopulating="OnClientAppointmentsPopulating"
        OnClientAppointmentDoubleClick="OnClientAppointmentDoubleClick" OnClientAppointmentDataBound="OnClientAppointmentDataBound"  OverflowBehavior="Scroll" GroupBy="Tech"
        GroupingDirection="Vertical" SelectedView="TimelineView" EnableExactTimeRendering="true"
        OnClientAppointmentEditing="OnClientAppointmentEditing" AllowDelete="false" AllowInsert="false" OnClientAppointmentCreated="OnClientAppointmentCreated" >       
        <AdvancedForm Enabled="false" Modal="true" />
        <TimelineView SlotDuration="0:30:00" NumberOfSlots="32" TimeLabelSpan="2" HeaderDateFormat="M/d/yyyy h:mm tt" StartTime="5:00" ColumnHeaderDateFormat="h:mmtt" ShowInsertArea="false"  />
        <MonthView AdaptiveRowHeight="true" VisibleAppointmentsPerDay="20"  />
        <WebServiceSettings Path="/services/ResourceScheduler.asmx" ResourcePopulationMode="ServerSide" />
    </telerik:RadScheduler>

Issues:
  • Strange spacing in rows with appointments after the first row with appointments. It looks like it is adding spacing for appointments that are not there for that resource
  • Overlapping appointments are being hidden. If you look at the ungrouped calendar in day view there is an appointment from 1 - 2 that is hidden below the 10:30 - 5 appointment.
Bozhidar
Telerik team
 answered on 16 Apr 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?