Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
108 views
Is there a way to hide cells or entire rows in a grid using a trigger such as specific text or a blank cell?  For example, in the case that a grid row is essentially one cell, can you code in a switch to hide the row and its label (header row) if the cell is blank or did not receive inputs or information from a corresponding web form?  Thanks in advance.  Your help and advice is much appreciated. 
Shinu
Top achievements
Rank 2
 answered on 06 Sep 2012
1 answer
53 views

Hi,

I need to set the work time/business hours in the scheduler based on the day of the week, eg. Mon-Fri 9am-5pm Sat 10am-1pm.

I can see where I can set it for the whole block but not based on an individual day.  Is there a server side event that I can do this on?

Thanks

Gavin.

Plamen
Telerik team
 answered on 06 Sep 2012
1 answer
65 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
100 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
120 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
52 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
51 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
163 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
56 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
223 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
Narrow your results
Selected tags
Tags
+? more
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?