Hello experts ,
I need to verify if my checkbox is checked or not in Plugin;how can i achieve this?
Thank you in advance
*This post is locked for comments
Hello experts ,
I need to verify if my checkbox is checked or not in Plugin;how can i achieve this?
Thank you in advance
*This post is locked for comments
Hi David,
Try with this -
Entity entity = context.InputParameters["Target"] as Entity; if (entity.Attributes.Contains("CheckBoxFieldName")) { bool IsTrue = entity.GetAttributeValue<bool>("CheckBoxFieldName"); }
If the IsTrue value is true that means checkbox is checked otherwise unchecked.
Hello,
You can start here - docs.microsoft.com/.../sample-create-basic-plugin and move forward. My recommendation - just start doing plugin and ask questions once you reached some issue.
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,280 Super User 2024 Season 2
Martin Dráb 230,214 Most Valuable Professional
nmaenpaa 101,156