Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
148 views
I am building a radgrid dynamically and adding columns selected by the user at runtime.  The radmultipage is on the content panel of a master page inside a div:

        <div style="position:relative; margin-top:10px; margin-left:55px; margin-right:60px">  
                          <asp:contentplaceholder id="ContentPlaceHolder1" runat="server">  
                           </asp:contentplaceholder> 
         </div> 
 
 on the child page the grid is inside a pageview of the multipage:

        <telerik:RadPageView ID="PageView4" runat="server" Width="100%" > 
        <table width="100%" cellpadding="5">  
            ...  
            <tr> 
            <td>      
            <telerik:RadGrid   
                ID="radgridResources"   
                runat="server"   
                AllowPaging="True"   
... 

In IE6 the pageview would expand to accomodate the size of the radgrid and keep the appropriate borders.  In IE7 Q1 2009 the grdi overlaps the pageview.  You can see the prolem here:

http://www.jshawconsulting.com/Telerik/overlap.jpg

Any help greatly appreciated.

Jonathan
Naresh Palarapu
Top achievements
Rank 1
 answered on 30 Jul 2010
1 answer
157 views
Just wanted to confirm its possible to have RADWindow set to an always-on-top, non-modal display.  Has anyone done that, or can confirm its possible? We'll be doing that in a webPart...
Thanks,
-Rand
Shinu
Top achievements
Rank 2
 answered on 30 Jul 2010
1 answer
92 views
why AjaxRadAlert clear value that was fill from javascript when i show rad alert 
please help me
Georgi Tunev
Telerik team
 answered on 30 Jul 2010
1 answer
200 views
hi
   how to get html image button control in telerik radgrid in databound event
Princy
Top achievements
Rank 2
 answered on 30 Jul 2010
1 answer
178 views
Hi,
   how can i found the control in insert mode .please help me regarding this.
Princy
Top achievements
Rank 2
 answered on 30 Jul 2010
2 answers
85 views
When using the Advanced Form, the controls for selecting the time and dates (and the All Day checkbox also) appear outside of the window (to the right), and are only accessible through the use of the Tab key. This occurs in both the Modal and the Inline forms. All other controls appear inside the window, including the Reminder dropdown and the Recurrence controls when checking the Recurrence checkbox.

Has anyone else experienced this "phenomenon"? And could anyone suggest a solution, or a starting point for a solution?

Thanks

Chris
Top achievements
Rank 2
 answered on 29 Jul 2010
7 answers
216 views
I have 2 editors. The first has Design and Preview modes enabled. When I switch from Design to Preview mode the toolbars are disabled. This is a good thing.

On the other editor, I only have Preview mode enabled and the toolbars here are enabled. Why is this different from the other editor?

-- 
Stuart
Stuart Hemming
Top achievements
Rank 2
 answered on 29 Jul 2010
3 answers
80 views
Set a page like this ...

  <head runat="server">
    <title></title>
  </head>
  <body>
    <form id="form1"
          runat="server">
      <telerik:radscriptmanager runat="server"></telerik:radscriptmanager>
      <br/>
      <br/>
      <br/>
      <br/>
      <br/>
      <br/>
      <div>
        <telerik:RadComboBox ID="RadComboBox1"
                             runat="server">
          <Items>
            <telerik:RadComboBoxItem Value="1"
                                     Text="Monday"/>
            <telerik:RadComboBoxItem Value="2"
                                     Text="Tuesday"/>
            <telerik:RadComboBoxItem Value="4"
                                     Text="Wednesday"/>
            <telerik:RadComboBoxItem Value="8"
                                     Text="Thurday"/>
            <telerik:RadComboBoxItem Value="16"
                                     Text="Friday"/>
            <telerik:RadComboBoxItem Value="32"
                                     Text="Saturday"/>
            <telerik:RadComboBoxItem Value="64"
                                     Text="Sunday"/>
          </Items>
        </telerik:RadComboBox>
        <telerik:RadEditor ID="RadEditor1"
                           runat="server"
                           EnableResize="false"
                           ContentAreaMode="Div"
                           EditModes="Design"
                           Height="100px"
                           NewLineBr="false"
                           ToolbarMode="ShowOnFocus"
                           ToolsFile="~/App_Data/Editor/ToolsFileLimited.xml"
                           Width="256px">
        </telerik:RadEditor>
 
      </div>
    </form>
  </body>
</html>

Run it, get the focus on the combobox then tab to move focus to the editor.

I expected the toolbar to display but it doesn't unless you actually click inside the editor. Surely that's not right.

