Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
109 views
Hi,

Can we change the position where the nodes are displayed?
For example

Column 1           Column 2              Column 3
========          ========             ========

- Root
                          + Node 1
                          + Node 2
                           - Node 3
                                                         Child Node 1
                                                         Child Node 2


I would require the Node 1, Node 2, Node 3 to be displayed in the second column (and not just below the "Root")

Could somebody help me in this?
GSK
Top achievements
Rank 2
 answered on 24 May 2010
1 answer
155 views
Hello,
I implemented the solution of this http://blogs.telerik.com/atanaskorchev/posts/09-03-06/Meet_Telerik_Web_Design_dll.aspx but no benefit.
Princy
Top achievements
Rank 2
 answered on 24 May 2010
2 answers
168 views
I am seeing a weird occurrence with control rendering and such when going from IE 8 standards mode to IE7 Compatibility mode. It also seems to be affected by the resizing of the browser when in compatibility. Attached are two screen two screen shots. As you can see the compatibility mode just does not layout right with the standard skin. Its not horrible, but on the button especially it looks odd. Here is the code I have. Not sure what I can do to fix this. I do have my own style sheet being used also, but ont he button and combos there are none of my css styles being applied. Thanks.

 

<table class="ContentTableBordered" cellspacing="0" cellpadding="3" width="99%" align="center">  
        <tr> 
            <td class="ContentTableCellTitleDark" height="20" colspan="9">  
                <table width="100%" cellpadding="0" cellspacing="0" style="margin:0px 0px 0px 0px;" border="0">  
                   <tr> 
                        <td> 
                            <asp:Literal ID="lblFilterLabel" runat="server" Text="Filtering Options"></asp:Literal> 
                        </td> 
                        <td align="right">  
                            <asp:Button ID="btnFilter" runat="server" Text="Set Filter" onclick="btnFilter_Click" Width="100px" /> 
                        </td>     
                   </tr>   
                </table> 
            </td> 
        </tr> 
        <tr> 
            <td class="tableSectionLabelCell">  
                <asp:Label ID="lblRegionLabel" runat="server" Text="Region:"></asp:Label> 
            </td> 
            <td class="tableSectionDataCell">  
                <telerik:RadComboBox ID="rcbRegion" runat="server" 
                    DataValueField="Id" 
                    DataTextField="Description" 
                    DropDownWidth="250px" 
                    Height="180px" 
                    NoWrap="true"></telerik:RadComboBox>              
            </td> 
            <td class="tableSectionLabelCell">  
                <asp:Label ID="lblMaterialGroupLabel" runat="server" Text="Material Group:"></asp:Label> 
            </td> 
            <td class="tableSectionDataCell">  
                <telerik:RadComboBox ID="rcbMaterialGroup" runat="server" 
                    DataValueField="MaterialGroupNo" 
                    DataTextField="Description" 
                    DropDownWidth="250px" 
                    Height="200px" 
                    NoWrap="true"   
                    onselectedindexchanged="rcbMaterialGroup_SelectedIndexChanged"   
                    AutoPostBack="True"></telerik:RadComboBox>              
            </td> 
            <td class="tableSectionLabelCell">  
                <asp:Label ID="lblTradingPartner" runat="server" Text="Trading Partner:"></asp:Label> 
            </td> 
            <td class="tableSectionDataCell">  
                <telerik:RadComboBox ID="rcbTradingPartner" runat="server" 
                    DataValueField="TradingPartnerNo" 
                    DataTextField="Name" 
                    DropDownWidth="250px" 
                    Height="200px" 
                    NoWrap="true"   
                    onselectedindexchanged="rcbTradingPartner_SelectedIndexChanged" 
                    AutoPostBack="True"></telerik:RadComboBox>              
            </td> 
            <td class="tableSectionLabelCell">  
                <asp:Label ID="lblCustomerProfileType" runat="server" Text="Customer Profile Type:"></asp:Label> 
            </td> 
            <td class="tableSectionDataCell">  
                <telerik:RadComboBox ID="rcbCustomerProfileType" runat="server" 
                    DropDownWidth="200px" 
                    Height="70px" 
                    NoWrap="true">  
                <Items> 
                    <telerik:RadComboBoxItem Text="All" Value="" /> 
                    <telerik:RadComboBoxItem Text="Ship To" Value="ShipTo" /> 
                    <telerik:RadComboBoxItem Text="Prospect" Value="Prospect" /> 
                </Items>      
                </telerik:RadComboBox>              
            </td> 
        </tr> 
        <tr> 
            <td class="tableSectionLabelCell">  
                <asp:Label ID="lblAccountRepLabel" runat="server" Text="Account Manager:"></asp:Label> 
            </td> 
            <td class="tableSectionDataCell">  
                <telerik:RadComboBox ID="rcbAccountManager" runat="server" 
                    DataValueField="UserName" 
                    DataTextField="DisplayName" 
                    DropDownWidth="200px" 
                    Height="200px" 
                    NoWrap="true"></telerik:RadComboBox>              
            </td> 
            <td class="tableSectionLabelCell">  
                <asp:Label ID="lblMaterialLabel" runat="server" Text="Material:"></asp:Label> 
            </td> 
            <td class="tableSectionDataCell">  
                <telerik:RadComboBox ID="rcbMaterial" runat="server" 
                    DataValueField="MaterialNo" 
                    DataTextField="Description" 
                    DropDownWidth="250px" 
                    Height="200px" 
                    NoWrap="true"></telerik:RadComboBox>              
            </td> 
            <td class="tableSectionLabelCell">  
                <asp:Label ID="lblCustomerProfileLabel" runat="server" Text="Customer Profile/Ship To:"></asp:Label> 
            </td> 
            <td class="tableSectionDataCell">  
                <telerik:RadComboBox ID="rcbCustomerProfile" runat="server" 
                    DataValueField="Id" 
                    DataTextField="Description" 
                    DropDownWidth="400px" 
                    Height="200px" 
                    NoWrap="true"></telerik:RadComboBox> 
            </td> 
            <td class="tableSectionLabelCell">  
                <asp:Label ID="lblStatus" runat="server" Text="Status:"></asp:Label> 
            </td> 
            <td class="tableSectionDataCell">  
                <telerik:RadComboBox ID="rcbStatus" runat="server" 
                    DropDownWidth="200px" 
                    Height="60px" 
                    NoWrap="true">  
                <Items> 
                    <telerik:RadComboBoxItem Text="All" Value="" /> 
                    <telerik:RadComboBoxItem Text="Active" Value="Active" /> 
                    <telerik:RadComboBoxItem Text="Inactive" Value="Inactive" /> 
                </Items>      
                </telerik:RadComboBox>              
            </td>    
        </tr> 
        <asp:PlaceHolder ID="phSummaryViewItems" runat="server" Visible="false">  
        <tr> 
            <td class="tableSectionLabelCell">  
                <asp:Label ID="lblForecastSummaryView_TotalByLabel" runat="server" Text="Total By:"></asp:Label> 
            </td> 
            <td class="tableSectionDataCell" colspan="3">  
                <telerik:RadComboBox ID="rcbTotalBy" runat="server" 
                    DropDownWidth="250px" 
                    Height="200px" 
                    NoWrap="true">  
                    <Items> 
                        <telerik:RadComboBoxItem Text="Region" Value="REGIONID" /> 
                        <telerik:RadComboBoxItem Text="Material Group" Value="MATERIALGROUPNO" /> 
                        <telerik:RadComboBoxItem Text="Default Ship Mode" Value="DEFAULTSHIPMODE" /> 
                        <telerik:RadComboBoxItem Text="Default Plant" Value="DEFAULTPLANTNO" /> 
                        <telerik:RadComboBoxItem Text="Default Material" Value="DEFAULTMATERIALNO" /> 
                        <telerik:RadComboBoxItem Text="Account Manager" Value="ACCOUNTMANAGERUSERNAME" /> 
                    </Items> 
                </telerik:RadComboBox>              
            </td> 
            <td class="tableSectionLabelCell">  
                <asp:Label ID="lblForecastSummaryView_PeriodLabel" runat="server" Text="Period:"></asp:Label> 
            </td> 
            <td class="tableSectionDataCell" colspan="3">  
                <telerik:RadComboBox ID="rcbPeriod" runat="server" 
                    DataValueField="Id" 
                    DataTextField="Description" 
                    DropDownWidth="250px" 
                    Height="200px" 
                    NoWrap="true"></telerik:RadComboBox>              
            </td> 
        </tr> 
        </asp:PlaceHolder> 
    </table> 
