1. Is it hard to understand the version numbers of our releases? If yes, what makes them hard to understand them?
2. Would semantic versioning (SemVer) of our releases make it easier to understand our version numbers and what's behind them?
3. If we go with SemVer, we might need to start with version 3000.0.0 as we currently use 2022.x.x. Please share your thoughts about this approach and ideas for what number versioning would work best for you.
I am trying to preload deafult value that will always exist in this downdownlist no matter when. Then load in another list from the data base behind it base on other factors. See test code below.
@(Html.Kendo().DropDownList()
.Name("groupTypeFilter")
.HtmlAttributes(new { @class = "form-select", data_alpa = "filter", onchange = "ApplyFilter(this)" })
.OptionLabel("All")
.DataTextField("Text")
.DataValueField("Value")
.BindTo(new List<SelectListItem>
{
new SelectListItem { Text = "All", Value = "all" },
new SelectListItem { Text = "All GMS Groups", Value = "allgms" },
new SelectListItem { Text = "All MECCOM Groups", Value = "allmeccom" }
})
.DataSource(config => config.Read("GetGroupTypes", "Group"))
)
public JsonResult GetGroupTypes()
{
var groupTypes = new List<SelectListItem>
{
new SelectListItem { Text = "All", Value = "ALL" },
new SelectListItem { Text = "GMS", Value = "GMS" },
new SelectListItem { Text = "MEC/COM", Value = "MEC/COM" }
};
return Json(groupTypes);
}
It seems to be only load the data from the data call and not the deafult data that I loaded into it
Hi,
I have a strict CSP implemented in the Program.cs file, after that when I verified the browser developer tool then I can see the get API is called 2 times.
Can you please let me know why this get API is called 2 times.
When I analyze I found that Kendo Panelbar Select event is called twice so internally the Get API is called twice.
@(Html.Kendo().PanelBar()function OnSelect_Panel(sender) {
}
Inside the OnSelect_Panel() method is calling twice so the GET API also called twice. How can I restrict to one API call.
Note: Without strict CSP OnSelect_Panel() is called once but with strict CSP it called twice.
I have two draggable grids, but the second has no drop point, just a circle with a line through it. Can you tell me why the second grid allows me to drag the row but no where to drop?
// QUESTIONS
.Columns(columns =>
{
//..
columns.Bound(p => p.amount)
.HeaderTemplate(
"Amount"
)
.ClientFooterTemplate(
"Sum: \\#=sum\\# "
);
//..
})
.DataSource(dataSource => dataSource
.Ajax()
.Aggregates(aggregates => {
aggregates.Add(p => p.amount).Sum();
})
.Read(read => read.Action("Invoice_Read", "ProjectsInvoice", new { projectCode = "#=projectCode#" }))
)
Hi,
My job is using the ANDI Accessibility Tool to test for accessibility and Section 508 compliance.
The tool keeps telling me that the, "Grid Element has no accessible name." I have tried all of the suggestions listed in your online Grid Accessibility document. However, I'm still getting the same message.
I also used the ANDI tool on your accessibility grid example and I received the same message.
Can someone assist me with this issue?
ANDI is a free Chrome Extension: https://chromewebstore.
I am including the results from my application and from your online demo grid.
Thanks,
Trena
I am trying to call an external web api with the autocomplete but can't seem to pass the autocomplete value as I need to. I need to pass the value at the end of the URL like: https://webapiurl/api/{value} . The farthest I got is passing the value but as a querystring parameter (https://webapiurl/api?name=value), this doesn't work, I get a 404 error. How can I concatenate the value at the end of the URL?
@(Html.Kendo().AutoComplete().Name("auto")
.DataTextField("Name")
.Filter("contains")
.MinLength(4)
.DataSource(source =>
{
source.Read(r =>
{
r.Url("https://webapiurl/api")
.Data("onAdditionalData");
})
.ServerFiltering(false);
})
)
<script>
function onAdditionalData() {
return {
name: $("#auto").val()
};
}
</script>