Thanks Andrew for giving me something to build upon, was finding it hard to start. This was exactly the start I wanted, now I can experiment and make it fit my needs. Thanks again
@@AndrewButenko Thank you Andrew for your quick response. yes, I want to extend the PCF control, but I thought that maybe someone already had it. thanks again. It's still quite complicated for me but I'll try
Hi, thanks for this video... very much helpful for beginners like me... I have one more doubt on PCF which I was trying a lot but couldn't achieve. I want to use Bootstrap in PCF. After installing bootstrap and required libraries using npm, I was able to give bootstrap styling to my component but was not able to give those functionalities where we need to initialize them using jquery. I was initializing them in the INIT method but was getting errors. I am not getting how to initialize jquery of Bootstrap in PCF component as we do in script tag->document.write function in a simple HTML file. Can you please help me with that...
Hello Dipak, I'm not sure what you mean with the initialization of the jQuery/Bootstrap component. Can you please open the thread that describes you issue here - powerusers.microsoft.com/t5/Power-Apps-Pro-Dev-ISV/bd-p/pa_component_framework Thanks, Andrew
@@AndrewButenko Thanks for your response. Initialization means like for Bootstrap Popover, we need to add the following code for initialization: $(function () { $('[data-toggle="popover"]').popover() }) For Bootstrap Tooltip:- $(function () { $('[data-toggle="tooltip"]').tooltip() }) this I called initialization. I have added that in the INIT method. There was no error but that functionality was not coming to my control. I was not getting that. There must be some mistake in the way I initialized it in the PCF component. If you could help me with this or any different approach to use Bootstrap popover/tooltips in PCF then it would be really helpful... I have already opened one thread here, powerusers.microsoft.com/t5/Building-Power-Apps/How-amp-Where-to-initialize-Bootstrap-s-Jquery-in-PCF-Component/m-p/1203047#M315449, will open there also... Thanks, Dipak
You are welcome! I'm glad that my videos were helpful. Regarding tiles do you mean something like that - pcf.gallery/actionable-case-cards/ or pcf.gallery/contact-cards/ ?
@@AndrewButenko hey thanks for replying. I have built a pcf to replace an out of box view for the field servixe mobile application. Currentlt the quick find is not available on the mobile app. Was wondering if there was a way to have the quick find search available on the app for mobile.
Not yet. You can find more info regarding supported/unsupported types here - docs.microsoft.com/en-us/powerapps/developer/component-framework/manifest-schema-reference/type
@@AndrewButenko my issue is resolved. I was using visual studio 2015 .. I install visual studio 2017 and everything works perfect. I want to ask that how can I make a image column in this grid??
@@AndrewButenko I want to know that how can we create a image column in it. Let's say the last column of the grid should display the images of a particular record
@@RahatGabaofficial I would recommend taking a look at the DetailList component of FluentUI - developer.microsoft.com/en-us/fluentui#/controls/web/detailslist/customitemcolumns so all you will need is to get the image and use it in the grid.
Thanks Andrew for giving me something to build upon, was finding it hard to start. This was exactly the start I wanted, now I can experiment and make it fit my needs. Thanks again
Hello Sudeep, I'm glad you find this video helpful! Don't forget to subscribe to the channel! More videos are coming. Andrew
great to see your posts :)
Thanks!
Loved It :)
Thanks!
Hi, thanks for this video... very much helpful for beginners like me. How to apply PCF on the Nesting grid. thank you
Hello, Nested Grid is a PCF control itself. If you want to extend what is missing there you will have to recreate it.
@@AndrewButenko Thank you Andrew for your quick response. yes, I want to extend the PCF control, but I thought that maybe someone already had it. thanks again. It's still quite complicated for me but I'll try
Thanks
You are welcome!
Hi, thanks for this video... very much helpful for beginners like me... I have one more doubt on PCF which I was trying a lot but couldn't achieve. I want to use Bootstrap in PCF. After installing bootstrap and required libraries using npm, I was able to give bootstrap styling to my component but was not able to give those functionalities where we need to initialize them using jquery. I was initializing them in the INIT method but was getting errors. I am not getting how to initialize jquery of Bootstrap in PCF component as we do in script tag->document.write function in a simple HTML file. Can you please help me with that...
Hello Dipak, I'm not sure what you mean with the initialization of the jQuery/Bootstrap component. Can you please open the thread that describes you issue here - powerusers.microsoft.com/t5/Power-Apps-Pro-Dev-ISV/bd-p/pa_component_framework
Thanks,
Andrew
@@AndrewButenko Thanks for your response. Initialization means like for Bootstrap Popover, we need to add the following code for initialization:
$(function () {
$('[data-toggle="popover"]').popover()
})
For Bootstrap Tooltip:-
$(function () {
$('[data-toggle="tooltip"]').tooltip()
})
this I called initialization. I have added that in the INIT method. There was no error but that functionality was not coming to my control. I was not getting that. There must be some mistake in the way I initialized it in the PCF component. If you could help me with this or any different approach to use Bootstrap popover/tooltips in PCF then it would be really helpful...
I have already opened one thread here,
powerusers.microsoft.com/t5/Building-Power-Apps/How-amp-Where-to-initialize-Bootstrap-s-Jquery-in-PCF-Component/m-p/1203047#M315449,
will open there also...
Thanks,
Dipak
Hi thanks andrew for such a nice videos. Have created some pcf after watching these videos.
One question if i want to show the data in form of tiles ?
You are welcome! I'm glad that my videos were helpful. Regarding tiles do you mean something like that - pcf.gallery/actionable-case-cards/ or pcf.gallery/contact-cards/ ?
Do you know how to get the quickfind on the FieldserviceMobile view? I have seen it available on web app side but not on mobile
Hello Zubair, I'm not sure what you mean. Can you please provide more detailed explanation?
@@AndrewButenko hey thanks for replying. I have built a pcf to replace an out of box view for the field servixe mobile application. Currentlt the quick find is not available on the mobile app. Was wondering if there was a way to have the quick find search available on the app for mobile.
@@zubairmughal2407 I never knew that this issue exists. I would recommend getting in touch with Microsoft and ask for a recommendation.
@@AndrewButenko thank you sir!
can we create PCF for lookup type?
Not yet. You can find more info regarding supported/unsupported types here - docs.microsoft.com/en-us/powerapps/developer/component-framework/manifest-schema-reference/type
Hello, I posted a video that describes on how to enable lookup attributes - ruclips.net/video/NEQtbfQrAMU/видео.html
I found error in msbuild. please anyone help
Hello,
Can you please provide some additional information on what kind of issue do you experience?
@@AndrewButenko my issue is resolved. I was using visual studio 2015 .. I install visual studio 2017 and everything works perfect.
I want to ask that how can I make a image column in this grid??
To be honest I have never tried to create "Image" columns so I don't have a good answer for you. Do you experience any difficulties with it?
@@AndrewButenko I want to know that how can we create a image column in it. Let's say the last column of the grid should display the images of a particular record
@@RahatGabaofficial I would recommend taking a look at the DetailList component of FluentUI - developer.microsoft.com/en-us/fluentui#/controls/web/detailslist/customitemcolumns so all you will need is to get the image and use it in the grid.