|
反馈BUG
程序版本: |
FineUI v3.3.2 |
浏览器: |
IE10 |
BUG截图: |
|
BUG地址: |
- |
这个不知道是不是Bug,还是我设置有问题
我在程序页面上面查询区域放置了2个控件,2个控件都启用了 AutoPostBack
后面发现,其中一个控件触发事件时,另一个控件也会触发事件
页面下方的Grid控件,如果开启Row选择事件,也会触发上面控件的事件。也有可能事件类型都是 EventArgs
下面是页面查询部分代码
<x:Form ID="Form2" runat="server" Height="36px" BodyPadding="5px" ShowHeader="false"
ShowBorder="false" LabelAlign="Right" EnableBackgroundColor="true">
<Rows>
<x:FormRow ID="FormRow1" runat="server">
<Items>
<x:TwinTriggerBox runat="server" EmptyText="输入要搜索的用工单位" Label="单位名称" ID="txtQUnitName"
ShowTrigger1="false" OnTrigger2Click="btnQuery_Click" Trigger1Icon="Clear" Trigger2Icon="Search" />
<xropDownList ID="cboQRealDate" runat="server" Required="true" ShowRedStar="true"
Label="自然月份" AutoPostBack="true" OnSelectedIndexChanged="cboQRealDate_SelectedIndexChanged" />
<x:RadioButtonList ID="rboIsWork" Label="状态" runat="server" AutoPostBack="true"
OnSelectedIndexChanged="rboIsWork_SelectedIndexChanged" Width="200px">
<x:RadioItem Text="当月新增" Value="0" Selected="true" />
<x:RadioItem Text="当月减员" Value="1" />
</x:RadioButtonList>
</Items>
</x:FormRow>
</Rows>
</x:Form>
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
|