Hi,
Please copy the content from the 100K.txt content and try to paste into the Comments Textbox in the below link.
https://demos.telerik.com/aspnet-ajax/textbox/overview/defaultcs.aspx
Browser is not responding after pasting the content.
Please let me how can we overcome this problem.
Thanks
Kesava
I am using Scheduler 4 times in a single page of my application but its header text showing selected day, date and year is hiding behind Day View button. I want to customize text of date in header also want that header text should be changed according to font or font specified by me or Responsively change its location as control has short width. I am attaching image file showing the text. I want that the date text should be in center between tabs.
Wishing to get response immediately
<radCln:RadDatePicker ID="RadDateOfEvent" runat="server" Width="90px" TabIndex="2"Style="z-index: 104;">
<ClientEvents OnPopupClosing="onDateTimeSelected" />
<DateInput TabIndex="2"></DateInput>
<Calendar TabIndex="2" AccessKey="Q"></Calendar>
</radCln:RadDatePicker>
If there could be a client event like OnPopUpOpened , then also i can write a javascript to move focus to calendar pop up. But we only have OnPopupOpening and this doesn't work as we can't move focus before the control is displayed.
Hi Team,
i am using a Radgrid on a page with multiple template columns, I have a hyper link , a textbox and a combobox. I click on link opens a popup and I select a value and submit it on parent page, save the selected value in grid' template textbox.
And based on textbox value I bind the the combo box.
But when I submit the page and do postback, the Textbox lose its data. and not able to bind combobox.
Can anybody help me on this.
~
Sandeep
Private
Sub
rgProjects_ItemCreated(
ByVal
sender
As
Object
,
ByVal
e
As
Telerik.Web.UI.GridItemEventArgs)
Handles
rgProjects.ItemCreated
If
TypeOf
e.Item
Is
GridHeaderItem
Then
Dim
headerItem
As
GridHeaderItem =
CType
(e.Item, GridHeaderItem)
headerItem.ForeColor = System.Drawing.Color.FromArgb(226, 233, 243)
headerItem.BackColor = System.Drawing.Color.FromArgb(0, 82, 136)
headerItem.Font.Bold =
True
headerItem.BorderColor = System.Drawing.Color.FromArgb(183, 198, 203)
End
If
End
Sub
Private
Sub
rgProjects_ItemDataBound(
ByVal
sender
As
Object
,
ByVal
e
As
Telerik.Web.UI.GridItemEventArgs)
Handles
rgProjects.ItemDataBound
If
TypeOf
e.Item
Is
GridDataItem
Then
Dim
dataItem
As
GridDataItem =
CType
(e.Item, GridDataItem)
'dataItem.Font.Bold = True
Dim
myCell
As
TableCell = dataItem(
"DCounter"
)
If
myCell.Text.StartsWith(
"-"
)
Then
myCell.BackColor = System.Drawing.Color.Red
End
If
If
dataItem.ItemIndex
Mod
2 = 0
Then
dataItem.BackColor = System.Drawing.Color.FromArgb(226, 233, 243)
dataItem.BorderColor = System.Drawing.Color.FromArgb(183, 198, 203)
dataItem.BorderStyle = BorderStyle.Solid
Else
dataItem.BackColor = System.Drawing.Color.White
dataItem.BorderColor = System.Drawing.Color.FromArgb(183, 198, 203)
dataItem.BorderStyle = BorderStyle.Solid
End
If
End
If
End
Sub
Hi,
I have a radgrid which groups data according to Name. So, John will have all his data displayed and then greg and so on. But when I use to export to excel, it always exports the last group.
Any ideas on this would be helpful.
I was also not able to find any demos for exporting grouped data.
I have used the following export settings:
string alternateText = "ExcelML";
this.radGridBusinessGoalList.ExportSettings.Excel.Format = (Telerik.Web.UI.GridExcelExportFormat)Enum.Parse(typeof(Telerik.Web.UI.GridExcelExportFormat), alternateText);
this.radGridBusinessGoalList.ExportSettings.ExportOnlyData = true;
this.radGridBusinessGoalList.ExportSettings.IgnorePaging = true;
this.radGridBusinessGoalList.ExportSettings.OpenInNewWindow = true;
Thanks,
TM
Hi,
In order to avoid loading any period of the appointments, Is there a way to call the appointments on the Scheduler whichever day-week-month you are at now on Scheduler and it gets reloaded once you navigate through another
This is for the / real-time database communication.
thank you
I built an application for a client last year based on the webforms scheduler control, which they were very happy with, except for its speed, which was quite honestly dreadful. I looked at all the suggestions I could find on this forum and in your documentation regarding improving performance and implemented anything applicable. However, it still takes upwards of 2 & 1/2 minutes to load the scheduler page with 128 appointments over 4 days. They will only hire the application again this year if I can speed it up very significantly.
My implementation included binding to a custom provider and using the advanced form. It also required a single resource type for rooms, and 2 multiple resource types of meeting leaders and meeting participants. Eventually, there were 4 rooms, approximately 30 meeting leaders and 4,000 meeting participants. Because it looked to me as if the provider was loading all 4,000 meeting participants as a resource for each appointment, I adapted it to load only those attached to existing appointments (reducing the number to approximately 128), replacing the resource combobox for that in the advanced form with a search box, so that new participants could be added. Even that didn't significantly improve the speed.
I read that binding to Web API might improve things, but when I tried implementing that, it appeared that I couldn't call the overridden GetAppointments method from my custom provider. Would it be feasible to override the WebServiceAppointmentController class in a similar way to creating a custom provider?
I doubt anyway that using client-side binding via Web API is going to improve its performance significantly. I got the impression from using the provider methods elsewhere in my application, even when not directly attached to the scheduler control, that it was that slowing things down. Is it possible that re-writing in MVC and using the MVC scheduler might solve the problem, or does that draw on the same provider? At present, barring that, all I can think to do is search for a more efficient scheduler control from a third-party vendor other than Telerik or start something from scratch myself.