-- 
Stuart
Stuart Hemming
Top achievements
Rank 2
 answered on 29 Jul 2010
7 answers
191 views
Hi,
i have a RadTreeView inside a radgrid FormTemplate and it is messing up my page scroll bar.
i have already put the height and it is working fine except the page scroll.

<telerik:RadTreeView ID="TreeView" CheckBoxes="True" runat="server" DataFieldID="Id" Height="400px" DataFieldParentID="ParentId" DataTextField="Name" DataValueField="Id" OnNodeDataBound="TreeView_NodeDataBound" OnClientNodeClicking="OnClientNodeClickingHandler">
</telerik:RadTreeView>

i have attached a print and for confidentiality purposes i have painted all the text but you can see the scroll on the page an on the tree.
Nikolay Tsenkov
Telerik team
 answered on 29 Jul 2010
3 answers
331 views
I have radgrid using a form template edit form. I have added a button in the Form Template Edit Form, but I can not get the OnClick event of the button to fire. I am binding the data grid dynamically in code on Page_Load (even on PostBack). The button in question is btnUpdateMedicalRecord

<telerik:RadGrid runat="server" ID="rgMedicalRecords"  AllowPaging="true" AllowSorting="true" Skin="WebBlue">
       <ClientSettings>
           <Selecting AllowRowSelect="true" />
       </ClientSettings>
       <MasterTableView AutoGenerateColumns="false" 
           DataKeyNames="MedicalRecordID" >
           <Columns
               <telerik:GridEditCommandColumn UniqueName="EditCommandColumn"></telerik:GridEditCommandColumn>
               <telerik:GridBoundColumn DataField="MedicalRecordID" Visible="false" />
               <telerik:GridBoundColumn DataField="MedicalRecordDispositionTypeID" Visible="false" />                
               <telerik:GridBoundColumn DataField="MedicalRecordDispositionTypeDescription" HeaderText = "Disposition" />  
               <telerik:GridBoundColumn DataField="ReviewInquiryStatusTypeID" Visible="false" />   
               <telerik:GridBoundColumn DataField="ReviewInquiryStatusTypeDescription" HeaderText = "Status" /> 
               <telerik:GridDateTimeColumn DataField="ServiceBeginDate" HeaderText="Begin DOS"  DataFormatString="{0:MM/dd/yyyy}" AllowFiltering="false" />                                
               <telerik:GridDateTimeColumn DataField="ServiceEndDate" HeaderText="End DOS"  DataFormatString="{0:MM/dd/yyyy}" AllowFiltering="false" /> 
           </Columns>
           <EditFormSettings EditFormType="Template">
               <FormTemplate>
                       <asp:Table ID="tblEditControl" runat="server" Width="100%" BorderColor="Black" BorderWidth="1">
                           <asp:TableRow>
                               <asp:TableCell Width="20%" VerticalAlign="Top">
                                       <span class="smallboldtext">Begin DOS:</span>
                                       <telerik:RadDatePicker ID="dteServiceBeginDate" runat="server" Width="100" SelectedDate='<%# Bind( "ServiceBeginDate" ) %>'></telerik:RadDatePicker>                                                                 
                               </asp:TableCell>
                               <asp:TableCell Width="20%" VerticalAlign="Top">
                                       <span class="smallboldtext">End DOS:</span>
                                       <telerik:RadDatePicker ID="dteServiceEndDate" runat="server" Width="100" SelectedDate='<%# Bind( "ServiceEndDate" ) %>'></telerik:RadDatePicker>                                                           
                               </asp:TableCell>
                               <asp:TableCell Width="35%" VerticalAlign="Top">
                                       <span class="smallboldtext">Status:</span>
                                       <telerik:RadComboBox ID="rcbStatus" runat="server" DataSource='<%# loadRcbReviewInquiryStatusTypes() %>'
                                       DataTextField="Description" DataValueField="ReviewInquiryStatusTypeID"
                                       SelectedValue='<%# Bind("ReviewInquiryStatusTypeID") %>' Width="250">
                                       </telerik:RadComboBox>                           
                               </asp:TableCell>
                               <asp:TableCell Width="25%" VerticalAlign="Top" HorizontalAlign="Center">
                                   <asp:Button runat="server" ID="btnUpdateMedicalRecord" Text="Update" Width="150"  OnClick="btnUpdateMedicalRecord_Click"  />
                               </asp:TableCell>
                           </asp:TableRow>
                       </asp:Table>   
               </FormTemplate>                                            
           </EditFormSettings>
       </MasterTableView>                
   </telerik:RadGrid>
Matt Tapia
Top achievements
Rank 1
 answered on 29 Jul 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?