Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2070
WebDropDown SelectionChanged not firing!
posted

I have the following code for my WebDropDown; located in a table. For some reason, the SelectionChanged event never fires! I see that it does post back, but SelectionChanged doesn't fire (even though I select report 1 or 2) and then once the post back is done, it reverts back to the first (blank) row! What's going on? How can I get the event to fire? What is even stranger is that this works in another project just fine!

<ig:WebDropDown ID="wddReportType" runat="server" AutoPostBack="True" EnableViewState="true"
    AutoSelectOnMatch="False" DisplayMode="DropDownList" StyleSetName="Default"
    EnableClosingDropDownOnSelect="false" EnableAutoCompleteFirstMatch="false"
    KeepFocusOnSelection="false" EnableAutoFiltering="Client"
    EnableCustomValueSelection="false" EnableCustomValues="false"
    Width="95%" onselectionchanged="wddReportType_SelectionChanged">
    <AutoPostBackFlags SelectionChanged="On" ValueChanged="Off" />
    <AjaxIndicator Enabled="True" />
    <Items>
        <ig:DropDownItem Key="None" Text="" Value="None" ToolTip="Please select a report"></ig:DropDownItem>
        <ig:DropDownItem Key="Report1" Text="Report 1" Value="Report1" ToolTip="Report one"></ig:DropDownItem>
        <ig:DropDownItem Key="Report2" Text="Report 2" Value="Report2" ToolTip="Report two"></ig:DropDownItem>
    </Items>
</ig:WebDropDown>

Parents
No Data
Reply
  • 49378
    posted

    Hi all,

    I have investigated the matter by replicating the described conditions as closely as possible, however I am still unable to replicate the scenario ( tests were done using versions 10.2 and 11.1).

    Please can you provide us with more information such as product version. A sample illustrating the scenario would be greatly appreciated and will be extremely helpful in isolating the issue.

    I will keep you posted with any developments.

    Best Regards,

    Petar Ivanov
    Developer Support Engineer
    Infragistics, Inc.
    http://ko.infragistics.com/support

Children