How to specify the WebDropDown Current Text (Entered By User) Max Length = 3
Thanks
Hello Abhishek ,
This seems to be the issue with IE that Nikifor mentioned earlier. It has been logged in our internal system and has already been resolved by the developers. It’s awaiting the next service release.
A case with number: CAS-70379-CRLWZB has been created on your behalf and the dev issue has been attached to it.You can view it’s progress by going to the “My IG” tab on our website, hovering to the "My Support Activity" dropdown and selecting the "Development Issues" tab.
You’ll be notified when the service release with this issue resolved is released.
If you need further information don't hesitate to ask.
Best Regards,
Maya Kirova
Developer Support Engineer
Infragistics, Inc.
http://es.infragistics.com/support
Hi , I have Following Code in My Scenario ,
<ig:WebDropDown ID="igWebDropDown" runat="server" Width="45px" AutoSelectOnMatch="false" AutoFilterQueryType="Contains" EnableAutoFiltering="Client" DropDownContainerHeight="195px" DropDownContainerWidth="43px" EditorID="igWebNumericEditor" AutoPostBack="false"> <AutoPostBackFlags SelectionChanged="Off" ValueChanged="Off" /> </ig:WebDropDown>
<ig:WebNumericEditor ID="igWebNumericEditor" runat="server" MaxLength="3" MaxValue="500" MinValue="10" DataMode="Int" HorizontalAlign="Left" Buttons-ButtonPressedCssClass="ui-widget" Nullable="false" CausesValidation="false"> <AutoPostBackFlags CustomButtonClick="Off" EnterKeyDown="Off" ValueChanged="Off" /> </ig:WebNumericEditor>
Above mentioned Code works fine with Mozilla , Chrome , Safari, However with IE when Changing
the Value or when Value is Changed , Page PostBacks .............
I have implemented ,
in DROPDOWN
<AutoPostBackFlags SelectionChanged="Off" ValueChanged="Off" /> In WebNumericEditor, <AutoPostBackFlags CustomButtonClick="Off" EnterKeyDown="Off" ValueChanged="Off" /> and CauseValidation= "False"
<AutoPostBackFlags SelectionChanged="Off" ValueChanged="Off" />
In WebNumericEditor,
<AutoPostBackFlags CustomButtonClick="Off" EnterKeyDown="Off" ValueChanged="Off" />
and CauseValidation= "False"
Kindly Let me know what could be causing the Issue
Thanks Maya, For your help and Time, The Demo Code is working fine and as expected, Its working Fine Firefox, Safari and Chrome latest Versions, I'm Able to restrict user to enter only Numeric Digits and With Respective Length ,
However on IE 8 , When i Change the Value or Selected Index is Changed , It Causes page to Post Back.
Kindly Let me know what could be causing the issue.