Hi, currently I am using a RadGridView with the batchMangerExtentions.js Library to manage two combo boxes....one combo box effects the other. Once the user has made their selections and hits save changes I have a foreach loop that will loop through each e.Commands...inside of the loop I am creating a newValues Hashtable....when I look at the newVales hash table all of the values that are listed are making no sense what so ever. In some cases the value will = "" and in others it will be a negative int. I know the values are going into the list properly because I have watched the combobox.items.add be populated. Currently it is being populated with item.Text, item.Value.ToString(); Has anyone else ran into this problem or know something that I am doing wrong?
Ramey
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