James Daresta
Top achievements
Rank 1
 answered on 24 May 2010
3 answers
145 views
Hi

i am using RadHTML field in sharepoint .

<radE:RadHtmlField FieldName="AddContent" runat="server" AllowSpecialTags="True" DisplayWidth="600px" PopupEditorMode="True"></radE:RadHtmlField>

But by default its showing preview mode, and when i click edit page, then only able to add content in editor .

By default, i should be able to add content in RADHTMLFIELD

Please find the screenshots .

Please help me in this regard

Thanks 
vinay
Stanimir
Telerik team
 answered on 24 May 2010
3 answers
103 views
I have a RadEditor in a user control and I want the ImageManger to use a Image Library list on the site.  Is this possible?
Stanimir
Telerik team
 answered on 24 May 2010
1 answer
90 views
Great product! The demos shows an example of adding user controls. Can you progamatically add web parts and allow the user to configure the web part properties? Thanks.
Pero
Telerik team
 answered on 24 May 2010
2 answers
275 views

hi

using the web service  binding the child grid   on expanding event  of the js .when you expand the one row it is working ,if we expand all rows using the js only lost row is showing the data.

i downloaded the one sample from the forums and modified here is the code

<script runat="server">

    protected void RadGrid1_ItemCreated(object sender, GridItemEventArgs e)
    {
        if (e.Item is GridHeaderItem)
        {
            GridHeaderItem hitem = (GridHeaderItem)e.Item;
            CheckBox chk = new CheckBox();
            chk.Attributes["onclick"] = "javascript: ExpandCollapseAllTables()";
            hitem["ExpandColumn"].Controls.Add(chk);
        }
    }
