Hi,
I have a question for you:
I would like to create a filter for one column of my Grid. The values of this column are integers, but the values are not visible for the users. They see only an icon depending on the value's range. (see the linked image)
For example:
If the value is 89, the user sees an icon and the tooltip for that is "Very good".
We have 4 ranges:
0-50 Bad,
51-70 OK,
71-85 Good,
86-100 Very good
How can I create a filter, where only the 4 text can be selected from a dropdown, but is filters for the range represented by the text?
Thanks in advance.
We are using the .net Core scheduler and i have 6x appointments on a day ranging from 10 min to 1 hour; A,B,C,D,E,F.
I want to move appointments around using drag and drop eg Change C, before B, and A after D, etc.
I want to show a cursor so I can tell that when I drop the appointment C it will in fact insert between A and B. I do not want them in parallel.
I also want the schedule to adjust based on the changed times as I move the appointments.
This should be a simple and intuitive process of 1 click, drag, and drop, not involving creating holes, filling them, rearranging appointments etc etc..
In my application I have used
ModelState.AddModelError("Fieldid", "ErrorMessage");
first time on button click it is validating fine,
from second time(without refreshing the page) I give another wrong input and it still validate but error message on UI didn't show.
tried debugging the code didn't found any issue,
tried to see console on web browser , no error shows.
Howdy!
I have a scenario in which I need to run some code when the item selected in a foreign key column in my grid is changed when it is being edited.
I can access other columns' editors without issue, but for some reason, every time I attempt to grab the editor for the foreign key column, it comes up as null.
For instance, I can use the following to grab the numeric text box for the edited row (in the Grid's on-edit event) with no issues:
var mcEditor = e.container.find("input[name=MoistureContent]").data("kendoNumericTextBox");
But, the only thing I can get to return as an object in the same on-edit event of the grid is the following:
var proctorEditor = e.container.find("input[name=ProctorReportId]");
I've tried using the following with no luck:
var proctorEditor = e.container.find("input[name=ProctorReportId]").data("kendoDropDownList"); var proctorEditor = e.container.find("input[name=ProctorReportId]").data("kendoComboBox");
We are using a GridColumnSettings for a grid view.
Because the data is text heavy, we are using a popup when editing it.
This puts the Save and Cancel buttons at the bottom of form. We have a user who doesn't want to scroll down to Save. (We already have had to put Save at the top of another form with links to Top.)
Is there any way to force the buttons to appear at the top or in both places? Any suggestions welcome.
These are the basic settings we are using:
on the grid page:
@(Html.Kendo().Grid<TITLE_PATTERN_1>().Name("grid")
.Sortable()
.Editable(x => x.Mode(GridEditMode.PopUp).TemplateName("TITLEPATTERNEditor").Window(w => w.Width(700)))
.Scrollable()
.Filterable()
.Resizable(r => r.Columns(true))
.ToolBar(tools => tools.Excel().IconClass("k-icon k-i-download"))
.Excel(excel => excel
.FileName("TitlePatterns.xlsx")
.Filterable(true)
.AllPages(true)
.ProxyURL("TitlePattern?handler=Save")
)
.Columns(columns => columns.LoadSettings(Model.columns)
)
.DataSource(ds => ds.Ajax().Events(events => events.Error("error_handler"))
.Events(events => events.Error("error_handler"))
.Read(r => r.Url(Url.Action() + "?handler=Read").Data("forgeryToken"))
.Update(u => u.Url(Url.Action() + "?handler=UpdatePopUp").Data("forgeryToken"))
.Destroy(d => d.Url(Url.Action() + "?handler=Destroy").Data("forgeryToken"))
.Model(m =>
{
m.Id(id => id.Id);
m.Field(p => p.Id).Editable(false);
})
.PageSize(50)
)
.Pageable()
)
In the GridColumnSettings
new GridCommandColumnSettings
{
Commands =
{
new GridEditActionCommand()
{
Name = "Update",
Text = "Update",
UpdateText = "Save",
CancelText = "Cancel"
},
},
Width = "100px",
Filterable = false,
Locked = true,
Title = "Update"
},
And this is the template:
@Html.HiddenFor(model => model.Id)
Howdy
I am opening a window to display a razor page using the following
function dblClickCalEvent(e) {
var win = $("#scheduleWindow").data("kendoWindow");
win.refresh({
url: "@Url.Page("ScheduleForm", "Details")",
data: { clickDate: e.dataset.clickdate, scheduleId: e.dataset.scheduleid }
});
win.center().open();
}
This opens the Razor page and calls the OnGetDetails and renders the page using the correct Model. I have a MultiSelect on the page using the Select Event which once a value is selected POSTs back to the page using the following:
function attendee_selected(e) {
$.ajax({
type: "POST",
url: "ScheduleForm?handler=AttendAdd",
data: { __RequestVerificationToken: '@token', attendee: e.dataItem.UserPrincipleName }
});
}
Which posts to this:
public async Task<IActionResult> OnPostAttendAdd(string attendee)
And returns Page();
I can see that the model gets populated while debugging the Razor page, however the page never renders the new results on page. I have tried to call a refresh on the window but this has no effect. Here is and example of where the ViewDates change once the Page is returned from the Post method and the changes are not reflected in the page in the window:
<table style="width: 100%;">
<tr>
@foreach (var d in Model.ScheduleAssistaint.ViewDates)
{
<td class="border1" style="text-align:center;">
@d.ToLongDateString()
</td>
}
</tr>
</table>
Is this something to do with the fact the page is inside a window? If so is there a way to fix this?
Thanks
I'm using the Drawer TagHelper and when the page opens, I'd like the Drawer to start open if the user cookie is set to open and closed if the cookie is set to closed. I am doing this currently using javascript but it causes it to open every time you go to a new page. Is there a setting on the taghelper that will cause it to start out open or closed rather than having to set it using javascript?
Thanks!
Laurie
Here's my code:
<
kendo-drawer
name
=
"drawer"
mode
=
"push"
on-hide
=
"onHide"
min
position
=
"left"
swipe-to-open
=
"false"
template-id
=
"template"
class
=
"no-border"
>
<
mini
enabled
=
"true"
/>
</
kendo-drawer
>
<
script
>
$(document).ready(function () {
var drawerInstance = $("#drawer").data().kendoDrawer;
var hideMenu = getCookie("HideCustomerMenu");
if (hideMenu == 'true') {
var arrowButton = $("#expand");
arrowButton.toggleClass('flip');
drawerInstance.hide();
}
else {
drawerInstance.show();
}
});
</
script
<script
id
=
"template"
type
=
"text/x-kendo-template"
>
<
ul
class
=
"menuBar list-unstyled"
>
<
li
id
=
"customerinfo"
><
a
href
=
"/customer"
><
i
class
=
"fa fa-user-circle fa-2x fa-fw mr-2"
aria-hidden
=
"true"
title
=
"Customer Information"
></
i
>Customer Info</
a
></
li
>
<
li
id
=
"test"
><
a
href
=
"/test"
><
i
class
=
"fa fa-user-circle fa-2x fa-fw mr-2"
aria-hidden
=
"true"
title
=
"Test"
></
i
>Test</
a
></
li
>
</
ul
>
</
script
>
Howdy!
I have a scenario in which I have messages stored in a database. My client would like to enable a website portal for his employees to read/respond to said messages. (We already have this implemented and working in a WPF application using the RadChat control from the WPF library)
The documentation for the chat control in ASP.NET Core is really sparse. Like 3 pages of information and that's it. No examples on data binding like most other controls you have... So, my question is this: is it possible to bind the Messages that show up in the chat control similar to the way in which I can say, bind the data that shows up in the ASP.NET Core Grid using a data source transport mechanism?
I know in the case of the WPF implementation, I had to implement a converter for the messages in order to bind them to the control...
Hi,
I have a .net core submission form with an upload that works at the moment, the form submits successfully, and the files are transferred to S3. Is it possible to convert this form to ajax submission and display the loader whilst the form and uploads are processing before I return my success message?