Wednesday, March 21, 2012

question with roundedcornersextender

hello,

This is my first actual post here, but i have browsed through the forums before to try and find some answers to questions, but was not able to find a solution to this problem that we are currently having.

In our project, weare using a rounded corner extender on a panel, which is inside of a repeater. inside of there, we have a datalist, with another rounded corner extender on a panel inside of there as well. The problem we are running into is, the page loads up quickly, but it takes about 2 or 3 seconds for the corners to get "rounded". It is happening with any amount of data though, taking the same amount of time to round the corners. Is there something that I need to set so the delay there does not exist?

Thanks

hello,

does anyone have a solution to this problem we are having? i could provide some code snippet as well to show what we're trying to do if needed. this is starting to become a real urgent issue for us though.

thanks


Hi

I failed to reproduce the problem,Did you receive any error message?Wound you please post a fully demo of the error?

Thank you.


sorry it took so long to reply, didn't realize that I had a reply.

here's a URL to see a live demo of what is happening:

http://moglme.galvintest.com/viewList.aspx?lid=25

as you can see, it's not a very long delay at all, but our client does not like that there is any delay, they want 0 delay.

here's a rough sample of the code that I have for the data there:

<asp:Repeater ID="rpt_Categories" runat="server" DataSourceID="sds_Categories">
<ItemTemplate>
<asp:SqlDataSource ID="" runat="server" SelectCommandType="Stored Procedure" SelectCommand="">
<SelectParameters>
</SelectParameters>
</asp:SqlDataSource>


<asp:DataList>

<table>
<tr>
<td>
<ajaxToolkit:RoundedCornersExtender ID="RoundedCornersExtender1" runat="server" BorderColor="#efdff7" Corners="all" Radius="10" TargetControlID="Panel2">
</ajaxToolkit:RoundedCornersExtender>
<asp:Panel ID="Panel2" runat="server" Width="100%" BackColor="#efdff7">
stuff here
</asp:Panel>
</td>
</tr>
</table>

</asp:DataList>

</ItemTemplate>
</asp:Repeater>


anyone?

No comments:

Post a Comment