</script>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Two level hierarchy</title>
    <telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">

        <script type="text/javascript" src="Script1.js"></script>

        <script type="text/javascript">
            function pageLoad(sender, args) {
                tableView = $find("<%= RadGrid1.ClientID %>").get_masterTableView();

                commandName = "Load"

                WebService.GetCustomers(0, tableView.get_pageSize(),
                    tableView.get_sortExpressions().toString(), tableView.get_filterExpressions().toDynamicLinq(),
                        updateGrid);
            }
            function ExpandCollapseAllTables() {

                for (masterIndex = 0; masterIndex < 2; masterIndex++) {

                    var firstMasterTableViewRow = $find("<%= RadGrid1.MasterTableView.ClientID %>").get_dataItems()[masterIndex];
                    if (firstMasterTableViewRow.get_expanded()) {
                        firstMasterTableViewRow.set_expanded(false);
                    }
                    else {
                        firstMasterTableViewRow.set_expanded(true);
                    }
                }
          
            }
        </script>

    </telerik:RadCodeBlock>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
            <Services>
                <asp:ServiceReference Path="~/WebService.asmx" />
            </Services>
        </telerik:RadScriptManager>
        <telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server" />
        <telerik:RadGrid ID="RadGrid1" AllowFilteringByColumn="true" Skin="Telerik" runat="server"
            GridLines="None" AllowPaging="true" AllowSorting="true"
            onitemcreated="RadGrid1_ItemCreated">
            <ClientSettings>
                <ClientEvents OnCommand="RadGrid1_Command" OnHierarchyExpanding="RadGrid1_HierarchyExpanding" />
            </ClientSettings>
            <MasterTableView HierarchyLoadMode="Client" ClientDataKeyNames="CustomerID">
                <Columns>
                    <telerik:GridBoundColumn SortExpression="CustomerID" DataField="CustomerID" HeaderText="CustomerID" />
                    <telerik:GridBoundColumn SortExpression="CompanyName" DataField="CompanyName" HeaderText="CompanyName" />
                    <telerik:GridBoundColumn SortExpression="ContactName" DataField="ContactName" HeaderText="ContactName" />
                    <telerik:GridBoundColumn SortExpression="ContactTitle" DataField="ContactTitle" HeaderText="ContactTitle" />
                    <telerik:GridBoundColumn SortExpression="Country" DataField="Country" HeaderText="Country" />
                    <telerik:GridBoundColumn SortExpression="City" DataField="City" HeaderText="City" />
                </Columns>
                <NestedViewTemplate>
                </NestedViewTemplate>
            </MasterTableView>
            <PagerStyle AlwaysVisible="true" />
        </telerik:RadGrid>
        <asp:Panel ID="Panel1" style="display:none;" runat="server">
            <telerik:RadGrid ID="RadGrid2" AllowFilteringByColumn="true" Skin="Telerik" runat="server"
                GridLines="None" AllowPaging="true" AllowSorting="true">
                <ClientSettings>
                    <ClientEvents OnCommand="RadGrid2_Command" />
                </ClientSettings>
                <MasterTableView ClientDataKeyNames="OrderID">
                    <Columns>
                        <telerik:GridBoundColumn SortExpression="OrderID" DataField="OrderID" HeaderText="OrderID"
                            DataType="System.Int32" />
                        <telerik:GridBoundColumn SortExpression="OrderDate" DataField="OrderDate" HeaderText="OrderDate"
                            DataType="System.DateTime" DataFormatString="{0:MM/dd/yyyy}" />
                        <telerik:GridBoundColumn SortExpression="ShipName" DataField="ShipName" HeaderText="ShipName" />
                        <telerik:GridBoundColumn SortExpression="ShipCity" DataField="ShipCity" HeaderText="ShipdgdfgdCity" />
                        <telerik:GridBoundColumn SortExpression="ShipCountry" DataField="ShipCountry" HeaderText="ShipCountry" />
                    </Columns>
                </MasterTableView>
                <PagerStyle AlwaysVisible="true" />
            </telerik:RadGrid>
        </asp:Panel>
    </div>
    </form>
