I am trying to update a single GridDropDown column in a RadGrid
the Edit Button is an Image Button, with different images depending on the value in the data selected in the dropdown
the Cancel button appears but not the Update - should I explicitly put something in the update button? both buttons appear if I change it to Popup but that has its own problems
the XML for the data source for the dropdown
<?xml version="1.0" encoding="utf-8" ?><root> <CareerStage Text="None" Value="0" /> <CareerStage Text="Developmental" Value="1" /> <CareerStage Text="Improving" Value="2" /> <CareerStage Text="At peak" Value="3" /> <CareerStage Text="Declining" Value="4" /> <CareerStage Text="Replace" Value="5" /></root>(there's some drag and drop which is working)
protected void rgRoster_UpdateCommand(object source, GridCommandEventArgs e) { GridEditFormItem theItemEdited; TableCell tCell; RadComboBox rcbCareerStage; bool GoodCall; int PlayerID, VirtualTeamID, CareerStage;.....}the Grid
<telerik:RadGrid ID="rgRoster" AutoGenerateColumns="False" OnNeedDataSource="rgRoster_NeedDataSource" OnItemCreated="rgRoster_ItemCreated" OnItemDataBound="rgRoster_ItemDataBound" OnEditCommand="rgRoster_EditCommand" OnUpdateCommand="rgRoster_UpdateCommand" Width="100%" runat="server" OnRowDrop="rgRoster_RowDrop" > <GroupingSettings CollapseAllTooltip="Collapse all groups" /> <MasterTableView DataKeyNames="id" EditMode="InPlace" > <EditFormSettings> <EditColumn UniqueName="CareerStageImage" ButtonType="ImageButton" > </EditColumn> <PopUpSettings /> </EditFormSettings> <GroupByExpressions> <telerik:GridGroupByExpression> <SelectFields> <telerik:GridGroupByField FieldName="positionCategoryCode" /> <telerik:GridGroupByField FieldName="positionCategory" /> </SelectFields> <GroupByFields> <telerik:GridGroupByField FieldName="positionCategoryCode" SortOrder="Ascending" /> </GroupByFields> </telerik:GridGroupByExpression> <telerik:GridGroupByExpression> <SelectFields> <telerik:GridGroupByField FieldName="positionSubCategoryCode" /> <telerik:GridGroupByField FieldName="positionSubCategory" /> </SelectFields> <GroupByFields> <telerik:GridGroupByField FieldName="positionSubCategoryCode" /> </GroupByFields> </telerik:GridGroupByExpression> </GroupByExpressions> <RowIndicatorColumn Visible="False"> </RowIndicatorColumn> <ExpandCollapseColumn Created="True"> </ExpandCollapseColumn> <Columns> <telerik:GridBoundColumn UniqueName="id" DataField="id" Visible="false" ReadOnly="true" /> <telerik:GridTemplateColumn UniqueName="hiddenCareerStage" Visible="false" ReadOnly="true" > <ItemTemplate> <asp:HiddenField ID="hdnCareerStage" Value='<%#DataBinder.Eval(Container.DataItem, "careerStage")%>' runat="server" /> </ItemTemplate> </telerik:GridTemplateColumn> <telerik:GridNumericColumn UniqueName="Depth" DataField="positionDepth" DecimalDigits="0" HeaderStyle-Width="20px" HeaderText="DPTH" ReadOnly="true"> </telerik:GridNumericColumn> <telerik:GridTemplateColumn UniqueName="role" HeaderText="ROLE" ReadOnly="true"> <HeaderStyle Width="42px" /> <ItemTemplate> <telerik:RadLabel ID="rlbRole" Text='<%#DataBinder.Eval(Container.DataItem, "role")%>' runat="server" /> </ItemTemplate> </telerik:GridTemplateColumn> <telerik:GridBoundColumn DataField="nfl" HeaderStyle-Width="36px" HeaderText="NFL" ReadOnly="true"> </telerik:GridBoundColumn> <telerik:GridTemplateColumn> <HeaderStyle Width="96px" /> <ItemTemplate> <asp:HyperLink ID="hlName" Text='<%#DataBinder.Eval(Container.DataItem, "name")%>' runat="server" /> </ItemTemplate> </telerik:GridTemplateColumn> <telerik:GridBoundColumn DataField="age" HeaderStyle-Width="36px" HeaderText="AGE" ReadOnly="true"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="exp" HeaderStyle-Width="36px" HeaderText="EXP" ReadOnly="true"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="college" HeaderStyle-Width="96px" HeaderText="COLLEGE" ReadOnly="true"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="acquired" HeaderStyle-Width="72px" HeaderText="HOW ACQUIRED" ReadOnly="true"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="rpi" HeaderStyle-Width="32px" HeaderText="RPI" ReadOnly="true"> </telerik:GridBoundColumn> <telerik:GridNumericColumn DataField="capcost" DataFormatString="{0:C}" DataType="System.Decimal" HeaderStyle-Width="32px" HeaderText="CAP COST" ReadOnly="true"> </telerik:GridNumericColumn> <telerik:GridDropDownColumn UniqueName="CareerStage" DropDownControlType="RadComboBox" HeaderStyle-Width="42px" HeaderText="CAREER STAGE" DataField="careerStage" DataSourceID="xdsCareerStage" ListTextField="Text" ListValueField="Value" AutoPostBackOnFilter="true" /> <telerik:GridEditCommandColumn UniqueName="CareerStageImage" ButtonType="ImageButton" EditImageUrl="../Images/CareerStage/Career_0None.png" HeaderText="Click to Update" HeaderStyle-Width="96px" /> <telerik:GridBoundColumn DataField="notes" HeaderStyle-Width="160px" HeaderText="NOTES" ReadOnly="true" > </telerik:GridBoundColumn> </Columns> </MasterTableView> <ClientSettings AllowRowsDragDrop="true"> <Selecting AllowRowSelect="true" EnableDragToSelectRows="false" /> <ClientEvents OnRowDropped="RowDropped" /> </ClientSettings></telerik:RadGrid>
When I publish my latest version ofsds a web form 2010 application that uses a recent Telerik radeditor tool to the production app server, my application cannot find a Televvfrik object called 'Windows7'sdsdgfdfd. However when I deployed the latest version of the application to a test app server, there was no problem.
The difference between those two versions of the web form 2010 application, I was using my old Windows 7 computer that had 4 or 5 versions of the Telerik tool installed on that computer. Now I have a new windows 10 computer and I only installed latest version of the Telerik tool on that new computer.
When I compare the Telerik references of the web.config file generated from my new computer versus the web.config file generated previously from my old computer, there are a lot less Telerik references.
Thus I am wondering if I need all the previous versions of the Telerik installed of the radeditor placed on my new computer placed on my new computer in sequential order? If so, I probably should uninstall the current version of the Telerik tool on my new computer and reinstall that version after the other versions of the telerik tool have been installed. If not, should I just leave the current version of the Telerik tool on my computer and install the other missing versions of the Telerik tool?
If my suggestion would not work, can you tell me what you suggest I do to solve my problem?
<telerik:RadEditor ID="RadEditor1" runat="server" content='<%# Bind("cText") %>' Width="100%" AutoResizeHeight="True"> <ImageManager AllowMultipleSelection="true" EnableThumbnailLinking="true" ViewPaths="~/Images" UploadPaths="~/Images DeletePaths="~/Images" SearchPatterns="*.jpeg,*.jpg,*.png,*.gif,*.bmp" EnableAsyncUpload="true" /> <Modules> <telerik:EditorModule Enabled="true" /> </Modules></telerik:RadEditor>
I was trying the cloud-upload demo for Azure and used the filename エバの画像.png, this hung, the file so only 42k, it works fine with with english filenames.
Can the cloud-upload work for Double-Byte Languages such as Japanese or Korean.
I am working on a laptop maintaining web applications for 2 different clients
they both purchased Telerik - Web UI for Ajax - yay
unfortunately, different versions - the main client just bought it but the other client has the version from 2013
I need to write a simple CRUD page and WOULD LOVE TO USE A RADGRID not go back to Microsoft's GridView (ugh!)
how do I configure the web config to ignore the version in the GAC?



Hello,
I'm trying to export the grid in excel format with the code below and it's not being processed, I need something else installed, I do not have Excel, but LibreOffice installed on the machine.
Protected Sub ImageButton1_Click(sender As Object, e As ImageClickEventArgs)
RadGrid1.ExportSettings.Excel.Format = DirectCast([Enum].Parse(GetType(GridExcelExportFormat), "Xlsx"), GridExcelExportFormat)
RadGrid1.ExportSettings.IgnorePaging = False
RadGrid1.ExportSettings.ExportOnlyData = True
RadGrid1.ExportSettings.OpenInNewWindow = True
RadGrid1.MasterTableView.ExportToExcel()
End Sub
Thank you,
Automatically translated
