This is odd, I am using the latest SP1 libraries and have followed all the steps and only see this in the WPF application. The Activities column should look like a drop-down combo box when the green checkbox is showing. Obviously, I am missing something, but not sure what it is. I hope I can look at it fresh in the morning and figure it out, but if there are tips, please let me know.
My XAML has this definition for the column:
<telerik:GridViewComboBoxColumn Header="Activities"
Width = "271"
DataMemberBinding = "{Binding Description}"
SelectedValueMemberPath = "SicCodeValue"
DisplayMemberPath = "SicCodeDescription" IsLightweightModeEnabled="true" IsComboBoxEditable="True">
</telerik:GridViewComboBoxColumn>
and I set up my itemssource via code using the following line on data load:
(this.myList.Columns[2] as GridViewComboBoxColumn).ItemsSource = (ViewModel as MyViewModel).SicCodes;
Hello!
Do you guys have any tips on how to design buttons so that they would look good after translation into foreign languages, like German or Korean? After translation text can be too long

Is there a way to properly set the localization culture for the month and year with month header when it is showing the month and date?
I have set the culture property and the days of the week are showing the correct localization based on the culture settings however the header is not
Attached is a screw grab showing the issue. The month and year should actually be Ago 2021 (localization is for it-IT)
<telerik:RadGrid ID="dtgUses" runat="server" AllowSorting="true" AllowMultiRowEdit="true" AllowFilteringByColumn="true" PageSize="5" AutoGenerateColumns="false" ShowFooter="true" EnableHeaderContextMenu="true" Width="96%" EnableHeaderContextFilterMenu="true" OnPreRender="dtgUses_PreRender" OnNeedDataSource="dtgUses_NeedDataSource" OnItemDataBound="dtgUses_ItemDataBound" OnItemCommand="dtgUses_ItemCommand" AllowCustomPaging="true"> <ClientSettings AllowGroupExpandCollapse="true"> <Scrolling AllowScroll="true" ScrollHeight="125px" UseStaticHeaders="true" /> </ClientSettings> <PagerStyle Mode="NextPrevAndNumeric" /> <MasterTableView DataKeyNames="Id" GroupLoadMode="Server" AllowNaturalSort="true" ShowGroupFooter="true" ItemStyle-Wrap="false" CommandItemDisplay="Top" CommandItemSettings-ShowRefreshButton="False" EditMode="InPlace" IsFilterItemExpanded="false" FooterStyle-Wrap="false" TableLayout="Fixed"> <Columns> <telerik:GridTemplateColumn UniqueName="Use" HeaderText="Occupancy" HeaderButtonType="TextButton" HeaderStyle-HorizontalAlign="Left" HeaderStyle-Width="125px" SortExpression="UseCodeDescr"> <ItemTemplate> <%# Eval("UseCodeDescr")%> </ItemTemplate> <EditItemTemplate> <telerik:RadComboBox runat="server" ID="cbUseCode" DataTextField="Descr" DataValueField="Id" Width="100%" /> </EditItemTemplate> </telerik:GridTemplateColumn> <telerik:GridTemplateColumn UniqueName="Quality" HeaderText="Grade" HeaderButtonType="TextButton" HeaderStyle-HorizontalAlign="Left" HeaderStyle-Width="70px" SortExpression="QualityShortDescr"> <ItemTemplate> <%# Eval("QualityShortDescr")%> </ItemTemplate> <EditItemTemplate> <telerik:RadComboBox runat="server" ID="cbQuality" DataTextField="Descr" DataValueField="Id" Width="100%" /> </EditItemTemplate> </telerik:GridTemplateColumn> <telerik:GridTemplateColumn UniqueName="Condition" HeaderText="Cond" HeaderButtonType="TextButton" HeaderStyle-HorizontalAlign="Left" HeaderStyle-Width="70px" SortExpression="ConditionShortDescr"> <ItemTemplate> <%# Eval("ConditionShortDescr")%> </ItemTemplate> <EditItemTemplate> <telerik:RadComboBox runat="server" ID="cbCondition" DataTextField="Descr" DataValueField="Id" Width="100%" /> </EditItemTemplate> </telerik:GridTemplateColumn> <telerik:GridBoundColumn DataField="EffectiveYearBuilt" HeaderButtonType="TextButton" HeaderStyle-HorizontalAlign="Right" HeaderText="Eff. Year" HeaderStyle-Width="50px" SortExpression="EffectiveYearBuilt" UniqueName="EffectiveYearBuilt" DataType="System.Int16"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="YearRemodeled" HeaderButtonType="TextButton" HeaderStyle-HorizontalAlign="Right" HeaderText="Remodel Year" HeaderStyle-Width="75px" SortExpression="YearRemodeled" UniqueName="YearRemodeled" DataType="System.Int16" FooterText="Total Area:" FooterStyle-HorizontalAlign="Right"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="ActualArea" HeaderButtonType="TextButton" ItemStyle-HorizontalAlign="Right" HeaderStyle-HorizontalAlign="Right" HeaderText="Actual Area" HeaderStyle-Width="50px" ReadOnly="true" SortExpression="ActualArea" UniqueName="ActualArea" Aggregate="Sum" FooterAggregateFormatString="{0:G}" DataType="System.Decimal" FooterStyle-HorizontalAlign="Right"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="Percent" HeaderButtonType="TextButton" DataType="System.Decimal" HeaderStyle-HorizontalAlign="Right" HeaderStyle-Width="50px" ItemStyle-HorizontalAlign="Right" HeaderText="% of Section" SortExpression="Percent" UniqueName="PercentOfSection" DataFormatString="{0:P}" ReadOnly="true"> </telerik:GridBoundColumn> <telerik:GridButtonColumn UniqueName="Delete" CommandName="Delete" ButtonType="ImageButton" HeaderStyle-Width="20px" ImageUrl="~/skins/GovernBlue/Telerik/Grid/Delete.gif" ConfirmText="Are you sure you want to delete this use?" ItemStyle-HorizontalAlign="Center" ShowInEditForm="true" /> </Columns> </MasterTableView> </telerik:RadGrid>Hello,
In the day view, I want to show in the same day (column) an appointment that overlaps 2 days.
Example: The first shift start "day 1" at 20:00 and stop "day 2" at 04:00. but I want to show it in a single day (column)
I did try to put those values: DayStartTime at 20:00 and DayEndTime at 04:00, but it does not work.
Is there any solution possible to achieve that?
Regards,
Maxime
Hi.
We are changing the computer where we develop and we want to transfer our DevCraft License from the old computer to the new one. Can you help us with this?
Also we need the link to download the correct versions of telerik components
Telerik.reporting: 12.0.18.416
Telerik.reportviewer: 12.0.18.416
Telerik.web.ui: 2015.2.826.40
Telerik.web.ui.skins: 2015.2.826.40
Telerik.web.device.detector: 2015.2.826.40
Thanks!!!
I have a radgrid with a Master and one Details table. When scrolling, only the Master data scrolls. How can I have both scroll at same time from the single horizontal scroll bar? Not sure if it makes a difference but I am expanding and collapsing the details data client-side with the OnRowClick event and I am using frozen columns.
Thanks!