Hi
I am using Webdropdown which containing 5 000 records and I set these properties
<ig:WebDropDown ID="wddl1" runat="server" AutoPostBack="false" AutoSelectOnMatch="true"
CssClass="filterlistarea" CurrentValue="" DisplayMode="DropDown" DropDownContainerHeight="200px"
EnableClosingDropDownOnSelect="false" EnableMultipleSelection="true" MultipleSelectionType="Checkbox"
StyleSetName="Default" Width="180px" EnableAutoCompleteFirstMatch="true" PageSize="400"
EnablePaging="true" DropDownContainerMaxHeight="200px" EnableDropDownAsChild="false"
EnableLoadOnDemand="false" PagerSettings-PagerMode="Numeric" EnablePersistingCustomValues="false"
EnableViewState="false" EnableAutoFiltering="Server" AutoFilterQueryType="Contains">
<DropDownItemBinding TextField="FirstName" ValueField="FirstName" />
<AjaxIndicator Enabled="False" />
</ig:WebDropDown>
But when I clicked to page no 2 in webdropdown it shows the old data only and it also doing post back . Can anybody provide me a proper solution for this issue
Hi shantesh,
I wasn't able to reproduce the behavior you have described. I am attaching a sample, created with NetAdvantage v11.2.20112.2055, replicating the scenario. In order to provide more insight, I would need to know what product version you are using and a small isolated sample, demonstrating the issue.
If you have any other questions, please feel free to contact me.
Hi Nikolay
Thank you so much for your replay . Your solution resolve my problem . I am using NetAdvantage
v 11.1.20111.1006 and now the problem I am facing is that for huge data around 5000 it showing 13 pages
and I want to wrap the page numbers within the webdropdowncontainerwidth . I try with properties availabe
within the webdropdown control but not able to resolve this problem . Can you please provide me a
solution for this .
Regards
Shantesh Kulkarni
Hi Shantesh,
A possible solution for this would be to add max-width CSS attribute to .idgg_Pager class in ig_DropDown.css stylesheet, placed in ig_res folder. Set it to be equal to the DropDownContainerWidth value of the WebDropDown.
Please let me know if this helps.
Thanks for the replay .This worked for me and resolve the problem of paging in webdropdown.
Best Regards,
Thanks for providing me the solution . Its working perfect .
If you need any further assistance on the matter please do not hesitate to ask.
Hello Shantesh,
I am attaching a sample, replicating your scenario. I have used NetAdvantage 11.1.20111.1006.
Please have a look and tell me if this helps.
Hi there,
This should be dropDown._element["input"].
Thank you for using the infragistics forums!
As per your suggestion I put code like this
.igdd_DropDownListContainer
{
float: left;
border: 1px solid #BBBBBB;
background-color: #FFFFFF;
max-width: 180px;
}
But in Internet Explorer still this issue coming . and in
function clearCurrentValue() {
var dropDown = $find("wddlF1");
dropDown_elements["Input"].value = "";
Its throwing exception as dropDown_elements not defined .. Plase give the solution for this issue
Best Regards