I have a very strange rendering problem that I am experiencing on different pages of my application, and is also experienced on four different development machines.
The grid renders not as unique rows, and none of the event handling is functional. This occurs IE, Chrome and Firefox. Any ideas what to look for?
Seen screen shot.
Using version 2013.3.1015.45
Hi,
I am using a RadEditor with ContentAreaMode set to DIV. I am using IE 11 . The page is a simple one contains
Once the page is rendered the page consists of RadEditor with button and a dropdown . There is no scroll bar on the page yet . So click on the button a postback is caused and NO FOCUS IS SET TO THE RADEDITOR .
Now, Add a few <br />
before the Button and the DropDown so that we now get a scrollbar on the page . Move to the bottom of the page and select on a button or change the dropdown index so that a postback is caused . On Postback we now see that the RadEditor automatically sets focus to its self.
This can be reproducible even in the Demo site RADEditor ContentAreaMode="DIV" To reproduce the error on the demo site please follow as described in the document RADEDITOR.docx issue.
The same when tried in Chrome works just fine and the scroll position of the browser is not changed.
Regards,protected
void
gdSubmissions_ItemCreated(
object
sender, GridItemEventArgs e)
{
if
(e.Item
is
GridNestedViewItem)
{
GridNestedViewItem item = e.Item
as
GridNestedViewItem;
int
newColSpanValue = item.NestedViewCell.ColumnSpan -1;
item.NestedViewCell.Attributes[
"colspan"
] = newColSpanValue.ToString();
item.NestedViewCell.Style.Add(
"padding"
,
"5px"
);
item.NestedViewCell.Style.Add(
"border-bottom"
,
"1px solid #e8e8e8"
);
}
}
protected
void
gdSubmissions_PreRender(
object
sender, EventArgs e)
{
RemoveExpandIconWhenNoRecords(gdSubmissions.MasterTableView);
// Hide Columns
if
(usesApproval)
{
gdSubmissions.MasterTableView.GetColumn(
"Resubmit"
).Visible = (_submissionStatus == -1);
gdSubmissions.MasterTableView.GetColumn(
"Approve"
).Visible = (_submissionStatus == 0);
gdSubmissions.MasterTableView.GetColumn(
"Reject"
).Visible = (_submissionStatus == 0);
}
}