Note that there are some explanatory texts on larger screens.

plurals
  1. POExtJs Grid acting very strange
    primarykey
    data
    text
    <p>So I have two pictures of the weirdness that is occuring <img src="https://i.stack.imgur.com/j3cI2.png" alt="alt text"></p> <p>As you can see in the picture above, the scroll bar on the right hand side is being cut off a little bit by the screen, and even when you scroll to the right, you don't get the bar back, it remains cut off.</p> <p>Here is the other scenario: <img src="https://i.stack.imgur.com/kb3tr.png" alt="alt text"></p> <p>Here, you can see that when I scroll down in this grid, the scroll bar kind of fits into the bottom of the grid and doesn't even go all the way down. You need to manually click into the grid and hit the down arrow to get the rest of the way down.</p> <p>What could be causing both of these weird issues?</p> <p>Edit:</p> <p>Here is the code to generate the grid (Ext created through VB controls):</p> <pre><code>Dim VehicleOptionsGrid As New Akcelerant.Framework.WebControls.Grids.Grid With VehicleOptionsGrid .ID = "VehicleOptionsGrid" .Title = "Vehicle Options" .Toolbar.UseDefaultButtons = False .Mode = Grids.Grid.GridMode.Control .Panel.Border = False .Panel.Style = "border-width:1px;margin-bottom:5px" .Ref = "../../../../../VehicleOptionsGrid" .Editable = True With .Columns.Add("IsSelected", "Selection", Akcelerant.Framework.WebControls.Grids.Grid.ColumnDataType.Boolean) .Renderer = "renderVehicleCheckbox" End With .Columns.Add("CollateralId", "").Hidden = True .Columns.Add("OptionId", "OptionId").Hidden =True .Columns.Add("OptionName", "Name").Width = 200 .GridHeight = 400 .DataBind() ViewResponse.AddScript(.ToString(False)) ViewResponse.AddScript("VehicleOptionsGrid.grid.addListener('cellclick', changeOptionStatus);") End With </code></pre> <p>Here is where we add the grid to the page:</p> <pre><code>With .AddPanel With .AddPanel .Title = "" .Html = "Standard Options are preselected. Please select additional options as needed." .Style = "padding-bottom:5px" End With .Ref = "../../../../VehicleOptionsPanel" .Title = "Vehicle Options" .Frame = True .Style = "padding-bottom:5px" .Layout = Pages.Panel.LayoutType.Column .Height = 400 .Collapsed = True .AddExtObject("VehicleOptionsGrid.grid") End With </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload