Hi, I am Jawahar, currently I am internship employee at -------company. but they will give power pages domain. But Now I struggled with learn documentation power pages . I can't understand how to learn full documentation....but after watched your videos☺ little bit help for me.Thank you
hi arpit,thanks for your helpful videos, am practicing as i follow you but i have a bug, my main page loads in the Middle ,what could be the issue and how can i fix it? thanks
Hi @Apit, I noticed that in your published event form, the published by field is set default to login user( your name). I also want to do that in my own form. Could you help guiding me how to do that. Thanks a lot.
Use form metadata to auto populate logged in user Information. Can watch this video for more details: th-cam.com/video/daX5SgoaV1I/w-d-xo.htmlsi=n_bO_QbXdZlNhElv You can auto populate user details on load and on save of the form. Select contactid from the drop-down to set logged in user details. learn.microsoft.com/en-us/power-pages/configure/configure-basic-form-metadata#basic-form-metadata-type--attribute
@@arpitpowerguide thank you so much, @Arjit! It works!! Do you have any videos re how to redirect user to a specific page once sign in according to the logged in user role ? Do you provide private tuition? I’m so interested to learn more about powerpages from you.
Hi Arpit, Very helpful and nice video. Can you please share if we have any video that how to get data and post data from a custom HTML template to dataverse table.
Hi Arpit, glad to see your playlist to learn Power Pages in deep. I have a question though, is it possible to use multiple web templates in single page? Or could you please help me figure out the approach of having multiple reusable modules in a page (dashboard page with multiple modules) so that I can create modules as a web templates and use the same module code in other pages as well. your help is appreciated.
Hi Tushar! Thanks for your feedback! Yes you can use multiple web templates on a single page. To do that, create a base web template (this will be linked to your webpage through page template) and include other web templates to it using the syntax: {% include %} Hope you get it!
@@arpitpowerguide yes I got it. Actually in one of your videos I learned how to include a web template using liquid template so I got what you said. Thank you very much for the quick reply. Appreciate your hard work, more owner to you.👍
This is a great session Arpit. I have a question. I am trying to set a dropdown value in general validation. I have a Multistep form. It has 2 steps and in Portal management, on 2nd step--> Form Options tab, under custom javascript, I have written JS. it is not able to alert the dropdown value. The only difference I see from your demo is, you have written in Basic form and I have written in Multistep Form Step Form itself. Please suggest. if (window.jQuery) { (function ($) { if (typeof (entityFormClientValidate) != 'undefined') { var originalValidationFunction = entityFormClientValidate; if (originalValidationFunction && typeof (originalValidationFunction) == "function") { entityFormClientValidate = function() { originalValidationFunction.apply(this, arguments); alert($('#crd73_submitstatus').val()); return false; }; } } }(window.jQuery)); }
Hi, I am Jawahar, currently I am internship employee at -------company. but they will give power pages domain. But Now I struggled with learn documentation power pages . I can't understand how to learn full documentation....but after watched your videos☺ little bit help for me.Thank you
Hey Jawaharlal! Glad you found the video helpful!
This is a great video, clearly explained a complicated topic, worth watching times and times again.
Glad you liked it!
Great work. Thank u Sir..!!
hi arpit,thanks for your helpful videos, am practicing as i follow you but i have a bug, my main page loads in the Middle ,what could be the issue and how can i fix it? thanks
Great video! This helped me a lot.
What is difference of adding in Web Files vs writing in Cust Script ? Is Web Files have caching advantage?
Hello, we are planning to bring a tool to review Powerpages code ( scanning all js files etc), do you have an idea where to start with ?
Hi @Apit, I noticed that in your published event form, the published by field is set default to login user( your name). I also want to do that in my own form. Could you help guiding me how to do that. Thanks a lot.
Use form metadata to auto populate logged in user Information. Can watch this video for more details: th-cam.com/video/daX5SgoaV1I/w-d-xo.htmlsi=n_bO_QbXdZlNhElv
You can auto populate user details on load and on save of the form. Select contactid from the drop-down to set logged in user details.
learn.microsoft.com/en-us/power-pages/configure/configure-basic-form-metadata#basic-form-metadata-type--attribute
@@arpitpowerguide thank you so much, @Arjit! It works!! Do you have any videos re how to redirect user to a specific page once sign in according to the logged in user role ? Do you provide private tuition? I’m so interested to learn more about powerpages from you.
Thank you!
Hi Arpit, Very helpful and nice video. Can you please share if we have any video that how to get data and post data from a custom HTML template to dataverse table.
Hi Arpit, glad to see your playlist to learn Power Pages in deep.
I have a question though, is it possible to use multiple web templates in single page? Or could you please help me figure out the approach of having multiple reusable modules in a page (dashboard page with multiple modules) so that I can create modules as a web templates and use the same module code in other pages as well. your help is appreciated.
Hi Tushar! Thanks for your feedback!
Yes you can use multiple web templates on a single page. To do that, create a base web template (this will be linked to your webpage through page template) and include other web templates to it using the syntax: {% include %}
Hope you get it!
@@arpitpowerguide yes I got it. Actually in one of your videos I learned how to include a web template using liquid template so I got what you said. Thank you very much for the quick reply. Appreciate your hard work, more owner to you.👍
I want to make a calxulator in power pages is that possible
good try
I want WEB API topic .. What is web API
? & why used in power pages...please tell me
You'll get all the videos including Portal Web api max by 30 Jan. Stay tuned!
This is a great session Arpit. I have a question. I am trying to set a dropdown value in general validation. I have a Multistep form. It has 2 steps and in Portal management, on 2nd step--> Form Options tab, under custom javascript, I have written JS. it is not able to alert the dropdown value. The only difference I see from your demo is, you have written in Basic form and I have written in Multistep Form Step Form itself. Please suggest.
if (window.jQuery) {
(function ($) {
if (typeof (entityFormClientValidate) != 'undefined') {
var originalValidationFunction = entityFormClientValidate;
if (originalValidationFunction && typeof (originalValidationFunction) == "function") {
entityFormClientValidate = function() {
originalValidationFunction.apply(this, arguments);
alert($('#crd73_submitstatus').val());
return false;
};
}
}
}(window.jQuery));
}