Unplanned
Last Updated: 18 Sep 2024 15:05 by ADMIN

For RadGrid, after setting EnableKeyboardShortcuts to false, I find the Up/Down keys are also disabled. However, according to your online document below, the Up/Down keys shouldn't be disabled in this case.

According the Keyboard Support online demo, these buttons should not get disabled:

"The grid also features an additional property ClientSettings -> KeyboardNavigationSettings -> EnableKeyboardShortcuts which when set to false will disable all keyboard navigation shortcuts except for the Up/Down and Page Up/Page Down keys."

Unplanned
Last Updated: 13 Aug 2024 13:59 by ADMIN
Created by: akshay
Comments: 2
Category: CloudUpload
Type: Feature Request
0

We would like to request updating the Azure library for uploading files to Azure Blob Storage.

The WindowsAzure.Storage library has been deprecated and is no longer maintained.

Unplanned
Last Updated: 09 Aug 2024 09:12 by ADMIN

.hasChanges() results in records flagged for Delete to not actually get deleted when .saveChanges() executes.

I found the same behaviour on a LiveDemo example that checks .hasChanges(): Grid - Binding to Telerik ClientDataSource

Steps to reproduce:

  • Make any change to the first record, such as modifying the Contact Name.
  • On the second record, Click the "x" under the DELETE column to mark it for delete.
  • Click any column heading to sort.  (This calls a UserAction event handler that calls .hasChanges())
  • Choose to Cancel at the popup prompt.
  • Click "Save changes".
  • Monitor the browser console, you will find that webservice UpdateCustomers is called,  but DeleteCustomers is not.

 

Unplanned
Last Updated: 09 Aug 2024 07:27 by ADMIN
Created by: Melville
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
I'd like to have a built-in feature for RadTreeList Export to Excel grouping. My data has a hierarchy, and I want to be able to export it to excel with a collapsible/expandable row functionality based on the hierarchy/level.
Unplanned
Last Updated: 07 Aug 2024 14:21 by ADMIN
Scheduled for 2024 Q4
The panelbar item you click on selects the first root item of the panelbar, then changes to the actual selected item. This can be observed in the Custom Attributes demo.
Unplanned
Last Updated: 07 Aug 2024 06:32 by Avishai
Created by: Avishai
Comments: 0
Category: DatePicker
Type: Bug Report
0

Using the set_value() method of the DatePicker's Input, set "2024-05-08" (the date format is dd/MM/yyyy), the month and day are misplaced and the control gets the wrong date of 05/08/2024.

When the day is larger than 12, the correct date is received. For example,  '2024-05-14' will update the control correctly and we see the control with 14/05/2024.

 

