Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
72 views
hello guys

              i would like to ask question about radwindow, i'm using vs2010 asp.net and i applied this control on my page as my modal pop up instead of using panel and ajax modal pop extender, now i have one button call search inside the radwindow and one radgrid also inside the radwindow, now when i deploy my web application to windows server 2003 as a server for my web application, then when i tried to push the button search it does not fire an event to populate data to radgrid..i google this one but no luck..i dont have any clue what happen no error been given..anyone knows the solution would greatly appreciated..

thanks
Rumen
Telerik team
 answered on 06 Sep 2012
0 answers
114 views
Hi Guys,

I have a telerik grid and above telerik grid i hve textbox which is used for custom search.
This all thing are on popup,
My Problem is when i select a row and for same code i hit for search so at that time the record get highlited at top of grid but it selection
is lost and when again i clear search values than selection persist because when i select row, it index is selected instead of datakey value of that row.

1 important thing the grid on popup is bind through javascript.

Please reply it's urgent

Thanks
Chandan
Top achievements
Rank 1
 asked on 06 Sep 2012
1 answer
136 views
How can i show RadTooltip Control when i right click on An Appointment and i want to put rad GridView in that tooltip
Princy
Top achievements
Rank 2
 answered on 06 Sep 2012
1 answer
59 views
Hi,

I'm looking into the radImageEditor control to see if it's possible to be used to edit an image and display the changes live in a simple asp image control.

For example, I would like to allow the user to crop/resize/rotate an uploaded image, and display the changes in real time in a separate control.

I'm looking for something similar to this jQuery plugin http://www.odyniec.net/projects/imgareaselect/. It is preferable to use the Telerik control due to the extra image editing functionality available.

Thanks for any help in advance!

Rich
Vessy
Telerik team
 answered on 06 Sep 2012
1 answer
56 views
i have a radgrid in my ASP.net project.  One column fo radgrid contains both strings(string is 'NIL') and numbers. i want to faciliate sorting in the grid. but for the column i mentioned above, sorting is not working fine for numbers. so during sorting i want to make string 'NIL' data to 0 and want to sort column as number column. how i can make string 'NIL ' to 0 in Onsortcommand method. Please help me


Also i had given string property as data in that column for giving 'NIL' as data. If i am giving integer data, its wont accept 'NIL'. so at the time of sorting i have to consider alld ata as integer. only then soring will work. Please suggest me an idea
Sanjeev
Top achievements
Rank 1
 answered on 06 Sep 2012
5 answers
178 views
I want to find radgrid inside CommandItemTemplate in java script
<telerik:radgrid>
<MasterTableView  AllowFilteringByColumn="true" IsFilterItemExpanded="false" HeaderStyle-Width="200px" ItemStyle-Width="200px" CommandItemDisplay="Top" DataKeyNames="lid"  ClientDataKeyNames="lid" Width="100%">
            <CommandItemTemplate>          
 <td>  <telerik:RadButton EnableSplitButton="true" ID="SplitButton" AutoPostBack="false"
                runat="server" Text="Transfer Item" OnClientClicked="OnClientClicked">
            </telerik:RadButton>
            <telerik:RadContextMenu ID="RadContextMenu1" runat="server" >
                <Items>
                    <telerik:RadMenuItem Text="Transfer Right">
                    </telerik:RadMenuItem>
                    <telerik:RadMenuItem Text="Transfer Left">
                    </telerik:RadMenuItem>
                </Items>
            </telerik:RadContextMenu>



Thanks Advance,
Mohamed.
Shinu
Top achievements
Rank 2
 answered on 06 Sep 2012
2 answers
70 views
Hello,
I have a weird render that happens on the forest theme.
If I change it to metro, no problem, please take a look at the attachment.

Thank you,
-Edward
Edward
Top achievements
Rank 1
 answered on 05 Sep 2012
9 answers
251 views
Hi Guys,

I ran into an issue in Chrome where if I post back a Rad Editor wrapped in a jquery dialog I will get a
javascript error: Uncaught Error: INVALID_ACCESS_ERR: DOM Exception 15.
Does anybody have any idea how to resolve this? I attached code to reproduce this issue

