Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
154 views
I just found out that filter is case sensitive if i use Contains with at string. Is it possible to do something about this?

Thanks

John
Kabir
Top achievements
Rank 1
 answered on 16 Oct 2008
1 answer
62 views
Is this possible? Is there a way to have the editor produce ID attributes on all tags using maybe a random number?

<p id="1232"> <table id"2432"></table></p>

Problem I'm having is I need to allow the user to create a hyperlink that is just a bookmark to another part of the document, I need ID's on the tag so that later I can reference where the hyperlink was supposed to point too.
Fred
Top achievements
Rank 1
 answered on 16 Oct 2008
5 answers
194 views
Wondering how I can generate multi layerd sub menu items from data.  I have managed to get the first level sub menu to generate from the initial parent, but how can I generate children of the sub menu items?  I am using vb and this is the current code I have:

'Where To Stay

parentItem = radMenu.Items(1)

For Each row As DataRow In dt.Rows

childItem =

New RadMenuItem

childItem.Text = row(

"Name").ToString

childItem.NavigateUrl =

"~/AtlanticPortal/en/WhereToStay.aspx?Region=" & row("ID").ToString & "&Community=0&Category=0&ProvID=" & Session("ProvID").ToString & "&RegionName=" & row("Name").ToString

parentItem.Items.Add(childItem)

Next

I can get the sum benus to generate in relation to any of the 9 main menu items (parentItem = radMenu.Items(1)), but the sub menu items do not follow the same numbering...  I need the menu items to be generated from a data source as children of a child of menu item1 if that makes any sense.

Dave Navarro
Top achievements
Rank 2
 answered on 16 Oct 2008
1 answer
127 views
I have a user control (header) with a RadMenu in it, which also requires a RadScriptManager.  When I drop the header control on any page that has a RadAjaxManager on it, Ajax stops working.  If I remove the header control and drop a RadScriptManager on the page, Ajax works again.  Is there a setting that I can use to have them all work togather? 

Thanks,
Doug

 

 
Doug
Top achievements
Rank 1
 answered on 16 Oct 2008
3 answers
155 views
I found the post of where you set the node.checked to that of a parent when loading on demand. I have a treeview with the first level being a sport season (2008 Football), next level the leagues, next level, the teams and the final level, the players. When I 'check' the season and then manually expand the tree, the children get loaded and they are automatically 'checked'. I have a couple of problems from there:
1. What if I don't manually expand the tree. the children are not loaded and therefore my functionality of sending emails out will not work. how do i get the children loaded when i just 'check' the parent?
2. the other problem i noticed is if i do expand and then 'uncheck' say a league, the teams and the players underneath that are still 'checked'. how do i get the children to automatically 'uncheck' when i 'uncheck' a parent.

thanks so much.
susan
Simon
Telerik team
 answered on 16 Oct 2008
2 answers
195 views
I have a problem with saving data. I have a tabstrip that is set to AutoPostBack and a Multipage set to RenderSelectedPageOnly.
I have a datalist on the first tab, and a datalist on the second tab.
When I  "Save" the data, I iterate through the first datalist (each item in the list) which is always rendered because it is on the first tab, then I iterate through each item in the second datalist which is on the second tab.
The problem is that if the user has not clicked on the second tab, the second datalist is not fully rendered somehow, so no items are collected and saved.
There is a little more detail. Obviously, if the user clicks on the second tab for the very first time, all the data is saved. It is only when the user opens the page again to edit, and never clicks on the second tab.
What I need to know is:
What is the best way to tell if the datalist on the second tab has been fully rendered? Or do I have to keep up with what tabs are clicked? I had rather just skip the routine to save the data on the second datalist if I could only tell if it was not there or rendered fully.
Thanks,
~bg
GDPR_erased
Top achievements
Rank 1
 answered on 16 Oct 2008
