Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
92 views
I have a long list of items to load when a panel expands.  Is there a way to display a progress indicator or wait cursor while the panel is expanding?

Sean M. Severson
Veselin Vasilev
Telerik team
 answered on 14 Dec 2009
1 answer
58 views
Binding the radcomboboxes in the edit item template in radgrid,where two radcomboboxes has relation.and they had to be selected when we  click edit.

Example:

I have two radcombobboxes in two  Different  EditItem Templates's ,one radcombobox consists of country's and based on the selection of the country another rad combobox is get databinded with city.

While inserting there is no problem,but when i click edit the radcomboboxes are not been selected with there selected values.
Pavlina
Telerik team
 answered on 14 Dec 2009
1 answer
103 views
I have the following markup in an aspx page. After running the latest Upgrade Wizard (.3.1208.35), the version info in the markup below was not updated to reflect the latest version. Same thing in two other similar aspx files.

<telerik:RadScriptManager ID="RadScriptManager1" runat="server"
        <Scripts> 
            <asp:ScriptReference Assembly="Telerik.Web.UI, Version=2009.2.701.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" 
                Name="Telerik.Web.UI.Common.Core.js" /> 
            <asp:ScriptReference Assembly="Telerik.Web.UI, Version=2009.2.701.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" 
                Name="Telerik.Web.UI.Common.jQuery.js" /> 
        </Scripts> 
    </telerik:RadScriptManager> 

I assume the upgrade wizard should look at all the aspx files in the project being upgraded and update the markup to reflect the newer version, so I'm guessing that's a bug...

Thanks,


Erjan Gavalji
Telerik team
 answered on 14 Dec 2009
1 answer
81 views
Hi Telerik Team,

                    I have a problem with radTooltip in RadScheduler where i am using it to populate my appointment date. The problem is when i am creating a new appointment it is not showing tooltip immediatly. It is showing after refreshing page. Can you please help me on this issue.


Thanks and Regards
--------------------------
K. RAMU
Veselin Vasilev
Telerik team
 answered on 14 Dec 2009
1 answer
111 views
Hello,
i have a RadGrid with a client-side-binding to a wcf service. The binding works well and very fast and all the data are shown correctly in the grid but how can i access the values of the row on the server side in the code-behind?

The following approach alway returns &nbsp:
GridDataItem gridRow = radGrid.SelectedItems[0];
var text = gridRow["Name"].Text;

with best regards
Meik


 

Nikolay Rusev
Telerik team
 answered on 14 Dec 2009
1 answer
105 views
I have a problem.
I use a RadGrid with an esternal javascript code that open a new page in a I-Frame
All goes well until I don't use RadGrid Functions for grouping, sorting, paging, ecc...
When I use one of that, my script stop to work.
Can you give me a simple example in C# of a grid that calls an external page .aspx showing it with RadToolTip ?
Thanks
Yavor
Telerik team
 answered on 14 Dec 2009
2 answers
299 views
Hi,
I am facing a problem in binding a tooltip to each cell. The tooltip value is the actual content in the cell. I have tried few solution to bind discussed in this forum. But i was not sucessful. 
Telerik version: 2009.2.826.35

 

<telerik:RadGrid ID="RadGrid1" runat="server"
        onitemcreated="RadGrid1_ItemDataBound">
            <ClientSettings AllowColumnsReorder="True" AllowKeyboardNavigation="false"
                                        ColumnsReorderMethod="Reorder" ReorderColumnsOnClient="True">
                                        <Selecting AllowRowSelect="True" />
                                        <Resizing AllowColumnResize="True" AllowRowResize="True"  ClipCellContentOnResize="true" />
                                    </ClientSettings>
            <MasterTableView>
            <RowIndicatorColumn>
            <HeaderStyle Width="20px"></HeaderStyle>
            </RowIndicatorColumn>

            <ExpandCollapseColumn>
            <HeaderStyle Width="20px"></HeaderStyle>
            </ExpandCollapseColumn>
            </MasterTableView>
    </telerik:RadGrid>

 

protected void RadGrid1_ItemDataBound(object sender, GridItemEventArgs e)
        {
           
            if (e.Item is GridDataItem)
            {
                foreach (TableCell cell in e.Item.Cells)
                {
                    cell.ToolTip = cell.Text;
                }
            } 
 
        }

Please suggest some solution.
Regards,
Sivarajan

 

 

 

 

Princy
Top achievements
Rank 2
 answered on 14 Dec 2009
2 answers
144 views
Hi, All

I want to set Today value at DatePicker Control In Grid DataEditForm

Like

protected void Page_Load(object sender, EventArgs e)
    {
        RadDatePicker1.SelectedDate = DateTime.Today;

    }
as C#

ASPX

<telerik:RadDatePicker ID="DatePicker" DbSelectedDate='<%# Bind("DB_DATA") %>' Runat="server" Culture="Korean (Korea)" Skin="Default">
                            <Calendar UseRowHeadersAsSelectors="False" UseColumnHeadersAsSelectors="False" ViewSelectorText="x">
                                <SpecialDays> 
                                  <telerik:RadCalendarDay Repeatable="Today" > 
                                     <ItemStyle BackColor="Pink" /> 
                                  </telerik:RadCalendarDay>                
                               </SpecialDays>
                            </Calendar>
                            <DatePopupButton ImageUrl="" HoverImageUrl=""></DatePopupButton>
                            <DateInput DisplayDateFormat="yyyy-MM-dd" DateFormat="yyyy-MM-dd"  ShowButton="True"></DateInput>
                        </telerik:RadDatePicker></td>

C#

protected void grdList_ItemCommand(object source, GridCommandEventArgs e)
    {
        RadGrid grid = (source as RadGrid);

        if (e.CommandName == RadGrid.InitInsertCommandName) //"Add new" button clicked
        {
            GridEditCommandColumn editColumn = (GridEditCommandColumn)grdList.MasterTableView.GetColumn("EditCommandColumn");
            editColumn.Visible = false;

            if (grid.EditItems.Count > 0)
            {
                grid.MasterTableView.ClearEditItems();
            }

            // <- I want to set toady atThis Point

}

How can I do it...

Yoon-Ho Choi
Top achievements
Rank 1
 answered on 14 Dec 2009
1 answer
64 views
hi,

how can i access the calendar in scheduler on clientside? is it possible?

thanks.
Shinu
Top achievements
Rank 2
 answered on 14 Dec 2009
2 answers
240 views

I have a requirement to create a large web form, about 70 fields a form, and must allow user to format text or insert table. The average data size on each item is about 200-300 lines (A4 page) and user request me to put all items in one page in order to make it easier to read. I worry about performance issue if I insert 70 RadEditor control on a page so I display text in asp:Literal control and use only one RadEditor to edit text in all literal. 

I'm using AjaxControlToolkit's ModalPopupExtender to display a panel which has RadEditor in it to display a modal text editor popup.
Now ModalPopupExtender has a performance issue and some conflict with RadEditor so I want to use another way to display a modal text editor popup.

Is there any suggestion for me?
I want to put RadEditor in same page with all of the contents in this form.
If I use RadWindow, I must place RadEditor in another page and now the new feature which allow me to use RadWindow as a container  in the same page has a bug with RadEditor.

Thanks.

Sittha Apasirikul
Top achievements
Rank 1
 answered on 14 Dec 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?