Can you tell me how I can define the Grid to fill the entire splitter area without trying to guess?
<TelerikGrid Data=@Sessions
SelectedItems="SelectedSessions"
Pageable=true
PageSize="20"
Height="80%"
SelectionMode=GridSelectionMode.Single
SelectedItemsChanged="@((IEnumerable<Gsi.Customer.Models.Session> m) => OnSessionSelected(m))">
<GridColumns>
<GridColumn Field=@nameof(Session.TimestampDisplayName) Title="Timestamp" />
<GridColumn Field=@nameof(Session.TimeZoneOffset) Title="Time Zone Offset" />
</GridColumns>
</TelerikGrid>
<TelerikSplitter Orientation="SplitterOrientation.Horizontal" Height="75vh">
<SplitterPanes>
<SplitterPane Size="50%" Min="30%" Max="70%" Collapsible="false" Class="k-scrollable">
</SplitterPane>
<SplitterPane Min="30%" Max="70%" Collapsible="false" Class="k-sc </SplitterPane>
</SplitterPanes>
</TelerikSplitter>
<TelerikSplitter Orientation="SplitterOrientation.Horizontal" Height="70vh">
<SplitterPanes>
<SplitterPane Size="40%" Min="30%" Max="70%" Collapsible="false">
I am having a really strange issue with an animation container. For reference, this animation container appears in one half of a Splitter, and the container includes a Grid which loads data.
When I prompt the animation container, with the container animation set to "SlideLeft", the container immediately appears in middle of the splitter, but then animates to the left before jumping back.
The confusing part is that I have other virtually identical implementations of the animation container that do not exhibit this issue. The animation container content is provided generically through a render fragment. Showing and hiding of the container is handled through a custom "container stack" component we have written, but this is common between the working and stuttering containers.
Any thoughts as to what would cause this? We are using the same parent container for multiple animation containers, although only one is shown on top at a time.
+ Menu - Navigation Page Load to div "Desktop" + div desktop + Toolbar + Splitter Vertical +Splitterpane -Overview Grid +Splitterpane - Detail +TelerikEditForm -lot of stuff-
Hello,
I have a splitter with 2 pane's and in each pane a grid with sizable columns.
When one resizes a column in a grid inside a pane of the splitter one of the panes collapses instead of resizing the column.
Please note: Only the first time when the page is opened it is going not good!
Kind regards,
demo code to reproduce:
In a TelerikSplitter when I click a button that causes data to load, every element at that level and lower gets the attribute tabindex="-1" for a split second and then the property is removed. Is there any function of the Splitter or Loader/LoaderContainer that would do this? This causes explicitly set tabindex attributes to be completely removed.
Update/Solution:
I determined that this was the result of an intermediate Blazor component calling some JavaScript to disable tabbing on load. This issue is unrelated to the Telerik LoaderContainer.
I recall being told I would have access to source code once I buy a licence.
Now that I have a licence, how do I get access to the source so I can do a local build?