Unplanned
Last Updated: 02 Aug 2024 09:03 by ADMIN
Created by: Brandon
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
1
I see that there are different template types for crud operations in a rad data form, but specifically what im looking to replace is devexpress control ASPxFormLayout. in this control we can nest other controls, forms, and objects. We can also create a tabbed layout where one control has multiple tabs for data instead of filling up page space (length), it just combines all data tables, and separates them in a tabbed view. I think a form layout for raddataform would be useful to many users.
 <%-- <dx:ASPxFormLayout ID="layout" runat="server"  Width="100%"  Visible="true" Theme="ios"  >
         <Items>
             <dx:TabbedLayoutGroup Caption="tabbed group"    Width="100%">
                 <Items>
                     <dx:LayoutGroup Caption="Location Information">
                         <Items>
                               <dx:LayoutItem Caption="" FieldName="">
                                 <LayoutItemNestedControlCollection>
                                     <dx:LayoutItemNestedControlContainer ID="LayoutItemNestedControlContainer1" runat="server">
                                          

                                      

                                         <dx:ASPxFormLayout ID="ASPxFormLayout1" runat="server" 
                                                   DataSourceID="datasourceThisLocation" ColumnCount="2"  Theme="Aqua">
                                             <Items>
                                                 
                                                 <dx:LayoutItem FieldName="company" ColSpan="1" Caption="location">
                                                     <LayoutItemNestedControlCollection>
                                                         <dx:LayoutItemNestedControlContainer runat="server">
                                                             <dx:ASPxTextBox runat="server" Width="310px" ID="ASPxFormLayout1_E2"></dx:ASPxTextBox>
                                                         </dx:LayoutItemNestedControlContainer>
                                                     </LayoutItemNestedControlCollection>
                                                 </dx:LayoutItem>
                                                 <dx:LayoutItem FieldName="phone" ColSpan="1">
                                                     <LayoutItemNestedControlCollection>
                                                         <dx:LayoutItemNestedControlContainer runat="server">
                                                             <dx:ASPxTextBox runat="server" Width="310px" ID="ASPxFormLayout1_E3"></dx:ASPxTextBox>
                                                         </dx:LayoutItemNestedControlContainer>
                                                     </LayoutItemNestedControlCollection>
                                                 </dx:LayoutItem>
                                                 <dx:LayoutItem FieldName="fax" ColSpan="1">
                                                     <LayoutItemNestedControlCollection>
                                                         <dx:LayoutItemNestedControlContainer runat="server">
                                                             <dx:ASPxTextBox runat="server" Width="310px" ID="ASPxFormLayout1_E4"></dx:ASPxTextBox>
                                                         </dx:LayoutItemNestedControlContainer>
                                                     </LayoutItemNestedControlCollection>
                                                 </dx:LayoutItem>
                                                 <dx:LayoutItem FieldName="contractStatus"  Caption="contract status"  ColSpan="1">
                                                     <LayoutItemNestedControlCollection>
                                                         <dx:LayoutItemNestedControlContainer runat="server">
                                                             <dx:ASPxTextBox runat="server" Width="310px" ID="ASPxFormLayout1_E5"></dx:ASPxTextBox>
                                                         </dx:LayoutItemNestedControlContainer>
                                                     </LayoutItemNestedControlCollection>
                                                 </dx:LayoutItem>
                                                 <dx:LayoutItem FieldName="timeZone" ColSpan="1" Caption="time zone">
                                                     <LayoutItemNestedControlCollection>
                                                         <dx:LayoutItemNestedControlContainer runat="server">
                                                             <dx:ASPxTextBox runat="server" Width="310px" ID="ASPxFormLayout1_E6"></dx:ASPxTextBox>
                                                         </dx:LayoutItemNestedControlContainer>
                                                     </LayoutItemNestedControlCollection>
                                                 </dx:LayoutItem>
                                                 <dx:LayoutItem FieldName="primaryContact" ColSpan="1" Caption="prinary contact">
                                                     <LayoutItemNestedControlCollection>
                                                         <dx:LayoutItemNestedControlContainer runat="server">
                                                             <dx:ASPxTextBox runat="server" Width="310px" ID="ASPxFormLayout1_E7"></dx:ASPxTextBox>
                                                         </dx:LayoutItemNestedControlContainer>
                                                     </LayoutItemNestedControlCollection>
                                                 </dx:LayoutItem>
                                                  <dx:LayoutItem FieldName="street" ColSpan="1" Caption="address">
                                                     <LayoutItemNestedControlCollection>
                                                         <dx:LayoutItemNestedControlContainer runat="server">
                                                             <dx:ASPxTextBox runat="server" Width="310px" ID="ASPxFormLayout1_E10"></dx:ASPxTextBox>
                                                         </dx:LayoutItemNestedControlContainer>
                                                     </LayoutItemNestedControlCollection>
                                                 </dx:LayoutItem>
                                                 <dx:LayoutItem FieldName="street2" ColSpan="1" Caption="address">
                                                     <LayoutItemNestedControlCollection>
                                                         <dx:LayoutItemNestedControlContainer runat="server">
                                                             <dx:ASPxTextBox runat="server" Width="310px" ID="ASPxFormLayout1_E11"></dx:ASPxTextBox>
                                                         </dx:LayoutItemNestedControlContainer>
                                                     </LayoutItemNestedControlCollection>
                                                 </dx:LayoutItem>
                                                 <dx:LayoutItem FieldName="city" ColSpan="1">
                                                     <LayoutItemNestedControlCollection>
                                                         <dx:LayoutItemNestedControlContainer runat="server">
                                                             <dx:ASPxTextBox runat="server" Width="310px" ID="ASPxFormLayout1_E12"></dx:ASPxTextBox>
                                                         </dx:LayoutItemNestedControlContainer>
                                                     </LayoutItemNestedControlCollection>
                                                 </dx:LayoutItem>
                                                 <dx:LayoutItem FieldName="state" ColSpan="1">
                                                     <LayoutItemNestedControlCollection>
                                                         <dx:LayoutItemNestedControlContainer runat="server">
                                                             <dx:ASPxTextBox runat="server" Width="310px" ID="ASPxFormLayout1_E13"></dx:ASPxTextBox>
                                                         </dx:LayoutItemNestedControlContainer>
                                                     </LayoutItemNestedControlCollection>
                                                 </dx:LayoutItem>
                                                 <dx:LayoutItem FieldName="zip" ColSpan="1">
                                                     <LayoutItemNestedControlCollection>
                                                         <dx:LayoutItemNestedControlContainer runat="server">
                                                             <dx:ASPxTextBox runat="server" Width="310px" ID="ASPxFormLayout1_E14"></dx:ASPxTextBox>
                                                         </dx:LayoutItemNestedControlContainer>
                                                     </LayoutItemNestedControlCollection>
                                                 </dx:LayoutItem>
                                                   <dx:LayoutItem FieldName="email" ColSpan="1">
                                                     <LayoutItemNestedControlCollection>
                                                         <dx:LayoutItemNestedControlContainer runat="server">
                                                             <dx:ASPxTextBox runat="server" Width="310px" ID="ASPxFormLayout1_E16"></dx:ASPxTextBox>
                                                         </dx:LayoutItemNestedControlContainer>
                                                     </LayoutItemNestedControlCollection>
                                                 </dx:LayoutItem>
                                                 
                                             </Items>
                                         </dx:ASPxFormLayout>--%>


                	Describe service request:
    <telerik:RadTextBox ID="srevicetroubles" runat="server" Width="350px"></telerik:RadTextBox>
               <%--<dx:ASPxTextBox ID="srevicetroubles" runat="server" Width="350px" Theme="Aqua" ></dx:ASPxTextBox>--%>
            <telerik:RadButton ID="ASPxButton2" runat="server" Text="click here send request for service at this location"></telerik:RadButton>
			<%--<dx:ASPxButton ID="ASPxButton2" runat="server" Text="click here send request for service at this location" Theme="Aqua"> </dx:ASPxButton>--%>
               <asp:Label ID="Label1" runat="server" Text="" Visible="false"></asp:Label>
                

                                   
       
                              
                                     <%-- </dx:LayoutItemNestedControlContainer>
                                 </LayoutItemNestedControlCollection>
                             </dx:LayoutItem>

                             

                       </Items>
                   </dx:LayoutGroup>--%>



                      <%-- <dx:LayoutGroup Caption="Notes and Communication">
                         <Items>
                               <dx:LayoutItem Caption="" FieldName="">
                                 <LayoutItemNestedControlCollection>
                                     <dx:LayoutItemNestedControlContainer ID="LayoutItemNestedControlContainer3" runat="server">
                                          
                                         <dx:ASPxGridView ID="ASPxGridView1" runat="server" DataSourceID="myStoreNotes"
                                             EnableTheming="True" Theme="Moderno" KeyFieldName="id">

                                             <Columns>


                                                 <dx:GridViewCommandColumn VisibleIndex="0" ShowNewButton="True" ShowUpdateButton="True" ShowClearFilterButton="True" />
                                                 <dx:GridViewDataColumn FieldName="DateAdded" Caption="Date Added" VisibleIndex="1">

                                                     <EditFormSettings VisibleIndex="1" Visible="False" />
                                                 </dx:GridViewDataColumn>

                                                 <dx:GridViewDataColumn FieldName="AddedBy" Caption="Added By" VisibleIndex="2">
                                                     <EditFormSettings VisibleIndex="2" Visible="False" />
                                                 </dx:GridViewDataColumn>
                                                 <dx:GridViewDataTextColumn FieldName="Note" Caption="Note" VisibleIndex="3">
                                                     <PropertiesTextEdit EncodeHtml="true"></PropertiesTextEdit>


                                                 </dx:GridViewDataTextColumn>


                                                 <dx:GridViewDataColumn FieldName="Ack" Caption="Acknowledged" VisibleIndex="4">
                                                     <EditFormSettings VisibleIndex="4" Visible="False" />
                                                 </dx:GridViewDataColumn>
                                                 <dx:GridViewDataColumn FieldName="ackBy" Caption="Acknowledged By" VisibleIndex="5">
                                                     <EditFormSettings VisibleIndex="5" Visible="False" />
                                                 </dx:GridViewDataColumn>
                                                 <dx:GridViewDataColumn FieldName="AckDate" Caption="Acknowledged Date" VisibleIndex="6">
                                                     <EditFormSettings VisibleIndex="6" Visible="False" />
                                                 </dx:GridViewDataColumn>

                                             </Columns>


                                             <Settings ShowFilterRow="True" />
                                             <SettingsCommandButton>
                                                 <NewButton Text="Add Post-It Note" />
                                                 <UpdateButton Text="Save" />
                                             </SettingsCommandButton>
                                         </dx:ASPxGridView>
                                   
       
                              
                                      </dx:LayoutItemNestedControlContainer>
                                 </LayoutItemNestedControlCollection>
                             </dx:LayoutItem>

                             

                       </Items>
                   </dx:LayoutGroup>
                 


                <dx:LayoutGroup Caption="Open Work Orders">
                         <Items>
                             
                             <dx:LayoutItem Caption="" FieldName="">
                                 <LayoutItemNestedControlCollection>
                                     <dx:LayoutItemNestedControlContainer ID="LayoutItemNestedControlContainer7" runat="server">
                                              
                                         
                                         
                                         <dx:ASPxGridView ID="ASPxGridView2" runat="server" AutoGenerateColumns="true" 
                                               Visible="true" Theme="Moderno" Width="100%" 
                                                DataSourceID="dataSourceOpenTickets" KeyFieldName ="REQUESTNUMBER">



                                             <Columns>
                                                   <dx:GridViewDataHyperLinkColumn Caption="WO #" FieldName="REQUESTNUMBER" 
                                                   VisibleIndex="10"  >
                                                   <PropertiesHyperLinkEdit NavigateUrlFormatString="/orders/edit.aspx?ID={0}" 
                                                        TextField="REQUESTNUMBER">
                                                   </PropertiesHyperLinkEdit>
                                               </dx:GridViewDataHyperLinkColumn>


                                               
                                                 <dx:GridViewDataColumn Caption="Service Facility" FieldName="branch" VisibleIndex="30">
                                                 </dx:GridViewDataColumn>

                                                 <dx:GridViewDataColumn Caption="My PO" FieldName="PO" VisibleIndex="40">
                                                 </dx:GridViewDataColumn>

                                                 <dx:GridViewDataMemoColumn Caption="Description" FieldName="DESCRIPTION" VisibleIndex="50">
                                                 </dx:GridViewDataMemoColumn>

                                                  <dx:GridViewDataColumn Caption="Type of Service" FieldName="serviceType" VisibleIndex="60">
                                                 </dx:GridViewDataColumn>



                                                 <dx:GridViewDataDateColumn Caption="Expected Completion" FieldName="ExpectedCompletionDate" VisibleIndex="80"></dx:GridViewDataDateColumn>

                                                 <dx:GridViewDataColumn Caption="Status of WO" FieldName="CurrentCustodyDisplay" VisibleIndex="90">
                                                 </dx:GridViewDataColumn>


                                             </Columns>
                                               <Templates>
                                                <DetailRow>
                                                   <iframe id="myframeDetailGridView2" runat="server" scrolling="yes" marginwidth="0" marginheight="0" frameborder="0"  
                                                           vspace="0" hspace="0" width="100%" height="650px" oninit="myframeDetailGridView2_Init"></iframe> 




                                            </DetailRow>
                                       </Templates>
                                            <Styles>
                                                 <AlternatingRow Enabled="true" />
                                                 <Header Wrap="True" />
                                                 
                                             </Styles>
                                                 <SettingsDetail ShowDetailRow="true" />
                                            <Settings ShowFilterRow="True" ShowFilterRowMenu="true" ShowGroupPanel="True" />
                                             <SettingsPager PageSize="15" />
                                             <SettingsBehavior ColumnResizeMode="Control" />
                                              <SettingsBehavior EnableRowHotTrack="true" />

                                         </dx:ASPxGridView>
                                                       
                                          
                                        

                                     </dx:LayoutItemNestedControlContainer>
                                 </LayoutItemNestedControlCollection>
                             </dx:LayoutItem>

                             
    

                       </Items>
                   </dx:LayoutGroup>

                     <dx:LayoutGroup Caption="Completed Work Oders" Visible="true">
                         <Items>
                             
                             <dx:LayoutItem Caption="" FieldName="">
                                 <LayoutItemNestedControlCollection>
                                     <dx:LayoutItemNestedControlContainer ID="LayoutItemNestedControlContainer2" runat="server">
                                          

                                              <dx:ASPxGridView ID="ASPxGridView3" runat="server" AutoGenerateColumns="true" 
                                               Visible="true" Theme="Moderno" Width="100%" 
                                                DataSourceID="dataSourceCompletedTickets" KeyFieldName ="REQUESTNUMBER">



                                             <Columns>
                                                   <dx:GridViewDataHyperLinkColumn Caption="WO #" FieldName="REQUESTNUMBER" 
                                                   VisibleIndex="10"  >
                                                   <PropertiesHyperLinkEdit NavigateUrlFormatString="/orders/edit.aspx?ID={0}" 
                                                        TextField="REQUESTNUMBER">
                                                   </PropertiesHyperLinkEdit>
                                               </dx:GridViewDataHyperLinkColumn>


                                               
                                                 <dx:GridViewDataColumn Caption="Service Facility" FieldName="branch" VisibleIndex="30">
                                                 </dx:GridViewDataColumn>

                                                 <dx:GridViewDataColumn Caption="My PO" FieldName="PO" VisibleIndex="40">
                                                 </dx:GridViewDataColumn>

                                                 <dx:GridViewDataColumn Caption="Description" FieldName="DESCRIPTION" VisibleIndex="50">
                                                 </dx:GridViewDataColumn>

                                                  <dx:GridViewDataColumn Caption="Type of Service" FieldName="serviceType" VisibleIndex="60">
                                                 </dx:GridViewDataColumn>



                                                 <dx:GridViewDataDateColumn Caption="Expected Completion" FieldName="ExpectedCompletionDate" VisibleIndex="80"></dx:GridViewDataDateColumn>

                                                 <dx:GridViewDataColumn Caption="Status of WO" FieldName="CurrentCustodyDisplay" VisibleIndex="90">
                                                 </dx:GridViewDataColumn>


                                             </Columns>

                                                    <Templates>
                                                <DetailRow>
                                                   <iframe id="myframeDetailGridView2" runat="server" scrolling="yes" marginwidth="0" marginheight="0" frameborder="0"  
                                                           vspace="0" hspace="0" width="100%" height="650px" oninit="myframeDetailGridView2_Init"></iframe> 




                                            </DetailRow>
                                       </Templates>
                                             <Styles>
                                                 <AlternatingRow Enabled="true" />
                                                 <Header Wrap="True" />
                                                 
                                             </Styles>
                                                 <SettingsDetail ShowDetailRow="true" />
                                            <Settings ShowFilterRow="True" ShowFilterRowMenu="true" ShowGroupPanel="True" />
                                             <SettingsPager PageSize="15" />
                                             <SettingsBehavior ColumnResizeMode="Control" />
                                              <SettingsBehavior EnableRowHotTrack="true" />
                                    






                                         </dx:ASPxGridView>
                                                

                                         

                                     </dx:LayoutItemNestedControlContainer>
                                 </LayoutItemNestedControlCollection>
                             </dx:LayoutItem>


                            
                             
    

                       </Items>
                   </dx:LayoutGroup>

                      <dx:LayoutGroup Caption="Onsite Equipment" Visible="true">
                         <Items>
                             
                             <dx:LayoutItem Caption="" FieldName="">
                                 <LayoutItemNestedControlCollection>
                                     <dx:LayoutItemNestedControlContainer ID="LayoutItemNestedControlContainer5" runat="server">
                                          
                                       
                                         <dx:ASPxGridView ID="ASPxGridView5" runat="server" AutoGenerateColumns="false" Visible="true"
                                             Theme="Office2003Blue" Width="100%" KeyFieldName="EquipmentID" DataSourceID="myEquipment">



                                             <Columns>


                                                 <dx:GridViewDataColumn Caption="Description" FieldName="EquipmentDescription" VisibleIndex="1">
                                                 </dx:GridViewDataColumn>

                                                 <dx:GridViewDataColumn Caption="Quantity" FieldName="EquipmentQTY" VisibleIndex="2">
                                                 </dx:GridViewDataColumn>

                                                 <dx:GridViewDataColumn Caption="Type" FieldName="EquipmentType" VisibleIndex="3">
                                                 </dx:GridViewDataColumn>


                                                 <dx:GridViewDataColumn Caption="Location" FieldName="EquipmentLocation" VisibleIndex="4">
                                                 </dx:GridViewDataColumn>

                                                 <dx:GridViewDataColumn Caption="Size" FieldName="EquipmentSize" VisibleIndex="5">
                                                 </dx:GridViewDataColumn>

                                                 <dx:GridViewDataColumn Caption="Last Inspection" FieldName="LastInspection" VisibleIndex="6">
                                                 </dx:GridViewDataColumn>

                                             </Columns>

                                             <Templates>
                                                 <DetailRow>
                                                     <dx:ASPxGridView ID="detailGrid" runat="server" DataSourceID="equipmentdetailrecord"  
                                                         Width="100%" OnBeforePerformDataSelect="detailGrid_DataSelect" AutoGenerateColumns="false">


                                                         <Templates>
                                                             <DataRow>
                                                                 <table cellpadding="2" cellspacing="1" style="border-style: none; width: 100%">
                                                                     <tr>
                                                                         <td colspan="2">
                                                                             <h1>Equipment Information</h1>
                                                                         </td>
                                                                     </tr>
                                                                     <tr>
                                                                         <td align="right">description:</td>
                                                                         <td><%# Eval("EquipmentDescription")%></td>
                                                                     </tr>

                                                                     <tr>
                                                                         <td align="right">type:</td>
                                                                         <td><%# Eval("EquipmentSize")%></td>
                                                                     </tr>
                                                                     <tr>
                                                                         <td align="right">size:</td>
                                                                         <td><%# Eval("EquipmentDescription")%></td>
                                                                     </tr>
                                                                     <tr>
                                                                         <td align="right">serial number:</td>
                                                                         <td><%# Eval("SerialNumber")%></td>
                                                                     </tr>
                                                                     <tr>
                                                                         <td align="right">location:</td>
                                                                         <td><%# Eval("EquipmentLocation")%></td>
                                                                     </tr>
                                                                     <tr>
                                                                         <td align="right">model:</td>
                                                                         <td><%# Eval("EquipmentModel")%></td>
                                                                     </tr>
                                                                     <tr>
                                                                         <td align="right">warrenty expires:</td>
                                                                         <td><%# Eval("WarrentyExpires")%></td>
                                                                     </tr>
                                                                     <tr>
                                                                         <td align="right">inspection frequency:</td>
                                                                         <td><%# Eval("Freq")%></td>
                                                                     </tr>
                                                                     <tr>
                                                                         <td align="right">last inspection:</td>
                                                                         <td><%# Eval("LastInspection")%></td>
                                                                     </tr>
                                                                     <tr>
                                                                         <td align="right">next inspection:</td>
                                                                         <td><%# Eval("EquipmentDescription")%></td>
                                                                     </tr>







                                                                     





                                                                 </table>
                                                             </DataRow>


                                                         </Templates>


                                                     </dx:ASPxGridView>
                                                 </DetailRow>
                                             </Templates>




                                             <Settings ShowFilterRow="True" ShowFilterRowMenu="true" ShowGroupPanel="True" />
                                             <SettingsPager PageSize="25" />
                                             <SettingsBehavior ColumnResizeMode="Control" />
                                             <SettingsDetail ShowDetailRow="true" ShowDetailButtons="true" />







                                         </dx:ASPxGridView>
                                         
                                             <p><dx:ASPxButton ID="btnXlsExport" runat="server" OnClick="btnXlsExport_Click"  Theme="Office2003Blue"
                                                   Text="Export to XLS">
                                               </dx:ASPxButton></p>
                                           <p>&nbsp;</p>
   
                                           <dx:ASPxGridViewExporter ID="ASPxGridViewExporter1" runat="server" GridViewID="ASPxGridView1">
                                            </dx:ASPxGridViewExporter>
                                     </dx:LayoutItemNestedControlContainer>
                                 </LayoutItemNestedControlCollection>
                             </dx:LayoutItem>


                            
                             
    

                       </Items>
                   </dx:LayoutGroup>

                      <dx:LayoutGroup Caption="Documents" Visible="true">
                         <Items>
                             
                             <dx:LayoutItem Caption="" FieldName="">
                                 <LayoutItemNestedControlCollection>
                                     <dx:LayoutItemNestedControlContainer ID="LayoutItemNestedControlContainer4" runat="server">
                                          
                                               
                                         <dx:ASPxGridView ID="ASPxGridView4" runat="server" Width="100%"
                                             Theme="Moderno" DataSourceID="dsDocuments" KeyFieldName="DocID">

                                             <Columns>
                                             
                                                  

                                                 <dx:GridViewDataTextColumn Caption="Type" FieldName="DocType" VisibleIndex="40">
                                                     <EditFormSettings VisibleIndex="40" Visible="False" Caption="name:" />
                                                 </dx:GridViewDataTextColumn>

                                                 <dx:GridViewDataTextColumn Caption="WT #" FieldName="FalconServiceNumber" VisibleIndex="45">
                                                     <EditFormSettings VisibleIndex="45" Visible="False" Caption="name:" />
                                                 </dx:GridViewDataTextColumn>

                                                 <dx:GridViewDataDateColumn Caption="Index Date" FieldName="DocDate" VisibleIndex="46">
                                                     <EditFormSettings VisibleIndex="46" Visible="False" Caption="name:" />
                                                 </dx:GridViewDataDateColumn>




                                                           <dx:GridViewDataHyperLinkColumn Caption="Document" FieldName="DocID" VisibleIndex="110">
                                                               <PropertiesHyperLinkEdit NavigateUrlFormatString="javascript:ShowDetailPopup('{0}');"   TextField="DocDescription">
                                                               </PropertiesHyperLinkEdit>
                                                               <EditFormSettings VisibleIndex="110" Visible="False" Caption="name:" />
                                                           </dx:GridViewDataHyperLinkColumn>




                                             </Columns>


                                             <Styles>
                                                 <AlternatingRow Enabled="true" />
                                                 <Header Wrap="True" />
                                                 <RowHotTrack BackColor="lightgray"></RowHotTrack>
                                             </Styles>
                                            
                                               <Settings ShowFilterRow="True" ShowFilterRowMenu="true" ShowGroupPanel="True" ShowFilterBar="Visible" />
                                             <SettingsPager PageSize="20" />
                                             <SettingsBehavior ColumnResizeMode="Control" />
                                         </dx:ASPxGridView>
                                              

 

 


                                           
                                                

                                         

                                     </dx:LayoutItemNestedControlContainer>
                                 </LayoutItemNestedControlCollection>
                             </dx:LayoutItem>


                            
                             
    

                       </Items>
                   </dx:LayoutGroup>

           </Items>

          </dx:TabbedLayoutGroup>
         </Items>
       </dx:ASPxFormLayout>

Unplanned
Last Updated: 01 Aug 2024 09:23 by Baresha

Scenario: 

1 Filter being used to filter 2 different Grids in 2 different TabStrip tabs

Unplanned
Last Updated: 31 Jul 2024 11:40 by Ronnika
Created by: Ronnika
Comments: 0
Category: Captcha
Type: Bug Report
0

An unwanted second captcha is being created and the UI does not update when the second captcha is created.  There are no other Ajax calls on the page that are causing this issue.

We have extended the BaseCaptchaCachingProvider and are now saving the image in the database. After making this change, the image is no longer grayed out; however, validation only succeeds after every three attempts. When we check the database, we notice that a second key with a different image has been added before the user clicks the submit. On the user interface, we still see the old image.

 

Unplanned
Last Updated: 31 Jul 2024 10:53 by Juraj

It would be good to add this functionality for a better customization of the Grid's newly inserted rows.

Unplanned
Last Updated: 31 Jul 2024 08:19 by ADMIN
Dear Telerik Technical Support Team,

I am reaching out to inquire about the accessibility features of the RadGrid component in C# Webforms, specifically regarding the ability to perform grouping and resizing of columns using keyboard-only navigation in compliance with WCAG 2.2 Level AA standards.

Our organization is committed to ensuring that our web applications meet the Web Content Accessibility Guidelines (WCAG) 2.2 Level AA requirements. A critical part of this compliance involves enabling users to group and sort columns in data grids using only the keyboard.