Thanks in advance!


$(document).ready(function ()
       {
           $("#testDialogInfo").dialog(
               {
                   autoOpen: false,
                   modal: true,
                   resizable: false,
                   scrollable: false,
                   width: "860px"
               });
 
               $("#testDialogInfo").parent().appendTo($("form:first")); 
       });
         
       function OpenDialog()
       {
 
           $find("<%= ajaxPanel.ClientID %>").ajaxRequest("");
 
          
 
       }
 
       function ResponseEnd(sender, eventArgs)
       {
 
           $("#testDialogInfo").dialog("open");
 
           var editor = $find("<%= rteFullDescription.ClientID%>");
 
 
           //$("#testDialogInfo").parent().appendTo($("form:first"));
           editor.onParentNodeChanged();
          
       }

<div id="testDialogInfo">
           <telerik:RadAjaxPanel  ID="ajaxPanel" runat="server" OnAjaxRequest="AjaxPanel_AjaxRequest" ClientEvents-OnResponseEnd="ResponseEnd">   
          <telerik:RadEditor ID="rteFullDescription" Runat="server" style="margin-bottom:10px;" Height="200px"
               Editable="True" 
               ToolsFile="~/RadControls/Editor/Phonebook/ToolsFile.xml"
               LicenseFile="~/RadControls/LicenseFile.xml"    
               
               StripFormattingOptions="ConvertWordLists, MSWordRemoveAll"
               EditModes="Design">
                       <ImageManager   ViewPaths="~/Uploads/DefaultImages/"
                                       UploadPaths="~/Uploads/DefaultImages/"
                                       DeletePaths="~/Uploads/DefaultImages/"
                                       SearchPatterns="*.jpg, *.jpeg, *.gif, *.png, *.bmp"
                                       MaxUploadFileSize="5000000"   />
                       <CssFiles>
                           <telerik:EditorCssFile Value="~/Includes/Style/Editor.css" />
                       </CssFiles>
           </telerik:RadEditor>   
      </telerik:RadAjaxPanel>
       </div>

Anthony
Top achievements
Rank 1
 answered on 05 Sep 2012
1 answer
60 views
Hi
What's the problem of these codes?
<telerik:RadRotator ID="RadRotator1" runat="server" FrameDuration="3000"
        RotatorType="SlideShow" ScrollDirection="Down" Height="190px" ItemHeight="30px"
        Width="178px">
        <Items>
        <telerik:RadRotatorItem>
        <ItemTemplate>
        <asp:Image ID="Image1" runat="server" ImageUrl="~/Assets/Images/main-bg.jpg" />
        </ItemTemplate>
        </telerik:RadRotatorItem>
        <telerik:RadRotatorItem>
        <ItemTemplate>
        <asp:Image ID="Image1" runat="server" ImageUrl="~/Assets/Images/main-bg.jpg" />
        </ItemTemplate>
        </telerik:RadRotatorItem>
        <telerik:RadRotatorItem>
        <ItemTemplate>
        <asp:Image ID="Image1" runat="server" ImageUrl="~/Assets/Images/main-bg.jpg" />
        </ItemTemplate>
        </telerik:RadRotatorItem>
        <telerik:RadRotatorItem>
        <ItemTemplate>
        <asp:Image ID="Image1" runat="server" ImageUrl="~/Assets/Images/main-bg.jpg" />
        </ItemTemplate>
        </telerik:RadRotatorItem>
        </Items>
        <ItemTemplate>
             
        </ItemTemplate>
    </telerik:RadRotator>
Marin Bratanov
Telerik team
 answered on 05 Sep 2012
1 answer
53 views
It doesn't seem to matter what I do, when trying to create a new skin, I get the error:

Failed to create skin!

A server error has occured.
We have been notified and will try to resolve it ASAP.
Sorry for the inconvenience.
I have tried in IE 9 and Chrome. 
David
Top achievements
Rank 1
 answered on 05 Sep 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
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?