1660511580
This package aims to provide set of question types with options and gets the response in custom generalized data. So the forms can be generated using certain rules and control it from server.
Render question from server and capture its response
TODO: List prerequisites and provide or point to information on how to start using the package.
import 'package:flutter/material.dart';
import 'package:question_frame/question_frame.dart';
import 'package:question_frame/src/model/option.dart';
final sampleQuestion = FrameQuestion(
id: 1,
mId: 1,
qKey: 'name',
qLabel: "Enter Your name",
qType: 'stringInput',
qMandatory: true,
mandatoryMessage: "Name is required for further interactions.",
onLoad: "",
onLoadMsg: '',
onActivity: "validateName",
onActivityMsg: "not a valid name",
qImage: '',
qAudio: '',
qVideo: '',
options: [
FrameOption(1, 1, -1, 2),
],
qHint: "Write your name below",
);
void main() {
final Map<FrameQuestion, FrameUserResponse> questionResponseMap = {};
final List<FrameQuestion> frameQuestion = [
sampleQuestion,
sampleQuestion.copyWith(
id: 2,
qKey: 'age',
onActivity: 'validateAge',
onActivityMsg: 'Not a Valid age',
qType: 'intInput'),
];
questionResponseMap.addEntries(
frameQuestion.map(
(question) => MapEntry(
question,
FrameUserResponse(
qId: question.id,
qType: question.qType,
options: question.options,
tag: question.qKey,
),
),
),
);
runApp(
MaterialApp(
home: FrameWidget(
questionResponseMap: questionResponseMap,
),
),
);
}
prepare a map of question(FrameQuestion) and corresponding userResponse(FrameUserResponse) and pass it to the frame widget.
TODO: Tell users more about the package: where to find more information, how to contribute to the package, how to file issues, what response they can expect from the package authors, and more.
Run this command:
With Flutter:
$ flutter pub add question_frame
This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get
):
dependencies:
question_frame: ^1.0.2
Alternatively, your editor might support flutter pub get
. Check the docs for your editor to learn more.
Now in your Dart code, you can use:
import 'package:question_frame/question_frame.dart';
example/question_frame_example.dart
import 'package:flutter/material.dart';
import 'package:question_frame/question_frame.dart';
import 'package:question_frame/src/model/option.dart';
final sampleQuestion = FrameQuestion(
id: 1,
mId: 1,
qKey: 'name',
qLabel: "Enter Your name",
qType: 'stringInput',
qMandatory: true,
mandatoryMessage: "Name is required for further interactions.",
onLoad: "",
onLoadMsg: '',
onActivity: "validateName",
onActivityMsg: "not a valid name",
qImage: '',
qAudio: '',
qVideo: '',
options: [
FrameOption(1, 1, -1, 2),
],
qHint: "Write your name below",
);
void main() {
final Map<FrameQuestion, FrameUserResponse> questionResponseMap = {};
final List<FrameQuestion> frameQuestion = [
sampleQuestion,
sampleQuestion.copyWith(
id: 2,
qKey: 'age',
onActivity: 'validateAge',
onActivityMsg: 'Not a Valid age',
qType: 'intInput'),
];
questionResponseMap.addEntries(
frameQuestion.map(
(question) => MapEntry(
question,
FrameUserResponse(
qId: question.id,
qType: question.qType,
options: question.options,
tag: question.qKey,
),
),
),
);
runApp(
MaterialApp(
home: FrameWidget(
questionResponseMap: questionResponseMap,
),
),
);
}
Original article source at: https://pub.dev/packages/question_frame
1624531051
Alerts4Dynamics is productivity app for Dynamics 365 CRM that helps to create, schedule, manage and track alerts. It helps to notify and pass relevant information to target audience right within Dynamics 365 CRM. These notifications can be created and displayed indefinitely or for a defined scheduled period. Notification button is available on all entities and can be accessed from anywhere in the CRM.
Features
• Create Announcement and Rule Based/Record Based alerts.
• Alerts can be sent as Pop-ups, Form Notifications or Email to target Dynamics 365 CRM users.
• Categorize alerts as Information, Warning or Critical.
• Track log of read/dismissed alerts by users.
• Define process start date from when the notifications will start getting created and process end date when creation of new notifications will stop. Also, add the display end date for notification.
#dynamics 365 pop-up alert #dynamics 365 email alerts #dynamics 365 bulk alerts #dynamics crm pop-up alert #dynamics 365 notifications #dynamics crm alert
1600307723
Laravel 8 form example. In this tutorial, i would love to show you how to create form in laravel. And how to insert data into database using form in laravel 8.
https://laratutorials.com/laravel-8-form-example-tutorial/
#insert form data into database using laravel #laravel bootstrap form #laravel post forms #laravel 8 form tutorial #laravel 8 form example #laravel 8 form submit tutorial
1626322326
#xamarin
#aspdotnetexplorer
https://www.youtube.com/watch?v=2tehSdX897E
#xamarin forms #xamarin forms bangla tutorials for beginners #xamarin forms tutorials for beginners #xamarin #xamarin.forms #xamarin.forms ui
1625057623
Click2Undo is a productivity app that helps you to undo changes in the data in Dynamics 365 CRM with a single click. Be it the last change that you’d want to restore, or the changes that were done in the past which you would like to get back, Click2Undo can do it without any hassle. This provides a safety net within which users can conduct day-to-day activities without fear of losing data due to human or technical errors.
Click2Undo is available for Dynamics CRM 8.2 and above, Dataverse (Power Apps). It supports deployment models - On-Premises and Online.
Features
• Entity Support: Click2Undo provides support to all OOB as well as Custom Entities
• Undo Last Changes: Ability to restore the last changes done to a Dynamics 365 CRM record by clicking the Click2Undo button
• Undo Past Changes: Ability to undo past changes made to multiple fields on Dynamics 365 CRM records in one go using History button
• Undo Bulk Changes: Ability to undo changes on multiple records at one go.
#restore last state of dynamics 365 records #restoring deleted dynamics 365 records #recovering deleted dynamics 365 records #recover deleted dynamics crm records #dynamics 365 online recover deleted records #restore records dynamics crm
1606794037
Laravel 8 livewire form wizard example. In tutorial i will show you how to implement multi step form or form wizard using livewire package in laravel 8 app from scratch.
Follow the below given steps and easy implement multi step form or form wizard in laravel 8 app with livewire:
https://www.tutsmake.com/laravel-8-livewire-form-wizard-tutorial/
#laravel multi step form wizard #laravel 8 livewire multi step form wizard #livewire multi step form bootstrap laravel #laravel multi step form wizard with livewire #laravel livewire multi step form example #laravel livewire wizard form example