Could you please confirm if the RadGrid component supports keyboard-only grouping and resizing of columns? Additionally, we would appreciate any guidance or documentation you can provide on how to implement and test these accessibility features within the RadGrid component to ensure compliance with WCAG 2.2 Level AA.

Thank you for your assistance with this matter. We look forward to your prompt response.
Unplanned
Last Updated: 31 Jul 2024 06:39 by ADMIN
Created by: Márcio
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
Currently, the editor does not support dragging and dropping content with change control enabled. Thinking about a user who uses the editor a lot during their day, it would be an interesting feature considering the usability of the tool, in a scenario where it is important to have change control.

No Ticket 1659890 is explained a problem that occurs with our customers.
Unplanned
Last Updated: 29 Jul 2024 12:23 by ADMIN
Unplanned
Last Updated: 13 Jun 2024 14:39 by Russ
RadGrid batch editing fails when it is inside a RadWindow that is part of WindowManager
Unplanned
Last Updated: 11 Jun 2024 07:07 by ADMIN
Created by: Trent
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0

Hello,

For ASPX.NET AJAX... JQuery 1.x branch is still being utilized / embedded (even though some of the bigger issues have been manually changed by your Progress Team) does not cut it with our client base. JQuery Branch 1.x is not acceptable and has been a Severe security item for ALL PEN testing solutions for some time.

