I just updated my project to the 4.1.4 version. I see there is now a public site but It doesn't work for me. Am I missing something?
I have a situation where a user can update a status from the Jtable and if they are on any other page but 1 then when the table refreshes after the update. It takes them back to page 1.
Is there away to pass the page number back to the jtable when it is reloading after a status update?
Is the Angular 4 version setup to send Antiforgery token with the PUTs, POSTs, and DELETEs? I was watching the posts in the dev tools and I do not see any Antiforgery token.
I am using the date range in another view in my Angular 2 app. Is there away to default the date range to the last 30 days instead of today? For my use in the particular instance it makes more sense to use last 30 days instead.
In the Angular 4 version using the JTable when I use a Action menu in a grid and use it to go to a new view, the menu doesn't disappear until I scroll down.
Any help would be greatly appreciated.
I have a linq query that is pulling over a paged list of items that has pulls back 73,000 paged rows with a row count of 10. So 7,300 pages. This all works just fine until I get over 500 pages or so. And if I click on the last page (page 7,300) the linq query times out. I am not the best at writing linq queries and having a hard time figuring how I can rewrite it to fix the issue. Any help would be greatly appreciated. Below is the query.
query = from pc in _paidClaimsRepository.GetAll()
join pcl in _paidClaimLinesRepository.GetAll() on pc.Id equals pcl.ClaimId
join cp in _claimpaymentRepository.GetAll() on pc.PaymentId equals cp.Id
where cp.Id == input.Id
select new BillingClaimListReportDto
{
Id = cp.Id,
PayeeId = cp.PayeeId,
InvoiceNum = pc.ClaimId,
PersonId = pc.PersontId,
Last = pc.PersonLast,
First = pc.PersonFirst,
Hcpc = pcl.ProcedureCode,
ChargedAmount = pcl.ChargedAmount,
PaidAmount = pcl.PaidAmount,
UnitsPaid = pcl.UnitsPaid,
ServiceDate = pcl.ServiceDate,
PayersClaimId = pc.PayersClaimId
var remitsCount = await query.CountAsync();
var billingRemitsList = await query
.OrderBy(input.Sorting)
.PageBy(input)
.ToListAsync();
I had a few Jtable questions.
I was wondering how to get the horizontal scrollbar to appear?
How do you change the colors of the table?
Can you change the height of the header so the header titles are not cut off if they go to two lines?
I was wondering how to do the currency format in the Jtable in the Angular 4 version.
I am very new to Angular 4. I knew how to do this in AngularJS 1x but not sure in Angular 4.
I have a list of items right now. I want when you view that list and click one of the items it shows a new view and not a model of the details. I am unsure how to do the routing for the new view to show the details of the item.
Very weird issue I am having with my Angular2 Core version. I am on 4.0.0 and in my service I have a very simple service to get a list from the database. There are only 4 items in the database with Ids of 1,2,3,4.
What I get back in the list is entity Id 1, 1 and 3, 3. So it is bringing back 4 items as it should but it is duplicating Id 1 and 3 and not giving me 2 and 4.
Below is my simple service. I haven't had this issue before version 4.0.0.
public async Task<ListResultDto<ClaimListDto>> OpenClaims()
{
var claim = await _claimRepository.GetAllListAsync();
return new ListResultDto<ClaimListDto>(ObjectMapper.Map<List<ClaimListDto>>(claim));
}