Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
58 views

Hello,

I wanted to make a suggestion for a control here for future releases. You might have seen websites where they have image thumbnails and when you click on one of those thumbnails the image comes out and shows up in full size on screen, click the full size image and the image disappears back in to the thumbnail. Can you implement a control to offer such functionality?


Thanks.
Regards.
Sebastian
Telerik team
 answered on 22 Dec 2011
2 answers
97 views
from page

http://demos.telerik.com/aspnet-ajax/editor/examples/builtinmodules/defaultcs.aspx

link

http://www.telerik.com/help/aspnet-ajax/typesofmodules.html

should be:

http://www.telerik.com/help/aspnet-ajax/editor-types-of-modules.html

Besides, what in fact is the "RadEditorDiagnostics" module. I cannot finf any information on it.

Marc
Rumen
Telerik team
 answered on 22 Dec 2011
3 answers
106 views
can any1 suggest how to get focus on tab key press on AsyncUpload
Peter Filipov
Telerik team
 answered on 22 Dec 2011
1 answer
86 views
Hello...
i have a question... 

after add a button in nestedView , How can i  raise click button event in Radgrid nestedview ?

i attached screen shot , because i didn't write  english well.

thanks regards....
Princy
Top achievements
Rank 2
 answered on 22 Dec 2011
8 answers
573 views

Hi.

I have a grid with the nextPrevAndNumeric pager mode.
when i click on one of the page numbers - it works fine.
but when i click on the "prev/next/first/last page" nothing happens, no event is fired.

i went over the forums but didn't find an answer.

thanks in advance

Shinu
Top achievements
Rank 2
 answered on 22 Dec 2011
2 answers
325 views
Hi,
I have problem with dynamic tool tip. It is inside a repeater and the tool tip is assigned to <asp:linkbutton>. tooltip targetControld is assigned to linkbutton but dynamically linkbutton id is changing because same linkbutton is used three times in same repeater. Based on the linkbutton id i need to change caption of tool tip text. Can u please suggest.

<asp:Repeater ID="WidgetList" runat="server" EnableViewState="true"
                                                    onitemcommand="WidgetList_ItemCommand">                                
                                                    <ItemTemplate>                            
                                                        <table width="100%">
                                                            <tr>
                                                                <td height="50" background="../images/Arrowlarge.bmp" style="background-repeat: no-repeat">
                                                                    <table height="50px">
                                                                        <tr>
                                                                            <td height="50">
                                                                                <img src="../images/Folder.gif" alt="" style="height: 30px" width="30px" />
                                                                            </td>
                                                                            <td height="50">
                                                                                <asp:LinkButton ID="lnkText_towarehouse" OnClick="lnkText_towarehouse_Click" ValidationGroup='<%# Eval("TypeId") %>'
                                                                                    Text='<%# Eval("TextData") %>' runat="server" Font-Bold="true" Font-Size="Small" ></asp:LinkButton>
                                                                                <telerik:RadToolTip runat="server" ID="RadToolTip1" RelativeTo="Element" Width="390px" Text="Test"
                                                                                    Height="70px" IsClientID="true" EnableViewState="true" TargetControlID="lnkText_towarehouse"
                                                                                    Position="TopRight">                         
                                                                                </telerik:RadToolTip>
                                                                            </td>
                                                                        </tr>
                                                                    </table>
                                                                </td>
                                                            </tr>
                                                        </table>
                                                    </ItemTemplate>
                                                </asp:Repeater>

Regards,
Akki
Akki
Top achievements
Rank 1
 answered on 22 Dec 2011
1 answer
123 views
Hello everyone,
I use the Version=2010.1.415.35 of Telerik controls.

I want to export the data from a Grid to an excel but when the column data are like "00455500400400", I get wrong data in the excel, or I get the data as numbers.(see attached picture)
I found the e.Cell.Style("mso-number-format") = "\@" formatting approach, but I can use it only in the 2011 version.
I cannot add spaces, or text on the exported data. I want the original data to be formatted as text.

Could you please help me how to implement this? Below I attach the column definition:

<telerik:GridBoundColumn DataField="Κωδικός Προϊόντος" 
HeaderText="Κωδικός Προϊόντος"
DataFormatString="{0}"
DataType="System.String"
SortExpression="Κωδικός Προϊόντος"
UniqueName="Κωδικός Προϊόντος">
<HeaderStyle Width="155px"></HeaderStyle>
</telerik:GridBoundColumn>

Thank you in advance!
 Andreas
Shinu
Top achievements
Rank 2
 answered on 22 Dec 2011
2 answers
106 views
Hello Admin,

I am using GridClientSelection in radgrid.and i am calling onrowseleted client side to making some columns of the grid to the textbox so that user can edit the values and then by making a webservice call we will save the selected values.But when i click on checkbox column the same row goes in edit mode as well.But in my scenario i just wanted to go in the edit mode when a row is selected ,but not by clicking on checkbox column .

Please provide me the solution ASAP as it is very urgent.

Thanks,
Mandeep Singh
Shinu
Top achievements
Rank 2
 answered on 22 Dec 2011
1 answer
136 views
My RadMenu displays over a textbox which currently has the focus. The blinking caret shows thru the menu. How do i prevent this?

<telerik:RadMenu ID="RadMenuUserFormsList" runat="server" Skin="Telerik" Style="z-index: 800"
     OnClientItemClicked="OnClientItemClicked" >
    <Items>
        <telerik:RadMenuItem Text="New" Value="NewForm"  Enabled="true" PostBack="false" Visible="true" >
            <Items>                                  
            </Items>
        </telerik:RadMenuItem>
    </Items>
    <CollapseAnimation Type="None" />
    <ExpandAnimation Type="None" />
</telerik:RadMenu>

private void InitializeMenu()
{
    var FormTypes = GlobalController.GetFormTypeList();
    int i = 1;
    RadMenuItem NewFormMenu = RadMenuUserFormsList.FindItemByValue("NewForm");
 
    // add menu items
    FormTypes.ToList<LovItem>().ForEach(delegate(LovItem item)
    {
        RadMenuItem MenuItem = new RadMenuItem();
        MenuItem.Text = item.Value;
        MenuItem.Text = i.ToString();
        i++;               
        MenuItem.Target = "_blank";               
        NewFormMenu.Items.Add(MenuItem);
    });
 
}
Richard
Top achievements
Rank 1
 answered on 21 Dec 2011
1 answer
73 views
Hi,

Im trying to use the progress area as per the example on the website.

Following is the piece of code:
private void UpdateProgressContext()
        {
            const int total = 1200;
 
            RadProgressContext progress = RadProgressContext.Current;
            progress.Speed = "N/A";
 
            for (int i = 0; i < total; i++)
            {
                progress.PrimaryTotal = 1;
                progress.PrimaryValue = 1;
                progress.PrimaryPercent = 100;
 
                progress.SecondaryTotal = total;
                progress.SecondaryValue = i;
                int per = (i/total)*100;
                progress.SecondaryPercent = per;
 
                progress.CurrentOperationText = "Step " + i.ToString() + " Per = " + per.ToString();
 
                if (!Response.IsClientConnected)
                {
                    //Cancel button was clicked or the browser was closed, so stop processing
                    break;
                }
 
                progress.TimeEstimated = (total - i) * 100;
                //Stall the current thread for 0.1 seconds
                System.Threading.Thread.Sleep(100);
            }
        }

In the above piece of code, i have only changed total = 1200 from 100 in the example and tryingt o show the percentage.
It always shows 0.
Vijay
Top achievements
Rank 1
 answered on 21 Dec 2011
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?