Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
82 views
I've been beating my head against the keyboard for two days now, trying to get the chart onclick event to fire.  I've gone through all the help and examples -- nothing works.  I have version 2012.1.411.35 - why doesn't it work????
Rosko
Telerik team
 answered on 06 Jun 2012
1 answer
94 views
Hello,

I need every 30 seconds an info which Appointment the current time is displayed in the Scheduler. I need this for a status display in a TreeView. The TreeView shows to the Appointment with an associated icon.

How can I check every 30 seconds the current Appointment and analyze the information?
Thank you
Reiner
Plamen
Telerik team
 answered on 06 Jun 2012
0 answers
74 views
Hi Telerik's Masters
How to bind RadListView1 ( it DataSourceId="SqlDataSource1") using RadListView2 (it DataSourceId="SqlDataSource2" 
) Item Template ?   to filter RadListView1 (using that modele http://demos.telerik.com/aspnet-ajax/listview/examples/filtering/defaultcs.aspx 
)
Thank you

Berrabah
Top achievements
Rank 1
 asked on 06 Jun 2012
1 answer
80 views
Is there anything about the trial versions of ASP.Net AJAX that would prevent me from being able to use them under IIS 7?  
Rumen
Telerik team
 answered on 06 Jun 2012
0 answers
93 views

Hi,

I got an experience with ajaxpanel on google chrome that loads forever, a certain page I encounter this problem but not all.  Other webbrowsers  are working fine.

Kind Regards,

Duy
Duy
Top achievements
Rank 1
 asked on 06 Jun 2012
8 answers
155 views
Hello!  If it's possible to disable user input in radcombobox with enabled load on demand set to true?  

I have a problem with user input in radcombobox, user could type everything in radcombobox and after submit when I'm trying to convert SelectedValue to integer there is an exception.  If it possible to select items or type only non-custom text?
Grigory
Top achievements
Rank 1
 answered on 06 Jun 2012
1 answer
72 views
Hi,

Do you plan on supporting iPad tablet and/or other tablets? Currently drag and drop functionality doesn't work.

Kind Regards,

Ivan.
Plamen
Telerik team
 answered on 06 Jun 2012
1 answer
129 views
I have a problem in displaying the RadMenuItem in the RadRibbonBar.
Only the Items that are within the boundary of RadRibbonBar is shown & remaining items is hidden behind the RadRibbonBar.
I have added the RadMenu using the RibbonBarTemplateItem.
However If I add RadComboBox using the TemplateItem It looks fine & complete.

I have attached the snapshot of sample.Here I have used the RadMenu & added items are 1 to 10 .. while only 1-4 is being shown reminaing is hidden behind the boundary of radribbonbar.
Please someone help to solve the problem
Thank you :)
Princy
Top achievements
Rank 2
 answered on 06 Jun 2012
0 answers
76 views
how could i generate radcombobox object in asp.net vs 2010

Advanced Thanks
Tamim
Tamim
Top achievements
Rank 1
 asked on 06 Jun 2012
1 answer
246 views
I'm using ASP.NET AJAX Q1 2012 SP1.  I have a RadGrid with a GridDropDownColumn.  The RadGrid is populated on server side from the RadGrid's NeedDataSource event.  Everything is working except the expected DataField value is blank when the grid is in a non edit mode.  To test I even added a GridBoundColumn with the same DataField name to show that it does have a value.

<telerik:RadGrid ID="rgDepartment" runat="server" Skin="Office2007"
    AutoGenerateColumns="False" AutoGenerateDeleteColumn="True" CellSpacing="0"
    GridLines="None" AllowMultiRowEdit="true">
    <MasterTableView DataKeyNames="OrgDepartmentId" AutoGenerateColumns="false" EditMode="InPlace"
        CommandItemDisplay="Top">
        <Columns>
            <telerik:GridBoundColumn DataField="Name"
                HeaderText="Dept"
                UniqueName="Name">
            </telerik:GridBoundColumn>
            <telerik:GridDropDownColumn ListTextField="Name" ListValueField="DepartmentId" DataField="Name"
                HeaderText="Department" DropDownControlType="DropDownList"
                UniqueName="OrgDept">
            </telerik:GridDropDownColumn>
            <telerik:GridBoundColumn DataField="DepartmentId"
                HeaderText="Speech Rec Object Id"
                MaxLength="255" UniqueName="DepartmentId">
            </telerik:GridBoundColumn>
            <telerik:GridEditCommandColumn UniqueName="EditCommandColumn" />
        </Columns>
    </MasterTableView>
</telerik:RadGrid>

Server side programming.
Protected Sub rgDepartment_ItemDataBound(sender As Object, e As Telerik.Web.UI.GridItemEventArgs) Handles rgDepartment.ItemDataBound
    If (TypeOf e.Item Is GridEditableItem AndAlso CType(e.Item, GridEditableItem).IsInEditMode) Then
        Dim editedItem As GridEditableItem = CType(e.Item, GridEditableItem)
        ' Hides the Update button for each edit form
        editedItem("EditCommandColumn").Controls(0).Visible = False
        ' Apply the text box style
        CType(editedItem("DepartmentId").Controls(0), TextBox).CssClass = "TextBoxStyle"
        ' Populate drop down
        Dim editMan As GridEditManager = editedItem.EditManager
        Dim editor As GridDropDownColumnEditor = CType(editMan.GetColumnEditor("OrgDept"), GridDropDownColumnEditor)
        editor.DataSource = GetOrganizationDepartmentData()
        editor.DataBind()
        If e.Item.OwnerTableView.IsItemInserted = False AndAlso e.Item.DataItem("OrgDepartmentId") IsNot Nothing AndAlso e.Item.DataItem("OrgDepartmentId") > 0 Then
            editor.SelectedValue = e.Item.DataItem("OrgDepartmentId").ToString()
        End If
    End If
End Sub
 
Protected Sub rgDepartment_NeedDataSource(sender As Object, e As Telerik.Web.UI.GridNeedDataSourceEventArgs) Handles rgDepartment.NeedDataSource
    rgDepartment.DataSource = GetDeptData() ' Get Dataset
End Sub


Here is a screenshot of the web page.
ScreenShot

The only way I can think of getting this to work is to set the cells text to the data value within the ItemDataBound event.  Something like this.
If (TypeOf e.Item Is GridDataItem AndAlso e.Item.IsInEditMode = False) Then
    Dim dataItem As GridDataItem = CType(e.Item, GridDataItem)
    dataItem("OrgDept").Text = e.Item.DataItem("Name")
End If

Is this a known bug or am I doing something wrong?

Thanks,

Warren
Shinu
Top achievements
Rank 2
 answered on 06 Jun 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
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?