Hello,
I have added One Custom Task Field 'SrNo' as object datatype with respect to demo project given here. I have not used EntityFramework. I am Binding RadGantt's Datasource and DependenciesDataSource simply on Page_Load Event.
To add new Task Field below is the code I have written
public
class
CustomGanttTaskFactory : ITaskFactory
{
Task ITaskFactory.CreateTask()
{
return
new
CustomTask();
}
}
public
class
CustomTask : Task
{
public
CustomTask()
:
base
()
{
}
public
object
SrNo
{
get
{
return
(
object
)(ViewState[
"SrNo"
] ??
""
); }
set
{ ViewState[
"SrNo"
] = value; }
}
protected
override
IDictionary<
string
,
object
> GetSerializationData()
{
var dict =
base
.GetSerializationData();
dict[
"SrNo"
] = SrNo;
return
dict;
}
public
override
void
LoadFromDictionary(System.Collections.IDictionary values)
{
base
.LoadFromDictionary(values);
SrNo = values[
"SrNo"
];
}
}
Page_Load Event:
protected
void
Page_Load(
object
sender, EventArgs e)
{
List<ITask> newFinalTask =
new
List<ITask>();
List<IDependency> FinalDependency =
new
List<IDependency>();
newFinalTask.Add(
new
CustomTask { ID = 1, SrNo =
"1"
, OrderID = 1, ParentID =
null
, Title =
"A"
, Start =
new
DateTime(2015, 01, 10, 0, 0, 0), End =
new
DateTime(2015, 01, 19, 23, 59, 59), PercentComplete = 0.60M, Expanded =
false
, Summary =
true
});
newFinalTask.Add(
new
CustomTask { ID = 2, SrNo =
""
, OrderID = 2, ParentID = 1, Title =
"A1"
, Start =
new
DateTime(2015, 01, 10, 0, 0, 0), End =
new
DateTime(2015, 01, 15, 23, 59, 59), PercentComplete = 0.60M, Expanded =
false
});
newFinalTask.Add(
new
CustomTask { ID = 3, SrNo =
""
, OrderID = 3, ParentID = 1, Title =
"A2"
, Start =
new
DateTime(2015, 01, 16, 0, 0, 0), End =
new
DateTime(2015, 01, 19, 23, 59, 59), PercentComplete = 0.60M, Expanded =
false
});
newFinalTask.Add(
new
CustomTask { ID = 4, SrNo =
"2"
, OrderID = 4, ParentID =
null
, Title =
"B"
, Start =
new
DateTime(2015, 01, 20, 0, 0, 0), End =
new
DateTime(2015, 01, 31, 23, 59, 59), PercentComplete = 0.60M, Expanded =
false
, Summary =
true
});
newFinalTask.Add(
new
CustomTask { ID = 5, SrNo =
""
, OrderID = 5, ParentID = 4, Title =
"B1"
, Start =
new
DateTime(2015, 01, 20, 0, 0, 0), End =
new
DateTime(2015, 01, 31, 23, 59, 59), PercentComplete = 0.60M, Expanded =
false
});
FinalDependency.Add(
new
Dependency { ID = 1, PredecessorID = 1 ,SuccessorID = 4, Type = DependencyType.FinishStart });
RadGantt1.DataSource = newFinalTask;
RadGantt1.DependenciesDataSource = FinalDependency;
}
Design Page:
<
telerik:RadGantt
runat
=
"server"
ID
=
"RadGantt1"
Enabled
=
"true"
ReadOnly
=
"True"
AllowSorting
=
"False"
>
<
DataBindings
>
<
TasksDataBindings
IdField
=
"ID"
TitleField
=
"Title"
StartField
=
"Start"
EndField
=
"End"
PercentCompleteField
=
"PercentComplete"
OrderIdField
=
"OrderID"
SummaryField
=
"Summary"
ParentIdField
=
"ParentID"
/>
<
DependenciesDataBindings
IdField
=
"ID"
PredecessorIdField
=
"PredecessorID"
SuccessorIdField
=
"SuccessorID"
TypeField
=
"Type"
/>
</
DataBindings
>
<
CustomTaskFields
>
<
telerik:GanttCustomField
PropertyName
=
"SrNo"
ClientPropertyName
=
"SrNo"
/>
</
CustomTaskFields
>
<
Columns
>
<
telerik:GanttBoundColumn
DataField
=
"ID"
HeaderText
=
"ID"
AllowEdit
=
"false"
AllowSorting
=
"false"
Width
=
"50px"
></
telerik:GanttBoundColumn
>
<
telerik:GanttBoundColumn
DataField
=
"SrNo"
HeaderText
=
"Sr.No."
AllowEdit
=
"false"
AllowSorting
=
"false"
Width
=
"50px"
UniqueName
=
"SrNo"
></
telerik:GanttBoundColumn
>
<
telerik:GanttBoundColumn
DataField
=
"Title"
HeaderText
=
"ACTIVITY"
AllowEdit
=
"false"
AllowSorting
=
"false"
></
telerik:GanttBoundColumn
>
<
telerik:GanttBoundColumn
DataField
=
"Start"
HeaderText
=
"START"
DataFormatString
=
"dd/MM/yyyy"
AllowEdit
=
"false"
AllowSorting
=
"false"
Width
=
"80px"
></
telerik:GanttBoundColumn
>
<
telerik:GanttBoundColumn
DataField
=
"End"
HeaderText
=
"END"
DataFormatString
=
"dd/MM/yyyy"
AllowEdit
=
"false"
AllowSorting
=
"false"
Width
=
"80px"
></
telerik:GanttBoundColumn
>
<
telerik:GanttBoundColumn
DataField
=
"PercentComplete"
HeaderText
=
"% COMPLETED"
AllowEdit
=
"false"
AllowSorting
=
"false"
></
telerik:GanttBoundColumn
>
</
Columns
>
</
telerik:RadGantt
>
But it is not Displaying Data in Sr.No. Field. Below Attached is the output Image.
Please help me with what is wrong with my code.
Hi,
I am trying to implement paging on a RadGrid in a web forms application.
The problem I am having is that when the user selects a page the correct information displays, but then the text '22057|updatePanel|ctl00_MainContent_ctl00_MainContent_grdResultsPanel|'
erroneously appears above the control after which the paging no longer functions. I have attached part of a screenshot so you can see what I'm talking about.
Why is this happening?
ASPX:
<
telerik:RadGrid
ID
=
"grdResults"
runat
=
"server"
Width
=
"100%"
Height
=
"430px"
PageSize
=
"10"
ItemStyle-HorizontalAlign
=
"Left"
HeaderStyle-HorizontalAlign
=
"Left"
OnItemCommand
=
"grdResults_ItemCommand"
OnItemDataBound
=
"grdResults_ItemDataBound"
AllowPaging
=
"True"
AlternatingItemStyle-HorizontalAlign
=
"Left"
ItemStyle-BackColor
=
"#ffffff"
AlternatingItemStyle-BackColor
=
"#eeeeee"
Visible
=
"true"
AutoGenerateColumns
=
"false"
OnNeedDataSource
=
"grdResults_NeedDataSource"
>
<
MasterTableView
TableLayout
=
"Auto"
>
<
NoRecordsTemplate
>
<
div
style
=
"padding: 8px 0 5px 5px; height: 20px; width: 110%;"
>
There are currently no candidates that match the selection.
</
div
>
</
NoRecordsTemplate
>
<
Columns
>
<
telerik:GridTemplateColumn
HeaderText
=
"Candidate ID"
UniqueName
=
"CandidateID"
Visible
=
"false"
>
<
ItemTemplate
>
<%#Eval("CandidateID")%>
</
ItemTemplate
>
</
telerik:GridTemplateColumn
>
<
telerik:GridTemplateColumn
HeaderText
=
"Prefix"
HeaderStyle-Width
=
"35px"
>
<
ItemTemplate
>
<%#Eval("Prefix")%>
</
ItemTemplate
>
</
telerik:GridTemplateColumn
>
<
telerik:GridTemplateColumn
HeaderText
=
"Forename"
>
<
ItemTemplate
>
<%#Eval("Forename")%>
</
ItemTemplate
>
</
telerik:GridTemplateColumn
>
<
telerik:GridTemplateColumn
HeaderText
=
"Surname"
>
<
ItemTemplate
>
<%#Eval("Surname")%>
</
ItemTemplate
>
</
telerik:GridTemplateColumn
>
<
telerik:GridTemplateColumn
HeaderText
=
"MobilePhone"
>
<
ItemTemplate
>
<%#Eval("MobilePhone")%>
</
ItemTemplate
>
</
telerik:GridTemplateColumn
>
</
Columns
>
</
MasterTableView
>
<
ClientSettings
>
<
Scrolling
AllowScroll
=
"True"
UseStaticHeaders
=
"True"
SaveScrollPosition
=
"true"
></
Scrolling
>
</
ClientSettings
>
</
telerik:RadGrid
>
Please ask if you need further information.
Hi,
Version 2017.2.503 says this is fixed: RadButton as Checkbox/Radio checked backgrounds are misplaced in Classic RenderMode.
I'm using 2017.2.621, and it appears it is broken.?
Here's the code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
runat
=
"server"
>
<
title
></
title
>
<
style
type
=
"text/css"
>
/* Button Normal */
.btnNormal,
.rdDisabled .btnNormal
{
width: 70px;
height: 23px;
margin: 0; /*7px 5px 0 0;*/
display: block;
float:right;
background: url("static2.gif") no-repeat scroll -42px 0 #eeeeee ! important;
}
/* Button Mouseover */
.btnHovered,
.rdDisabled .btnHovered
{
background-position: -42px -25px ! important;
}
.btnNormal .rbText
{
color: #333333;
margin: 4px 0 0 ! important;
font-family: Verdana, Arial, Segoe UI, Sans-Serif ! important;
font-weight: normal ! important;
font-size: 11px ! important;
}
</
style
>
</
head
>
<
body
>
<
form
id
=
"form1"
runat
=
"server"
>
<
telerik:RadScriptManager
ID
=
"RadScriptManager1"
runat
=
"server"
/>
<
table
class
=
"tblLookup"
cellspacing
=
"0"
cellpadding
=
"0"
>
<
tr
>
<
td
>
<
telerik:RadRadioButtonList
ID
=
"rblLookupBy"
runat
=
"server"
RenderMode
=
"Classic"
AutoPostBack
=
"false"
>
<
Items
>
<
telerik:ButtonListItem
Text
=
"Option 1"
/>
<
telerik:ButtonListItem
Text
=
"Option 2"
Selected
=
"true"
/>
<
telerik:ButtonListItem
Text
=
"Option 3"
/>
</
Items
>
</
telerik:RadRadioButtonList
>
</
td
>
</
tr
>
<
tr
>
<
td
>
<
telerik:RadButton
ID
=
"btnLookUp"
runat
=
"server"
Text
=
"Lookup"
Image-EnableImageButton
=
"true"
Image-IsBackgroundImage
=
"true"
CssClass
=
"btnNormal"
HoveredCssClass
=
"btnHovered"
AutoPostBack
=
"false"
/>
</
td
>
</
tr
>
</
table
>
</
form
>
</
body
>
</
html
>
If I add a RenderMode="Lightweight" or "Auto", etc. Then the radio button list aligns properly, but this causes the RadButton which has enabled images to not display properly. Can you confirm the fix from 2017.2.503 is actually in 2017.2.621, or what else may be wrong.
Thanks,
Dave
Good afternoon,
In my project I have a main page with 2 RadWindows. The first RadWindow is opened from the main page and the second RadWindow is opened from the first RadWindow. Since the second RadWindow is bigger, I use the RadWindowManager from the main page to open the second RadWindow.
The first RadWindow contains a RadDropDownList with relation names. In the second RadWindow I can add a relation to the database, but if that Window is closed the RadDropdownList with relation names in the first RadWindow is not updated with the new name.
In a script on the second RadWindow:
function GetRadWindow() {
var oWindow = null;
if (window.radWindow) oWindow = window.radWindow;
else if (window.frameElement.radWindow) oWindow = window.frameElement.radWindow;
return oWindow;
}
function RefreshParentPage() {
GetRadWindow().BrowserWindow.location.reload();
}
In my code behind I have:
Dim script As String = "<script>RefreshParentPage()</" + "script>"
ScriptManager.RegisterStartupScript(Me, Me.[GetType](), "RefreshParentPage", script, False)
But when calling this script, the first RadWindow is closed, where I want it to be refreshed. I don't know how to reference the first RadWindow from the second.
How can I refresh the first RadWindow when the second RadWindow is closed?
Thxs
Regards,
Martin
Hi,
I recently upgraded from 2014.3.1209 to version 2017.2.621 and the timeline view of the scheduler is no longer rendering correctly and moving the appointments left. I have attached a screen shot of the issue showing an appointment that starts at 8am and ends to 5:30 pm. Tracing it through it looks like the appointment is getting a margin-left of a negative value set on render sending it off the left hand side of the scheduler.
Thanks.
Hello, I need to change a GridTemplateColumn to no longer be editable and instead have the former EditItemTemplate appear when adding a row instead in two different grids.
I tried just changing the EditItemTemplate elements into InserttemTemplate elements. This worked for one grid, however in the other grid it still seems to show the EditItemTemplate for that column when editing the row and not showing it when inserting. What could be going on?
Here is the grid element where it worked:
<telerik:RadGrid ID="ItemGrid" runat="server"
AutoGenerateColumns="False" GridLines="None" Skin="WebBlue" Width="210px"
AllowMultiRowEdit="true" AllowFilteringByColumn="false"
OnNeedDataSource="ItemGrid_NeedDataSource" EnableLinqExpressions="false">
<GroupingSettings CaseSensitive="false" />
And the one where it didn't work:
<telerik:RadGrid ID="ItemGrid" runat="server"
AutoGenerateColumns="False" GridLines="None" Skin="WebBlue" Width="860px"
AllowMultiRowEdit="true" AllowFilteringByColumn="false"
OnNeedDataSource="ItemGrid_NeedDataSource" EnableLinqExpressions="false"
OnItemDataBound="ItemGrid_DataBound"
ClientSettings-ClientEvents-OnBatchEditClosed="ItemGrid_BatchEditClosed"
ClientSettings-ClientEvents-OnBatchEditCellValueChanging="ItemGrid_BatchEditCellValueChanging"
ClientSettings-ClientEvents-OnBatchEditOpened="ItemGrid_BatchEditOpened">
Besides the elements here the only difference is they have a different number of columns. Both grids are on the same page. I also tried just removing the ClientSettings-ClientEvents-OnBatchEdit* and OnItemDataBound properties from the second grid and the same problem still occurs.
What determines if a step in the navigation bar is grayed out or not?
Mine is behaving oddly. Each step has the option for the user to create a new usercontrols (each containing several controls) via button click. But, when I do that the postback grays out all the segments in the navigation bar after the page reloads.
Thanks in advance for any information anyone can provide.
Am I missing something, the datepicker widget in scheduler renders as 'dials' on mobile device but the standalone datepicker renders like a calendar on a mobile device. Am I doing something wrong?