The preview here:
https://docs.telerik.com/blazor-ui/knowledge-base/inputs-validation-child-component
...is not working. I can get the binding to work when creating an item; but updating, I can't get the value to bind so it comes up with my selection showing.
Is two-way binding for that example working for anyone?
thanks!
Hi everybody,
I'm trying to use the ColorPicker into my project but when I make a click on the ColorPickerGradientView I get the error bellow:
Is there a way to fix this issue?
Best regards,
Cipri
Hi,
When I edit a specific recurring appointment (not a series), it updates the appointment properly if I use drag-n-drop, but when I use the edit dialog it creates a new appointment in addition to the recurring one instead of directly updating the recurring appointment as in the drag-n-drop scenario. Is this normal?
Thanks,
--Andre
I have a Combo Box that needs to be unit tested. It autocompletes and populates a list of addresses utilizing services. Currently this works perfect in the UI version and I am wanting to write unit tests which accomplish the following.
1. Enter Full AddressTextin to the combo box
2. List of potential addresses populates via a Mock Address Lookup Service (in this case only 1, because I am entering the full address).
3. Matching item is selected, and AddressID obtained.
4. ID is compared against expected Id.
I am currently using BUnit tests, and I am unsure how to proceed with creating unit tests for this combo box that follow the above steps.
How do I trigger the "Blur" or setting the value after using the .Input(addresstext) of the Element.
Hi,
I have defined a treelist as shown below. I followed the example in the demo. The only problem is that when I expand a row, all other rows that have an expand arrow next to them lose the arrow. The only way I can get them back is to refresh the page. I've attached a couple of screen shots.
What am I missing?
Thanks ... Ed
protected async Task OnExpand(TreeListExpandEventArgs args) { var item = args.Item as ColorRMLotModel; if (item.Lot.HasChildren && !tvData.Any(x => x.Lot.ParentLotId == item.Lot.ColorRMLotId)) { var items = GetKids(item.Lot.ColorRMLotId); ; tvData.AddRange(items); } }
SelectionMode="@TreeListSelectionMode.Single"
@ref="tlRef"
IdField="ColorRMLotId"
OnStateInit="((TreeListStateEventArgs<ColorRMLotModel> args) => OnStateInitHandler(args))"
ColumnVirtualization="true"
ParentIdField="ParentLotId"
HasChildrenField="HasChildren"
Pageable="false"
Reorderable="true"
Sortable="true"
FilterMode="@TreeListFilterMode.FilterMenu"
OnEdit="@((TreeListCommandEventArgs args) => OnEdit(args))"
OnExpand="@OnExpand"
Width="1250px"
Height ="650px"
Resizable="true">
<TreeListToolBar>
I have a wizard that is defined like this:
<TelerikWizard @bind-Value="step" Height="100%" Width="100%">
<WizardSteps>
<WizardStep Label="Information" OnChange="OnWizardStepChange">
<Content>
</Content>
</WizardStep>
@if (showMapping)
{
<WizardStep Label="Column Mapping" OnChange="OnWizardStepChange">
<Content>
</Content>
</WizardStep>
}
@if (showPreview)
{
<WizardStep Label="Preview" OnChange="OnWizardStepChange">
<Content>
</Content>
</WizardStep>
}
<WizardStep Label="Validation" OnChange="OnWizardStepChange">
<Content>
</Content>
</WizardStep>
</WizardSteps>
<WizardButtons>
@{
var index = context;
int lastStep = 3;
if (!showMapping) { lastStep -= 1; }
if (!showPreview) { lastStep -= 1; }
if (index > 0)
{
<TelerikButton ButtonType="ButtonType.Button" OnClick="@(() => step -= 1)">Previous</TelerikButton>
}
if (index < lastStep)
{
<TelerikButton ButtonType="ButtonType.Button" OnClick="@(() => step += 1)">Next</TelerikButton>
}
if (index == lastStep)
{
<TelerikButton ButtonType="ButtonType.Button" OnClick="@CreateImport">Import</TelerikButton>
}
}
</WizardButtons>
</TelerikWizard>
When I try to load the page, the Wizard is giving me the following error:
[12:06:18 WRN] Unhandled exception rendering component: Value cannot be null. (Parameter 'format') System.ArgumentNullException: Value cannot be null. (Parameter 'format') at System.String.FormatHelper(IFormatProvider provider, String format, ParamsArray args) at System.String.Format(String format, Object arg0, Object arg1) at Telerik.Blazor.Components.TelerikWizard.get_PagerMessage() at Telerik.Blazor.Components.TelerikWizard.BuildRenderTree(RenderTreeBuilder __builder) at Microsoft.AspNetCore.Components.Rendering.ComponentState.RenderIntoBatch(RenderBatchBuilder batchBuilder, RenderFragment renderFragment) at Microsoft.AspNetCore.Components.RenderTree.Renderer.RenderInExistingBatch(RenderQueueEntry renderQueueEntry) at Microsoft.AspNetCore.Components.RenderTree.Renderer.ProcessRenderQueue()
Hello,
I'm trying to implement my own dialog for creating appointments in a grouped scheduler. I use the OnEdit event for this. The event is called and the start and end are correctly specified in SchedulerEditEventArgs. Unfortunately I miss any reference to the resource of the clicked line.
Regards
Helmut
Hello,
Is there a way to change the color or opacity of the k-overlay class, without overwriting the class?
I have a scenario where I would like the color to be transparent, but keep it black in other scenarios.
Regards,
Nikolas
Hi,
Is there any ways where we could implement a track changes feature?
I do have a default word content available for the user, and the user will be able to change the content if required.
The track change feature would allow reviewers to quickly zoom into the edited wording (i.e. highlighted in red) for them to review quickly.
Is there any ways whereby I could implement this feature easily?
Thank you!
Hello,
I want to enable the checkboxes for the top level of the treeview but disable or not show the checkboxes below that. So for your example at:
https://docs.telerik.com/blazor-ui/components/treeview/checkboxes/overview
I want to show (or enable) the checkboxes for Project and Implementation but not for Design, Site, index.js, index.html, or styles.css.
Thank you,