What are the Progress plans to get jQuery up to SPEC (3.7.x... etc.). We have no interest in over-riding the version of jQuery as is noted in some of the forums. This creates other issues at the Telerik component level... we do not want to deal with component issues as that is why we procure 3rd party Components in the first place.

"Security is paramount over functionality in most web applications today."

This is major, as we would have to move on to other technologies if your roadmap does not meet our needs. Q1 2025 at min.

I am certain many other users are in the same boat.

Kind Regards

 

Unplanned
Last Updated: 07 Jun 2024 12:57 by Márcio
Created by: Márcio
Comments: 0
Category: Editor
Type: Bug Report
2

Steps to reproduce in an editor with enabled track changes mechanism:

  1. Insert a table
  2. Insert a new line after it (paragraph)
  3. Insert another table
  4. Hit the Undo (or Ctrl+Z)
  5. The second table is removed (as expected) but also the first table lost its track-changes formatting (which is unexpected).
Unplanned
Last Updated: 05 Jun 2024 13:38 by ADMIN
ADMIN
Created by: Peter Milchev
Comments: 11
Category: Gantt
Type: Feature Request
6
Allow RadGantt to export the data to Excel
Unplanned
Last Updated: 30 May 2024 12:28 by ADMIN
Created by: Wayne
Comments: 7
Category: MultiColumnComboBox
Type: Bug Report
0

(copy of Selection bug MultiColumnComboBox in UI for ASP.NET AJAX | Telerik Forums)

Steps:

1. Go to Telerik Web UI MultiColumnComboBox WebForms MultiColumnComboBox Overview Demo | Telerik UI for ASP.NET AJAX

2. Enter "ha" select some records

3. Hover mouse over any of dropdown records

4. Click out of the dropdown to close it

5. Textbox keeps "ha" but the message below reads that You have selected Thomas Hardy whose ID is AROUT. They are a Sales Representative at Around the Horn however, nothing has been selected.

Is it expected ?
If it's a bug and having a long cycle to fixing bugs could you recommend any workaround?

Unplanned
Last Updated: 30 May 2024 11:59 by ADMIN
Created by: Paulo
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
2
I would like to suggest the Skeleton component to ASP.NET Ajax how there is to Blazor (https://demos.telerik.com/blazor-ui/skeleton/overview)
Unplanned
Last Updated: 08 May 2024 09:23 by ADMIN
Created by: Rodney
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0
In RadEditor when specifying WordIgnoreOptions="None", I would expect that "THe" would be flagged as a misspelling, but it is not. It appears the WordIgnoreOptions is being ignored. 
1 2 3 4 5 6