I have placed a Radgrid on my page which is a 2 level grid. One masterView and a detail view. I have and edit function on the detail view, which of cause then switches an Item to be on edit mode. This works perfectly and I can catch the update event a update stuff in my database.
But when ever i go to edit mode, black lines appears in my two tables I have in my edititemtemplate
. You can see the images i have attached to this topic what i mean.
Here is the edititemtemplate
so you can see that I haven't set the lines to appear.
It's not browser related, cause I tested on 4 different kinds, same result.
So why does the lines appear? Anyone have an idea?
- Rune
But when ever i go to edit mode, black lines appears in my two tables I have in my edititemtemplate
. You can see the images i have attached to this topic what i mean.
Here is the edititemtemplate
so you can see that I haven't set the lines to appear.
<
EditItemTemplate
>
<
table
style
=
"width: 740; border: 0px solid White;"
>
<
tr
>
<
td
style
=
"font-weight: bold;"
>
Hostname:
</
td
>
<
td
style
=
"width: 300px"
>
<
asp:TextBox
runat
=
"server"
ID
=
"hostname"
/>
</
td
>
<
td
style
=
"font-weight: bold;"
>
Alias:
</
td
>
<
td
>
<
asp:TextBox
runat
=
"server"
ID
=
"alias"
/>
</
td
>
</
tr
>
<
tr
>
<
td
style
=
"font-weight: bold;"
>
IP adress:
</
td
>
<
td
>
<
asp:TextBox
runat
=
"server"
ID
=
"ip"
/>
</
td
>
<
td
>
</
td
>
<
td
>
</
td
>
</
tr
>
</
table
>
<
table
style
=
"width: 740; border: 0px solid White;"
>
<
tr
>
<
td
style
=
"font-weight: bold;"
>
Description:
</
td
>
</
tr
>
<
tr
>
<
td
>
<
telerik:RadEditor
runat
=
"server"
ID
=
"telerikDesription"
ToolsFile
=
"/telerikEditorToolsTiny.xml"
Height
=
"250"
>
<
Modules
>
</
Modules
>
</
telerik:RadEditor
>
</
td
>
</
tr
>
<
tr
>
<
td
style
=
"font-weight: bold;"
>
Comments (Private field for FC):
</
td
>
</
tr
>
<
tr
>
<
td
>
<
asp:TextBox
runat
=
"server"
ID
=
"comments"
/>
</
td
>
</
tr
>
</
table
>
</
EditItemTemplate
>
It's not browser related, cause I tested on 4 different kinds, same result.
So why does the lines appear? Anyone have an idea?
- Rune