Hello Community, Filter between combos #5320
Unanswered
patriciomh1965
asked this question in
Help
Replies: 1 comment
-
Hey @patriciomh1965, we have discussion tab for question etc. I move this issue to there. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have two combos with date data, the first one indicates yyyyMM, the second one indicates yyyyMMdd. When the user selects the yyyyMM of the first combo, the second combo should show only the yyyyMMdd dates.
I indicate the instructions and image:
XYZColumns
namespace CNC.Servicios.Columns
{
using Serenity;
using Serenity.ComponentModel;
using Serenity.Data;
using System;
using System.ComponentModel;
using System.Collections.Generic;
using System.IO;
using CNC.Modules.Servicios;
}
Lookup ( yyyyMM)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace CNC.Modules.Servicios
{
using CNC.Servicios.Entities;
using Serenity.ComponentModel;
using Serenity.Data;
using Serenity.Web;
}
Lookup (yyyyMMdd)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace CNC.Modules.Servicios
{
using CNC.Servicios.Entities;
using Serenity.ComponentModel;
using Serenity.Data;
using Serenity.Web;
}
XYZRow
namespace CNC.Servicios.Entities
{
using Serenity;
using Serenity.ComponentModel;
using Serenity.Data;
using Serenity.Data.Mapping;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.IO;
}
I appreciate any help. Atte.
Beta Was this translation helpful? Give feedback.
All reactions