BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<div class="row">
<div class="col-md-3">
<ej:ListBox runat="server" ID="lbCiudades" SelectMethod="GetSelectedTeams" DataTextField="Nombre" DataValueField="Id"
OnValueSelect="lbCiudades_ValueSelect">
</ej:ListBox>
</div>
<div class="col-md-9">
<uc1:DatosInformeGasTeam runat="server" ID="DatosInformeGasTeam" />
</div>
</div>
</code>
Now, listbox scroller will work fine. We have modified the sample based on this and please refer to the following sample:
Sample: Sample
Query 2: when I click on List Item, when the page is reload, the selected item is the next item that I selected
We are able to reproduce this issue and logged defect report for this. A support incident to track the status of this issue has been created under your account. Please log on to our support website to check for further updates.
https://www.syncfusion.com/account/login?ReturnUrl=%2fsupport%2fdirecttrac%2fincidents
Please let us know if you have any further query.
Regards,
Kasithangam
Hi Manolo,
Query 1: With this bootstrap configuration there is a lot of separation between controls. How can I reduce this separation?
While specifying bootstrap column value as 3 and 9, there will be a space between two controls (listbox and grid). To resolve this issue, you can use the bootstrap class column value as 2 and 10. For the issue “Listbox control scroller doesn’t work”, please specify the width for listbox control by using “Width” property as shown in the below code example:
<code>
<div class="col-md-2">
<ej:ListBox runat="server" ID="lbCiudades" SelectMethod="GetSelectedTeams" Width="190px" DataTextField="Nombre" DataValueField="Id" OnValueSelect="lbCiudades_ValueSelect">
</ej:ListBox>
</div>
<div class="col-md-10">
<uc1:DatosInformeGasTeam runat="server" ID="DatosInformeGasTeam" />
</div>
</code>
Query 2: The grid is not scrolled, I like that the list box and grid has the same size that the page. If the grid need show more columns, I prefer scroll the grid, not the page.
You have used “AllowPaging” property in grid control. This property is used to add pages based on the grid datas so scroller will not be displayed when you load more data’s in the grid. To resolve this issue, Remove “AllowPaging” property and set the “Height” property in grid control to display the scroller. Please refer to the following code example for the same:
<code>
<ej:Grid ID="gridOperacionesTerminadasTipoOperacion" runat="server" AllowFiltering="True" AllowScrolling="True" AllowSorting="True"
ShowSummary="true" OnServerExcelExporting="gridOperacionesTerminadasTipoOperacion_ServerExcelExporting" Height="150px">
</ej:Grid>
</code>
We have modified your sample based on this and please refer to the following sample:
Sample: Sample
Regards,
Kasithangam
<ej:Grid ID="gridOperacionesTerminadasTipoOperacion" runat="server" AllowFiltering="True" AllowScrolling="True" AllowSorting="True" ShowSummary="true" OnServerExcelExporting="gridOperacionesTerminadasTipoOperacion_ServerExcelExporting" > <ScrollSettings Width="80%" /> |