</body>
</html>

script1.js

var commandName = "";
var tableView = null;
var ordersView = null;
var ordersCommandName = "";

function RadGrid1_Command(sender, args) {
    args.set_cancel(true);

    collapseItems(sender);
  
    commandName = args.get_commandName();

    WebService.GetCustomers(tableView.get_currentPageIndex() * tableView.get_pageSize(), tableView.get_pageSize(),
                    tableView.get_sortExpressions().toString(), tableView.get_filterExpressions().toDynamicLinq(),
                        updateGrid);
}

function updateGrid(result) {
    tableView.set_dataSource(result);
    tableView.dataBind();

    var dataItems = tableView.get_dataItems();

    if (commandName == "Filter" || commandName == "Load") {
        WebService.GetCustomersCount(updateVirtualItemCount);
    }
}

function updateVirtualItemCount(result) {
    tableView.set_virtualItemCount(result);
}

function collapseItems(sender) {
    var dataItems = sender.get_masterTableView().get_dataItems();
    for (var i = 0, length = dataItems.length; i < length; i++) {
        var input = dataItems[i].get_element().cells[0].getElementsByTagName("input")[0];
        if (input.className == "rgCollapse") {
            input.click();
        }
    }
}

function RadGrid1_HierarchyExpanding(sender, args) {
    collapseItems(sender);

    var customerID = args.getDataKeyValue("CustomerID");
    var nestedViewItem = args.get_nestedViewItem();

    nestedViewItem.cells[1].appendChild($get("RadGrid2"));

    ordersView = $find("RadGrid2").get_masterTableView();

    ordersCommandName = "Load";

    WebService.GetOrdersByCustomerID(customerID, ordersView.get_currentPageIndex() * ordersView.get_pageSize(), ordersView.get_pageSize(),
                    ordersView.get_sortExpressions().toString(), ordersView.get_filterExpressions().toDynamicLinq(),
                        updateOrdersGrid);
}

function updateOrdersGrid(result) {
    ordersView.set_dataSource(result);
    ordersView.dataBind();

    if (ordersCommandName == "Filter" || ordersCommandName == "Load") {
        WebService.GetOrdersByCustomerIDCount(updateOrdersVirtualItemCount);
    }
}

function updateOrdersVirtualItemCount(result) {
    ordersView.set_virtualItemCount(result);
}

function RadGrid2_Command(sender, args) {
    ordersView = sender.get_masterTableView();
    var nestedViewItem = sender.get_element().parentNode.parentNode;
    var parentGridDataItem = $find(Telerik.Web.UI.Grid.GetNodePreviousSiblingByTagName(nestedViewItem, "tr").id);
    var customerID = parentGridDataItem.getDataKeyValue("CustomerID");

    args.set_cancel(true);

    ordersCommandName = args.get_commandName();

    WebService.GetOrdersByCustomerID(customerID, ordersView.get_currentPageIndex() * ordersView.get_pageSize(), ordersView.get_pageSize(),
                    ordersView.get_sortExpressions().toString(), ordersView.get_filterExpressions().toDynamicLinq(),
                        updateOrdersGrid);
}