4 answers
98 views
I created the following function for my grid that runs on the PreRender event

    Protected Sub RadGrid1_PreRender(ByVal sender As ObjectByVal e As EventArgs) 
        queueFilter = Request.QueryString("queue"
        For Each item As GridDataItem In RadGrid1.MasterTableView.Items 
            Dim TaskID As String = item("TaskID").Text 
            If TaskID = "&nbsp;" Then 
                Dim cell As TableCell = item.Item("ExpandColumn"
                Dim expandCollapseButton As Button = CType(cell.Controls(0), Button) 
                expandCollapseButton.Visible = False 
            ElseIf queueFilter = "My Requests" Then 
                item.Expanded = True 
            End If 
        Next 
    End Sub 

however, this causes a problem when I use the export to Excel feature as I believe it tried to run this code when doing the export.

Is there a way to make sure this code is NOT run during export? I'm looking for something like an IfIsExporting then don't run it, else run it feature. Thanks.
Philip Senechal
Top achievements
Rank 1
 answered on 16 Oct 2008
5 answers
302 views
I have a hierarchial grid that will have 3 levels to it.  I want to keep this example as simple as possible so let's say the grid has 2 visible columns on the first 2 levels - a number column and button column.  The 3rd level has only a number column.  If the button is pushed on the 1st or 2nd level, the number column should be set to zero and all related child rows in the hierarchy below should be set to zero.  All rows updated should have the background set to a color, red for the sake of argument.

How can this be accomplished with VB.Net code?

Here's some starter code.  More columns will be visible than the 2, but just ignore them.

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Grid.aspx.vb" Inherits="Grid" %> 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> 
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
 
<html xmlns="http://www.w3.org/1999/xhtml" > 
<head runat="server">  
    <title>Untitled Page</title> 
    <style type="text/css">  
 
        .ZeroedOut  
        {  
            background-color:pink;  
        }  
 
    </style> 
 
</head> 
<body> 
    <form id="form1" runat="server">  
    <div> 
        <telerik:RadScriptManager ID="RadScriptManager1" runat="server">  
        </telerik:RadScriptManager> 
        <telerik:RadGrid ID="grdOR" runat="server" AutoGenerateColumns="False" GridLines="None" Width="100%" Skin="WebBlue"  > 
            <MasterTableView DataKeyNames="STYL_SEQ_NUM,RVD_QTY" AllowAutomaticUpdates="True" NoDetailRecordsText="No SKU records to display." NoMasterRecordsText="No Style records to display." EditMode="InPlace">  
                <DetailTables> 
                    <telerik:GridTableView runat="server" DataKeyNames="MSC_MDSE_NUM" NoDetailRecordsText="No Store records to display." > 
                        <RowIndicatorColumn> 
                            <HeaderStyle Width="20px" /> 
                        </RowIndicatorColumn> 
                        <ExpandCollapseColumn Visible="True">  
                            <HeaderStyle Width="20px" /> 
                        </ExpandCollapseColumn> 
                        <Columns> 
                            <telerik:GridBoundColumn DataField="CLR_CDE" HeaderText="Color Code" UniqueName="CLR_CDE" > 
                            </telerik:GridBoundColumn> 
                            <telerik:GridBoundColumn DataField="CLR_DCD" HeaderText="Color Desc" UniqueName="CLR_DCD" > 
                            </telerik:GridBoundColumn> 
                            <telerik:GridBoundColumn DataField="STYL_SEQ_NUM" HeaderText="SSN" UniqueName="STYL_SEQ_NUM" > 
                            </telerik:GridBoundColumn> 
                            <telerik:GridBoundColumn DataField="MSC_MDSE_NUM" HeaderText="MSC" UniqueName="MSC_MDSE_NUM" > 
                            </telerik:GridBoundColumn> 
                            <telerik:GridBoundColumn DataField="RVD_QTY" HeaderText="RVD_QTY" UniqueName="RVD_QTY" ItemStyle-Width="50px" HeaderStyle-Width="50px">  
                            </telerik:GridBoundColumn> 
                            <telerik:GridButtonColumn ButtonType="PushButton" Text="Zero" UniqueName="ZERO" CommandName="ZEROSKU" ItemStyle-Width="50px" HeaderStyle-Width="50px">  
                            </telerik:GridButtonColumn> 
                        </Columns> 
                        <DetailTables> 
                            <telerik:GridTableView runat="server" DataKeyNames="STOR_CDE,MSC_MDSE_NUM,RVD_QTY" EditMode="InPlace" AllowAutomaticUpdates="True" Width="100%" > 
                                <RowIndicatorColumn> 
                                    <HeaderStyle Width="20px" /> 
                                </RowIndicatorColumn> 
                                <ExpandCollapseColumn> 
                                    <HeaderStyle Width="20px" /> 
                                </ExpandCollapseColumn> 
                                <Columns> 
                                    <telerik:GridEditCommandColumn /> 
                                    <telerik:GridTemplateColumn DataField="STOR_CDE" HeaderText="Store" UniqueName="STOR_CDE" > 
                                        <ItemTemplate> 
                                            <%#Eval("STOR_CDE")%> 
                                        </ItemTemplate> 
                                        <EditItemTemplate> 
                                            <asp:TextBox ID="txtStore" runat="server" Text='<%# Bind("STOR_CDE") %>' ReadOnly='<%# IIf(DataBinder.Eval(Container, "OwnerTableView.IsItemInserted"), "False", "True") %>'/>  
                                        </EditItemTemplate> 
                                    </telerik:GridTemplateColumn> 
                                    <telerik:GridTemplateColumn DataField="ORDR_QTY" HeaderText="Quantity" UniqueName="ORDR_QTY">  
                                        <ItemTemplate> 
                                            <%#Eval("ORDR_QTY")%> 
                                        </ItemTemplate> 
                                        <EditItemTemplate> 
                                            <asp:TextBox ID="txtOrderQty" runat="server" Text='<%# Bind("ORDR_QTY") %>' ReadOnly='<%# IIf(DataBinder.Eval(Container, "OwnerTableView.IsItemInserted"), "False", "True") %>' /> 
                                        </EditItemTemplate> 
                                    </telerik:GridTemplateColumn> 
                                    <telerik:GridTemplateColumn DataField="MSC_MDSE_NUM" HeaderText="MSC" UniqueName="MSC_MDSE_NUM">  
                                        <ItemTemplate> 
                                            <%#Eval("MSC_MDSE_NUM")%> 
                                        </ItemTemplate> 
                                        <EditItemTemplate> 
                                            <%# Eval("MSC_MDSE_NUM") %> 
                                        </EditItemTemplate> 
                                    </telerik:GridTemplateColumn> 
                                    <telerik:GridTemplateColumn DataField="RVD_QTY" HeaderText="RVD_QTY" UniqueName="RVD_QTY" ItemStyle-Width="110px" HeaderStyle-Width="110px">  
                                        <ItemTemplate> 
                                            <%#Eval("RVD_QTY")%> 
                                        </ItemTemplate> 
                                        <EditItemTemplate> 
                                            <asp:TextBox ID="txtRevisedQuantity" runat="server" Text='<%# Bind("RVD_QTY") %>' /> 
                                        </EditItemTemplate> 
                                    </telerik:GridTemplateColumn> 
                                </Columns> 
                                <EditFormSettings> 
                                    <EditColumn UniqueName="EditCommandColumn1">  
                                    </EditColumn> 
                                </EditFormSettings> 
                            </telerik:GridTableView> 
                        </DetailTables>                         
                    </telerik:GridTableView> 
                </DetailTables> 
                <RowIndicatorColumn> 
                    <HeaderStyle Width="20px" /> 
                </RowIndicatorColumn> 
                <ExpandCollapseColumn Visible="True">  
                    <HeaderStyle Width="20px" /> 
                </ExpandCollapseColumn> 
                <Columns> 
                    <telerik:GridBoundColumn DataField="ITEM_DES" HeaderText="Desc" UniqueName="ITEM_DES">  
                    </telerik:GridBoundColumn> 
                    <telerik:GridBoundColumn DataField="VEN_STYL_NUM" HeaderText="Style" UniqueName="VEN_STYL_NUM">  
                    </telerik:GridBoundColumn> 
                    <telerik:GridBoundColumn DataField="STYL_SEQ_NUM" HeaderText="SSN" UniqueName="STYL_SEQ_NUM">  
                    </telerik:GridBoundColumn> 
                    <telerik:GridTemplateColumn DataField="RVD_QTY" HeaderText="RVD_QTY" UniqueName="RVD_QTY" ItemStyle-Width="50px" HeaderStyle-Width="50px">  
                        <ItemTemplate> 
                            <%#Eval("RVD_QTY")%> 
                        </ItemTemplate> 
                        <EditItemTemplate> 
                            <asp:TextBox ID="txtRevisedStyle" runat="server" Text='<%# Bind("RVD_QTY") %>' /> 
                        </EditItemTemplate> 
                    </telerik:GridTemplateColumn> 
                    <telerik:GridButtonColumn ButtonType="PushButton" Text="Zero" UniqueName="ZERO" CommandName="ZEROSTYLE" ItemStyle-Width="50px" HeaderStyle-Width="50px">  
                    </telerik:GridButtonColumn> 
                </Columns> 
                <EditFormSettings > 
                    <PopUpSettings Modal="True" /> 
                </EditFormSettings> 
            </MasterTableView> 
            <ClientSettings> 
                <Scrolling AllowScroll="True" UseStaticHeaders="True" /> 
            </ClientSettings> 
        </telerik:RadGrid> 
      
    </div> 
    </form> 
</body> 
</html> 
 

Imports System.Data  
Imports Telerik.Web.UI  
 
Partial Class Grid  
 
    Inherits System.Web.UI.Page  
 
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load  
 
    End Sub  
 
    Protected Sub grdOR_DetailTableDataBind(ByVal source As Object, ByVal e As Telerik.Web.UI.GridDetailTableDataBindEventArgs) Handles grdOR.DetailTableDataBind  
 
        Dim parentItem As GridDataItem = CType(e.DetailTableView.ParentItem, GridDataItem)  
 
        If parentItem.Edit Then  
            Return  
        End If  
 
        Dim DataKeys() As String = parentItem.KeyValues.Split(",")  
 
        If e.DetailTableView.HierarchyIndex = "0" Then  
 
            If ViewState(e.DetailTableView.ClientID) Is Nothing Then  
 
                Dim Keys() As String = DataKeys(0).Split(":")  
                e.DetailTableView.DataSource = PopulateSKULevel(Keys(1).Replace("""", "").Replace("}", ""))  
                ee.DetailTableView.Name = e.DetailTableView.ClientID  
                ViewState(e.DetailTableView.ClientID) = e.DetailTableView.DataSource  
 
            Else  
 
                e.DetailTableView.DataSource = ViewState(e.DetailTableView.ClientID)  
 
            End If  
 
        ElseIf e.DetailTableView.HierarchyIndex.Substring(0, 2) = "0_" Then  
 
            If ViewState(e.DetailTableView.ClientID) Is Nothing Then  
 
                Dim Keys() As String = DataKeys(0).Split(":")  
                e.DetailTableView.DataSource = PopulateStoreLevel(Keys(1).Replace("""", "").Replace("}", ""))  
                ee.DetailTableView.Name = e.DetailTableView.ClientID  
                ViewState(e.DetailTableView.ClientID) = e.DetailTableView.DataSource  
 
            Else  
 
                e.DetailTableView.DataSource = ViewState(e.DetailTableView.ClientID)  
 
                If ViewState("grdOR_Event") = "STOREUPDATED" Then  
 
                    Dim parentSKU As GridDataItem = CType(e.DetailTableView.ParentItem, GridDataItem)  
                    Dim parentStyle As GridDataItem = CType(parentSKU.OwnerTableView.ParentItem, GridDataItem)  
 
                    parentSKU.OwnerTableView.DataSource = ViewState(ViewState("grdOR_DataSource_SKU").ToString)  
                    parentStyle.OwnerTableView.DataSource = ViewState(ViewState("grdOR_DataSource_Style").ToString)  
 
                    ViewState("grdOR_Event") = ""  
                    ViewState("grdOR_DataSource_SKU") = ""  
                    ViewState("grdOR_DataSource_Style") = ""  
 
                End If  
 
            End If  
 
        End If  
 
    End Sub  
 
    Protected Sub grdOR_ItemCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles grdOR.ItemCommand  
 
        Select Case e.CommandName  
 
            Case "ZEROSTYLE"  
 
                Dim StyleItem As GridDataItem = CType(e.Item, GridDataItem)  
                Dim dtStyle As DataTable = ViewState(grdOR.ClientID)  
                Dim SSN As String = StyleItem.OwnerTableView.DataKeyValues(StyleItem.ItemIndex)("STYL_SEQ_NUM").ToString  
                Dim Revised As String = StyleItem.OwnerTableView.DataKeyValues(StyleItem.ItemIndex)("RVD_QTY").ToString  
                  
                ZeroParentRow(StyleItem, dtStyle, SSN, e.Canceled)  
 
                StyleItem.CssClass = "ZeroedOut" 
 
                If StyleItem.Expanded Then  
 
                    For Each SKUItem As GridDataItem In StyleItem.ChildItem.NestedTableViews(0).Items  
 
                        Dim dtSKU As DataTable = ViewState(SKUItem.OwnerTableView.Name)  
 
                        ZeroParentRow(SKUItem, dtSKU, SSN, e.Canceled)  
 
                    Next  
 
                    StyleItem.Expanded = True 
 
                End If  
 
            Case "ZEROSKU"  
 
        End Select  
 
    End Sub  
 
    Public Sub ZeroParentRow(ByRef RowItem As GridDataItem, ByRef dt As DataTable, ByVal SSN As String, ByRef Canceled As Boolean)  
 
        Dim changedRows() As DataRow = dt.Select("STYL_SEQ_NUM = " & SSN)  
 
        If (changedRows.Length <> 1) Then  
            'MeMe.Label1.Text = Me.Label1.Text + "Unable to locate the Order for updating."  
            Canceled = True 
            Return  
        End If  
 
        changedRows(0).BeginEdit()  
 
        Try  
 
            changedRows(0)("RVD_QTY") = 0  
            changedRows(0).EndEdit()  
            changedRows(0).AcceptChanges()  
 
            grdOR.DataSource = dt 
            'grdOR.Rebind()  
            ViewState(RowItem.OwnerTableView.ClientID) = dt  
 
            'RowItem.Expanded = True 
 
        Catch ex As Exception  
 
            changedRows(0).CancelEdit()  
            'Label1Label1.Text = Label1.Text & "Unable to update Orders. Reason: " & ex.Message  
            Canceled = True 
 
        End Try  
 
    End Sub  
 
    Protected Sub grdOR_NeedDataSource(ByVal source As Object, ByVal e As Telerik.Web.UI.GridNeedDataSourceEventArgs) Handles grdOR.NeedDataSource  
 
        grdOR.DataSource = PopulateStyleLevel()  
        ViewState(grdOR.ClientID) = grdOR.DataSource  
 
    End Sub  
 
    Private Function CalculateStoreTotal(ByVal dt As DataTable) As Integer  
 
        Dim newValues As New Hashtable  
        Dim Total As Integer = 0 
 
        For Each r As DataRow In dt.Rows  
 
            Total += Convert.ToInt32(r("RVD_QTY"))  
 
        Next  
 
        Return Total  
 
    End Function      
 
    Private Function PopulateStyleLevel() As DataTable  
 
        Dim dt As New DataTable  
        Dim c1 As New DataColumn  
        Dim c2 As New DataColumn  
        Dim c3 As New DataColumn  
        Dim c4 As New DataColumn  
 
        c1.ColumnName = "ITEM_DES" 
        c2.ColumnName = "VEN_STYL_NUM" 
        c3.ColumnName = "STYL_SEQ_NUM" 
        c4.ColumnName = "RVD_QTY" 
 
        dt.Columns.Add(c1)  
        dt.Columns.Add(c2)  
        dt.Columns.Add(c3)  
        dt.Columns.Add(c4)  
 
        Dim r As DataRow = dt.NewRow  
        r("ITEM_DES") = "Test Item 1"  
        r("VEN_STYL_NUM") = "TEST100"  
        r("STYL_SEQ_NUM") = "0123456789999"  
        r("RVD_QTY") = "20"  
        dt.Rows.Add(r)  
 
        r = dt.NewRow  
        r("ITEM_DES") = "Test Item 2"  
        r("VEN_STYL_NUM") = "TEST200"  
        r("STYL_SEQ_NUM") = "0123456788888"  
        r("RVD_QTY") = "10"  
        dt.Rows.Add(r)  
 
        'grdOR.DataSource = dt 
        'grdOR.DataSource = New DataView(dt)  
        'grdOR.DataBind()  
 
        Return dt  
 
    End Function  
 
    Private Function PopulateSKULevel(ByVal SSN As String) As DataTable  
 
        Dim dt As New DataTable  
        Dim c1 As New DataColumn  
        Dim c2 As New DataColumn  
        Dim c3 As New DataColumn  
        Dim c4 As New DataColumn  
        Dim c5 As New DataColumn  
 
        c1.ColumnName = "CLR_CDE" 
        c2.ColumnName = "CLR_DCD" 
        c3.ColumnName = "STYL_SEQ_NUM" 
        c4.ColumnName = "MSC_MDSE_NUM" 
        c5.ColumnName = "RVD_QTY" 
 
        dt.Columns.Add(c1)  
        dt.Columns.Add(c2)  
        dt.Columns.Add(c3)  
        dt.Columns.Add(c4)  
        dt.Columns.Add(c5)  
 
        Dim r As DataRow = dt.NewRow  
        r("CLR_CDE") = "100"  
        r("CLR_DCD") = "BLUE"  
        r("STYL_SEQ_NUM") = "0123456789999"  
        r("MSC_MDSE_NUM") = "0123456789999"  
        r("RVD_QTY") = "20"  
        dt.Rows.Add(r)  
 
        r = dt.NewRow  
        r("CLR_CDE") = "200"  
        r("CLR_DCD") = "RED"  
        r("STYL_SEQ_NUM") = "0123456788888"  
        r("MSC_MDSE_NUM") = "0123456788888"  
        r("RVD_QTY") = "10"  
        dt.Rows.Add(r)  
 
        r = dt.NewRow  
        r("CLR_CDE") = "300"  
        r("CLR_DCD") = "YELLOW"  
        r("STYL_SEQ_NUM") = "0123456788888"  
        r("MSC_MDSE_NUM") = "0123456787777"  
        r("RVD_QTY") = "40"  
        dt.Rows.Add(r)  
 
        Dim rows() As DataRow = dt.Select("STYL_SEQ_NUM = '" & SSN & "'")  
        Dim dtRet As DataTable = dt.Clone  
 
        For Each row As DataRow In rows  
 
            r = dtRet.NewRow  
            r(0) = row(0)  
            r(1) = row(1)  
            r(2) = row(2)  
            r(3) = row(3)  
            r(4) = row(4)  
            dtRet.Rows.Add(r)  
 
        Next  
 
        'dtRet.TableName = "SKU" 
 
        Return dtRet  
 
    End Function  
 
    Private Function PopulateStoreLevel(ByVal MSC As String) As DataTable  
 
        Dim dt As New DataTable  
        Dim c1 As New DataColumn  
        Dim c2 As New DataColumn  
        Dim c3 As New DataColumn  
        Dim c4 As New DataColumn  
 
        c1.ColumnName = "STOR_CDE" 
        c2.ColumnName = "ORDR_QTY" 
        c3.ColumnName = "MSC_MDSE_NUM" 
        c4.ColumnName = "RVD_QTY" 
 
        dt.Columns.Add(c1)  
        dt.Columns.Add(c2)  
        dt.Columns.Add(c3)  
        dt.Columns.Add(c4)  
 
        Dim r As DataRow = dt.NewRow  
        r("STOR_CDE") = "21"  
        r("ORDR_QTY") = "5"  
        r("MSC_MDSE_NUM") = "0123456789999"  
        r("RVD_QTY") = "20"  
        dt.Rows.Add(r)  
 
        r = dt.NewRow  
        r("STOR_CDE") = "54"  
        r("ORDR_QTY") = "7"  
        r("MSC_MDSE_NUM") = "0123456788888"  
        r("RVD_QTY") = "10"  
        dt.Rows.Add(r)  
 
        r = dt.NewRow  
        r("STOR_CDE") = "67"  
        r("ORDR_QTY") = "5"  
        r("MSC_MDSE_NUM") = "0123456787777"  
        r("RVD_QTY") = "40"  
        dt.Rows.Add(r)  
 
        Dim rows() As DataRow = dt.Select("MSC_MDSE_NUM = '" & MSC & "'")  
        Dim dtRet As DataTable = dt.Clone  
 
        For Each row As DataRow In rows  
 
            r = dtRet.NewRow  
            r(0) = row(0)  
            r(1) = row(1)  
            r(2) = row(2)  
            r(3) = row(3)  
            dtRet.Rows.Add(r)  
 
        Next  
 
        Return dtRet  
 
    End Function  
 
End Class  
 
Daniel
Telerik team
 answered on 16 Oct 2008
1 answer
127 views
Trying to use the drop down control on a modal window, but when you drop down it goes behind the modal.  Making it un-usable.

Any way to fix this?

I would upload a screen shot, but don't see how its doable.
Veselin Vasilev
Telerik team
 answered on 16 Oct 2008
7 answers
196 views
Hi

I have checked the forum but didn't find any Solution
I have 2 ComboBox in which MarkFirstMatch is true  and Allowcustom Text is fasle.
 
When i select an item from 1st Combox it doesn't fire SelectedIndex

So please let me know if there is a fix for this .Did download new Version

Thanks
Kavya
Rosi
Telerik team
 answered on 16 Oct 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?