Hi, I'm trying to create a dynamic rad grid (two columns) for batch edit where one column can have different control based on a condition. Basically, it should look like this once click to edit the cell.
Value 1 Dropdown Value 2 TextBox Value 3 DatePicker Value 4 Checkbox Value 5 TextBox
Can anyone share a sample code for this?
Thank You
Hi there,
I´m using a RadNumericTextBox as a counter and I would like to show the number on the right but no between the arrows.
Right now I´m using the option: <EnabledStyle HorizontalAlign="Right" />
Thanks,
Alvaro.
Hi there,
I'm updating the number of the frozen columns of a grid in another modal form, and after I would like to see the changes in the grid after closing the modal form. Which action should I call?
Thanks,
Alvaro.
Hi there,
since it is not possible to paste images, if stripping all formatting is configured, i have created a small workaround, which i want to share. Target was, to get pretty clean HTML - without annoying markup - but to allow images to be inserted via clipboard.
First of all, use the options of the editor, to "pre-clean" the HTML:
StripFormattingOptions="Css,Font,Span,MSWordRemoveAll"
Then attach to the OnClientPasteHtml event and perform special cleaning, if HTML is pasted:
function Editor_PasteHtml(sender, args) { var sInitialValue = args.get_value(); if ((args.get_commandName() == 'Paste') && (sInitialValue != null)) { // Only allow basic tags var sStrippedValue = sInitialValue.replace(new RegExp("<(?!\/?(strong|b|em|img|(i(?!nput))|u|ol|ul|li|p|br)(?=>|\s?.*>))\/?.*?>", "ig"), ""); args.set_value(sStrippedValue); } }
The solution is not perfect and the RegEx could be extended, but for our case, it works good enought. The RegEx itself was taken from a sample by Rumen and modified, to allow less tags.
Kind regards, Carsten
Hi
I have RadScheduler with timeline as selected view. It works other well but when appointments are first ending and second starting at same time, it make two rows. Is there any possibility to get those to same row (and create second row only when appointments are over each others)? Times are not over to each other so I think those should be in one row and when appointment end and start is exactly same time with slot time period those might be in same row. See picture what my situation is now.
Here is Scheduler aspx snipped (code behind has tooltip generation in OnAppointmentDataBound) which is quite directly from your demo, only datasources and fields from there are changed (and done own styles to try change colors and font).
<telerik:RadScheduler RenderMode="Lightweight" runat="server" ID="RadScheduler1" SelectedView="TimelineView"
SelectedDate="2021-05-01" DayStartTime="00:00:00" DayEndTime="23:59:59" Height="100%" Width="100%" RowHeight="60"
DataSourceID="SqlSSAK" DataKeyField="ID" DataSubjectField="NIMIKE" DataStartField="ALKUAIKA" DataEndField="LOPPUAIKA"
Localization-HeaderMultiDay="Work Week" GroupingDirection="Vertical" GroupBy="SakKoneNimi"
OverflowBehavior="Scroll" ShowFullTime="True" StartInsertingInAdvancedForm="True"
OnAppointmentDataBound="RadScheduler1_AppointmentDataBound" >
<AdvancedForm Modal="true"></AdvancedForm>
<ResourceTypes>
<telerik:ResourceType KeyField="SakKoneID" Name="SakKoneNimi" TextField="SakKoneNimi" ForeignKeyField="SakKoneID" DataSourceID="sqlSakitysKoneet"></telerik:ResourceType>
</ResourceTypes>
<ResourceStyles>
<telerik:ResourceStyleMapping Type="SakKoneNimi" Text="SSAK1" ApplyCssClass="SSAK1Style"></telerik:ResourceStyleMapping>
<telerik:ResourceStyleMapping Type="SakKoneNimi" Text="SSAK2" ApplyCssClass="SSAK2Style"></telerik:ResourceStyleMapping>
</ResourceStyles>
<TimelineView UserSelectable="false" NumberOfSlots="288" SlotDuration="0.00:15:00" TimeLabelSpan="24" ColumnHeaderDateFormat="dd.MM HH"
SortingMode="Global" ShowInsertArea="False" ReadOnly="False"></TimelineView>
<MultiDayView UserSelectable="false"></MultiDayView>
<DayView UserSelectable="false"></DayView>
<WeekView UserSelectable="false"></WeekView>
<MonthView UserSelectable="false"></MonthView>
<TimeSlotContextMenuSettings EnableDefault="true"></TimeSlotContextMenuSettings>
<AppointmentContextMenuSettings EnableDefault="true"></AppointmentContextMenuSettings>
</telerik:RadScheduler>
Regards
Harri
I am using Radlistview control drag and drop functionality. Radlistview items are drag and dropping into Repeater control. this functionality working in chrome older version but not working in latest chrome version. I have verified my code..args.get_destinationElement().id; method returning repeater id in older version but in newer version this method returning Radlistview control id. so destination element id returning wrong in newer version. how to overcome on this issue. please help me on this. please find the below my code.
function trackDropping(sender, args) {
debugger;
var dest = args.get_destinationElement();
if (!dest || !dest.id || dest.id.indexOf("TeamLink") < 0) {
args.set_cancel(true);
}
Telerik Web UI ListView Items Drag-and-drop Demo | Telerik UI for ASP.NET AJAX
In IE, RadGrid drag-and-drop works properly, but in Chrome it works less than 1/2 the time I try to move rows up/down.
When I set a breakpoint in the RowDrop event (server side), the event fields aren't consistently populated in Chrome.
My browser is not zoomed in or out and it's easy to duplicate with your website's example:
http://demos.telerik.com/aspnet-ajax/grid/examples/columns-rows/rows/drag-and-drop/defaultcs.aspx
Many people have had issues with this over the years but I cannot find any resolution. Some people pointed to the RadGrid being in a MasterPage or in a UserControl, but none of that should matter.
Can you please provide resolution?
Hi Team,
I have recently migrated from RadGrid Classic to RadGrid Ajax suite.(R3 2020)
I am getting few errors in the Edge,IE11 and Chrome.
Do we need to replace classic RadControl js files with Ajax Control Suite js files?
Issue are captured in the screenshot.
Can you please suggest me why this issue is happening and how to resolve it?
Hello Telerik team, I have the problem that the pivot grid Olap does not run with more than 13000 records, we try to execute with 10 fields and with 2 measurement fields in total 12, however it keeps loading the page without doing something or sometimes it sends error of time out.
Framework used: ASP.NET Ajax
thank you!!
Any comment or possible solution ?