|
Rank: Member Groups: Member
Joined: 3/5/2009 Posts: 19
|
Using the latest build, 10.0.25.2, the editable label has stopped returning a value. Reverting back to a previous build the code below works fine.
Code: HTML/ASPX
<%@ Page Language="VB" AutoEventWireup="true" CodeFile="test.aspx.vb" Inherits="test" %>
<%@ Register TagPrefix="eo" NameSpace="EO.Web" Assembly="EO.Web" %>
<!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>
</head>
<body>
<form id="form1" runat="server">
<div>
<eo:EditableLabel runat=server ID=tbDescription Width=500 Height=400>
<NormalStyle CssText="border: 1px dashed #808000; background-color: white; padding: 2px;" />
<ActiveStyle CssText="border: 1px solid black; background-color: white; padding: 2px;" />
</eo:EditableLabel>
<asp:Button runat=server ID=btnUpdate Text="Update" />
</div>
</form>
</body>
</html>
Code: Visual Basic.NET
Partial Class test
Inherits System.Web.UI.Page
Sub btnUpdate_clicked() Handles btnUpdate.Click
Dim myText As String = tbDescription.Value
End Sub
End Class
|
|
Rank: Member Groups: Member
Joined: 3/5/2009 Posts: 19
|
I also noticed that the Editable Label Server Side Event demo on your web site no longer works, so it seems the problem is more than just the value not being returned.
This is a huge issue for us as this breaks a good deal of our code. We need the newer version to support the fixes in the Combo Box, but also depend on the editable label.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,195
|
Thank you very much for reporting the issue. We will look into it and get back to you as soon as possible.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,195
|
Hi,
We have posted a new build that should fix this problem. Please see your private message for the download location.
Thanks!
|
|
Rank: Member Groups: Member
Joined: 3/5/2009 Posts: 19
|
At first glance it seems to be working, thanks! We'll put it through it's paces and let you know if we see anything else.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,195
|
You are welcome. Let us know if there is anything else.
|
|