please help me

downloaded sample file name is 102839_website

thanks and Regards
Srikanth.Narala

Yavor
Telerik team
 answered on 24 May 2010
1 answer
112 views
HI All,
i am intending to use object data source for a grid below you will find the the snippet of the object i intend calling 
using System; 
using System.Data; 
using System.Configuration; 
using MySql.Data.MySqlClient; 
using Microsoft.ApplicationBlocks.Data; 
 
 
 
/// <summary> 
/// Summary description for CommonDataProvider 
/// </summary> 
namespace com.myclass.DAL 
    public class CommonDataProvider 
    { 
        
 
        public static DataTable getDlr() 
        { 
            DataTable ds= null
            string str = ConfigurationManager.AppSettings["emgConnectionString"]; 
            MySqlConnection con = new MySqlConnection(str); 
            //MySqlCommand command = con.CreateCommand(); 
            string query = "SELECT * FROM routelog"
            //SqlDataAdapter adapter = new SqlDataAdapter(); 
            MySqlDataAdapter myDataAdapter = new MySqlDataAdapter(); 
            myDataAdapter.SelectCommand = new MySqlCommand(query, con); 
            //MySqlDataAdapter myDataAdapter = new MySqlDataAdapter(command); 
            ds= new DataTable(); 
            con.Open(); 
            try 
            { 
                myDataAdapter.Fill(ds); 
            } 
            catch (Exception ex) 
            { 
                WriteLog(DateTime.Now.ToString() + ":" + ex.Message + " " + ex.StackTrace); 
            } 
            finally 
            { 
                con.Close(); 
            } 
            return ds; 
        } 
 
        public static DataSet GetPageInfo()//(int id) 
        { 
            DataSet ds = null
            string str = ConfigurationManager.AppSettings["emgConnectionString"]; 
             
            string sequel = "SELECT routelog.starttime, status.details AS STATUS, routelog.sourceaddr, routelog.destaddr, messagebody.data AS 'encrpted message' FROM emg.routelog INNER JOIN emg.status ON (routelog.status = status.statusID)INNER JOIN emg.messagebody ON (routelog.msgid = messagebody.id)WHERE (routelog.msgtype =1)"
            //if (id > 0) 
            //    sequel += " WHERE ID = " + id; 
 
            //sequel += " ORDER BY PageName"; 
            try 
            { 
                ds = SqlHelper.ExecuteDataset(str, CommandType.Text, sequel); 
            } 
            catch (Exception ex) 
            { 
                WriteLog(DateTime.Now.ToString()+":"+ ex.Message + " " + ex.StackTrace); 
            } 
            return ds; 
        } 
 
        public static void WriteLog(string msg) 
        { 
            try 
            { 
                //HttpContext context = HttpContext.Current; 
                string path = ConfigurationManager.AppSettings["LogFile"]; 
                //string err = ConfigurationManager.AppSettings["LogFile"]; 
                 
                //Mail.SendMail( 
                //string path = context.Server.MapPath(_path); 
                System.IO.StreamWriter writer = new System.IO.StreamWriter(path, true); 
                writer.WriteLine(msg + " " + DateTime.Now.ToString()); 
                writer.WriteLine(); 
                writer.Close(); 
            } 
            catch { } 
        } 
 
         
    } 
 
     
 

below is also the brief of the grid definition
<asp:ObjectDataSource ID="ObjectDataSource1" runat="server"  
            SelectMethod="getDlr" TypeName="com.cellulant.DAL.CommonDataProvider"
        </asp:ObjectDataSource> 
<asp:ScriptManager  ID="ScriptManager1" runat="server"></asp:ScriptManager> 
        <!-- content start --> 
            <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"
                <AjaxSettings> 
                    <telerik:AjaxSetting AjaxControlID="RadGrid1"
                        <UpdatedControls> 
                            <telerik:AjaxUpdatedControl ControlID="RadGrid1" /> 
                        </UpdatedControls> 
                    </telerik:AjaxSetting> 
                </AjaxSettings> 
            </telerik:RadAjaxManager> 
<telerik:RadGrid ID="RadGrid1" runat="server" AllowFilteringByColumn="True"  
            AllowPaging="True" AllowSorting="True"  
            GridLines="None" ShowGroupPanel="True" Skin="Sunset" PageSize="50" style="margin-bottom: 117px"  
                                    Width="900px" AutoGenerateColumns="False" DataSourceID="ObjectDataSource1"
