Search found 157 matches

by czentman
Fri May 20, 2016 10:59 am
Forum: General
Topic: Validation Pop Up Warning
Replies: 6
Views: 1483

Validation Pop Up Warning

Is there any way to do a validation that a message pops up (similar to the simple order validation with the e.cancel) but allow the file to continue to be saved. I know we could do it as a warning and have the user see the warning on the bottom with the warnings and errors but they would be prefer t...
by czentman
Thu May 19, 2016 11:05 am
Forum: Integration Development
Topic: underwriter name
Replies: 2
Views: 684

Re: underwriter name

I finally got it working with the following code but it took quite a few tries. Thanks IEnumerable<dynamic> Contacts = order.Contacts; IOrderItem contact = Contacts.Where(u => u.Code == "U").FirstOrDefault(); string underwriterName = contact.ToString().Replace("(U)", ""...
by czentman
Wed May 18, 2016 2:45 pm
Forum: Integration Development
Topic: underwriter name
Replies: 2
Views: 684

underwriter name

I'm trying to retrieve the underwriterName with the first() or firstorDefault and it's not seeming to work. I tried to convert to array and get from the array and that's not working either. Can someone help with this? IEnumerable<dynamic> ContactUnderwriter = order.Contacts; underwriterName = Contac...
by czentman
Tue May 17, 2016 12:15 pm
Forum: General
Topic: Warning
Replies: 1
Views: 734

Re: Warning

I think the addWarning should work so disregard.
by czentman
Tue May 17, 2016 11:45 am
Forum: General
Topic: Warning
Replies: 1
Views: 734

Warning

I want to have that on the save a warning pops up - but that the file can still be saved. I want to check specific fields against our blacklist (this contact name against our blacklist of contacts) but once the alert or warning shows up, the user can still save the file. I was doing it as an on_Save...
by czentman
Mon May 16, 2016 12:05 pm
Forum: Integration Development
Topic: look for task
Replies: 3
Views: 725

Re: look for task

Also, I want to check if any of the properties' address1 matches another address - can I do this without looping through the properties?
by czentman
Mon May 16, 2016 11:49 am
Forum: Integration Development
Topic: look for task
Replies: 3
Views: 725

look for task

within an order (IOrderInterface), I want to just see if a specific task exists as completed and just return a bool. Can I do this in a one or two line code instead of looping through the tasks?
by czentman
Fri May 13, 2016 11:16 am
Forum: Integration Development
Topic: Simple Order Validation
Replies: 18
Views: 2256

Re: Simple Order Validation

Or is there anything I could use the start page for?
by czentman
Fri May 13, 2016 11:04 am
Forum: Integration Development
Topic: Simple Order Validation
Replies: 18
Views: 2256

Re: Simple Order Validation

On my first idea, I meant attaching a doc to a file, and then hot spot to the doc.
by czentman
Fri May 13, 2016 9:42 am
Forum: Integration Development
Topic: Simple Order Validation
Replies: 18
Views: 2256

Re: Simple Order Validation

So is there a way to then programmatically attach a doc to the profile and then "hot-spot" or open that doc? or what about parcing out the pdf file and showing either here in this "reason" or onto another field (maybe custom flow-text field) that I can "hot-spot" to.