<HeaderContextMenu EnableTheming="True"
<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> 
</HeaderContextMenu> 
 
            <ExportSettings FileName="report" IgnorePaging="True" OpenInNewWindow="True"
                <Pdf Creator="cellulant Nigreia Limited" PageHeight="8.5in" PageWidth="11in" /> 
            </ExportSettings> 
 
                                    <PagerStyle Mode="NextPrevNumericAndAdvanced" /> 
 
<MasterTableView DataSourceID="ObjectDataSource1"
<RowIndicatorColumn> 
<HeaderStyle Width="20px"></HeaderStyle> 
</RowIndicatorColumn> 
 
<ExpandCollapseColumn> 
<HeaderStyle Width="20px"></HeaderStyle> 
</ExpandCollapseColumn> 
</MasterTableView> 
 
            <ClientSettings AllowColumnHide="True" AllowDragToGroup="True"
                <Selecting AllowRowSelect="True" /> 
                <Scrolling AllowScroll="True" UseStaticHeaders="True" /> 
            </ClientSettings> 
 
<FilterMenu EnableTheming="True"
<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> 
</FilterMenu> 
        </telerik:RadGrid> 

when i used the it did not display the returned record from the getDlr funtion. when i ran it in debug mode i found out the about 2500 record was returned but still the grid will not render the data.

i also tried setting the data source of the grid from code behind it still did not render the data. while it renders them with   sqldatasource.

please  i want to know what am doing wrong. and how to get over it.

thanks

Ogunseye E-Larry
Dimo
Telerik team
 answered on 24 May 2010
5 answers
122 views
Hi,
We are using RAD control- Q2 2009 for development.
We have one popup-RadWindow in rtl(right to left) mode. We have configured RadWindow in following manner:

<body style="direction: rtl;">  
    <form id="form1" runat="server">  
    <div> 
        <asp:ScriptManager ID="ScriptManager1" runat="server" /> 
        <telerik:RadWindowManager ID="RadWindowManager1" runat="server">  
            <Windows> 
                <telerik:RadWindow ID="rw1" Name="rw1" Behaviors="Close" ShowContentDuringLoad="false" 
                    ReloadOnShow="true" VisibleStatusbar="false" BackColor="Gray" Modal="true" runat="server" 
                    Height="650" Width="500">  
                </telerik:RadWindow> 
            </Windows> 
        </telerik:RadWindowManager> 
        <telerik:RadCodeBlock ID="radCodeBlock" runat="server">  
 
            <script language="javascript" type="text/javascript">  
                function OpenRadWindow(url) {  
                    var oWnd = window.radopen(null, 'rw1');  
                    oWnd.setUrl(url);  
                    return false;  
                }          
            </script> 
 
        </telerik:RadCodeBlock> 
        <telerik:RadTextBox ID="txt" runat="server">  
        </telerik:RadTextBox> 
        <asp:Button ID="btnOpen" runat="server" OnClientClick="javascript:return OpenRadWindow('WebForm1.aspx')" 
            Text="pop up 1" /> 
        <asp:Button ID="Button1" runat="server" OnClientClick="javascript:return OpenRadWindow('WebForm2.aspx')" 
            Text="pop up 2 " /> 
    </div> 
    </form> 
</body> 

Even after this I can not see loading image while pop-up load.
If I change direction to ltr then this works successfully.
So, is this any configuration problem or ...?

Please suggest us to resolve this issue.

With Regards,
Naresh Goradara
Rumen
Telerik team
 answered on 24 May 2010
7 answers
157 views
 Hi Team,

I had a RadListbox which connected to sqldatasource.

Afterwhich, when i select the item in the Listbox, it will link me to Radscheduler Advaced Form.

Im able to launch the Advanced form but the ID was not correct.

Please help
Shawn

 protected void RadListBox1_SelectedIndexChanged(object sender, EventArgs e)
     {

         foreach (RadListBoxItem currentItem in RadListBox1.Items)
         {
             String value = currentItem.Value;
             Appointment edittedAppointment = RadScheduler2.Appointments.FindByID(int.Parse(value));
             RadScheduler2.ShowAdvancedEditForm(edittedAppointment);
         }
     }
shawn wong
Top achievements
Rank 1
 answered on 24 May 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?