Macrura Posted August 19, 2017 Author Posted August 19, 2017 17 hours ago, Sipho said: As a tangent question, is it possible to use InputfieldSelectize for non-page inputfields? So for example, using InputfieldSelect I can say: <?php $f->addOption("pie","Pie"); But using InputfieldSelectize I can't seem to figure out how to get the value in the itemDataArray. Is there a way to do this? the way this module works is that the json is attached to each option; you could use a plain selectize init on your inputfield select, i do that a lot and it works well... using something like a hook in ready or admin custom files...
Sipho Posted August 19, 2017 Posted August 19, 2017 @Macrura Thanks! addBlankOption worked. I also managed to get the custom json working by hooking extendAttributes
Macrura Posted August 19, 2017 Author Posted August 19, 2017 ok great, i'm hoping to test the changes and push the update to the module next week.. 2
szabesz Posted October 8, 2017 Posted October 8, 2017 Hello @Macrura, I'm thinking of using Inputfield Selectize as a "visual page selector", picking pages from a page reference field, meaning I need something which works like an AsmSelect but at the same time it can display an imagefield's picture of the selectable pages along with the title. Is that possible? 1
Macrura Posted October 8, 2017 Author Posted October 8, 2017 yup, doing it all the time.. one of the main use cases for this... lotta examples earlier in this thread of images being used, here is a slider section where you select the slides to be shown: 2
szabesz Posted October 8, 2017 Posted October 8, 2017 Thanks for the reply! 4 minutes ago, Macrura said: slider section where you select the slides to be shown "Coincidentally" it is what I want to do I want to create selectable "slides" which can be used on the homepage as slider images a but also on blog post pages as "featured" images, so there should be no need to upload different images for the same "slide/post pairs". 7 minutes ago, Macrura said: lotta examples earlier in this thread of images being used Sure, however I only spotted examples with "$page->images" and could not find any examples with "custom selectors" and that is I why I thought I ask first before installing it.
Macrura Posted October 8, 2017 Author Posted October 8, 2017 here are the settings for the image above: 1) Array of Data $image = ''; if(count($page->images)) $image = $page->images->first(); $thumb = ''; $dims = ''; if($image !='') { $thumb = $image->size(100,100)->url; $dims = $image->width . 'x' . $image->height; } $data = array( 'title' => $page->title, 'type' => $page->media_type->title, 'thumb' => $thumb, 'img_dims' => $dims, 'edit_src' => $page->editUrl ); return $data; 2) Render Item Markup '<div class="item" style="width:100%;">' + (item.thumb ? '<div class="image-wrapper" style="float:left;"><img src="' + escape(item.thumb) + '" alt=""></div>' : '') + '<div class="info-wrapper" style="float:left; padding:5px;">' + '<span style="font-size:14px;font-weight:bold">' + escape(item.title) + '</span><br>' + '<span>Type: ' + escape(item.type) + '</span><br>' + (item.img_dims ? '<span>Dims: ' + escape(item.img_dims) + 'px</span><br>' : '') + '<a class="pw-modal pw-modal-medium" href="' + escape(item.edit_src) + '">Edit <span class="ui-icon ui-icon-extlink"></span></a></div>' + '</div>' 3) Render Option markup '<div class="item" style="width:100%;">' + (item.thumb ? '<div class="image-wrapper" style="float:left;"><img src="' + escape(item.thumb) + '" alt=""></div>' : '') + '<div class="info-wrapper" style="float:left; padding:5px;">' + '<span style="font-size:14px;font-weight:bold">' + escape(item.title) + '</span><br>' + '<span>Type: ' + escape(item.type) + '</span><br></div>' + '</div>' 2
szabesz Posted October 8, 2017 Posted October 8, 2017 I have just I realized that in your examples $page must be a reference to the selected page and not the current page being edited. Am I right? I should install the module instead of asking silly questions
Macrura Posted October 8, 2017 Author Posted October 8, 2017 correct, when you get the array of data to supply to each option, that is being used when the module iterates through the selectable pages and is then used to generate the json attribute that gets added to the select option itself, in the data-data attribute. Selectize.js natively reads that data-data attribute to get the object that it can then parse into the item and option markup that it renders... item always refers to the actual option 1
szabesz Posted October 8, 2017 Posted October 8, 2017 Thanks for clarifying! I was confused by the name of the variable $page.
mel47 Posted October 12, 2017 Posted October 12, 2017 Hi, Just discovered selectize. Sounds quite interesting! However I have a small problem; title of multilang pages give [object Object] /** display fine $data = array( 'title' => $page->name, 'ville' => $page->ville, 'region' => $page->region->name ); /***error: printing [object Object] $data = array( 'title' => $page->title, 'ville' => $page->ville, 'region' => $page->region->title ); Thanks
Macrura Posted October 12, 2017 Author Posted October 12, 2017 maybe try $page->of(false); at the top of the code
mel47 Posted October 12, 2017 Posted October 12, 2017 12 minutes ago, Macrura said: maybe try $page->of(false); at the top of the code Unfortunately, nope.
Macrura Posted October 12, 2017 Author Posted October 12, 2017 you’ll have to use the language api to get the value you want to show there; You may also be able to try $page->region->getFormatted('title') but the language api should give you what you need to get that value/data if formatted doesn't work..., e.g. $dutch = $languages->get('dutch'); // get the language we want $body = $page->title->getLanguageValue($dutch);
szabesz Posted October 14, 2017 Posted October 14, 2017 Hi @Macrura Finally I had the time to actually install the module and make changes to the website in order to use it as the "selector" of the slides. It works well, I'm just wondering why the "type" bit gave me "Undefined property" notice when using your example above. Since I do not really think displaying type is useful – if it is always "image" just as the user expects it to be... - I just simply replaced with another property of the slide page and that is the "url" where the slide is linked to. All in all, I think this module is really great! Thanks a lot!
Macrura Posted October 14, 2017 Author Posted October 14, 2017 right, sorry, my example was pulling from a 'media' template where you have these different media types, like image, video, audio. So you wouldn't need that in your application. 1
adrianromega Posted October 30, 2017 Posted October 30, 2017 Nice module, just tried it and I do not know how to make it work for multiple page selection... In a field page config, in Input Field Type. Inputfield Selectize appears only for Single page selection... I am using the latest processwire 3. Thank you.
adrianromega Posted October 30, 2017 Posted October 30, 2017 I found out the solution, there was another module to install, Inputfield Selectize Multiple . thanks again for this module. 1
Robin S Posted November 16, 2017 Posted November 16, 2017 Hi @Macrura I'm not able to install SelectizeImageTags in PW 3.0.83. Edit: I can install it if I download and manually copy the directory to /site/modules/ This came up a while back... ...were you able to get to the bottom of what was causing it? Also, if I am able to install the module is it still working given the changes to image tagging in the core? I remember you discussing this with Ryan when the core changes were made and just wondering where things stand. 1
Macrura Posted November 16, 2017 Author Posted November 16, 2017 Ok sorry about this – i just change the leading zero integer to a string so we'll see if that fixes the download install... 2 hours ago, Robin S said: Also, if I am able to install the module is it still working given the changes to image tagging in the core? I remember you discussing this with Ryan when the core changes were made and just wondering where things stand. I regularly use this module instead of the core image tagging, so that i can have those benefits i listed somewhere, in short, key/value pairs for tags and template context for different tags on a field.. 1
Robin S Posted November 16, 2017 Posted November 16, 2017 7 hours ago, Macrura said: i just change the leading zero integer to a string so we'll see if that fixes the download install Did you push this yet? Not seeing any new commit in the repo. I think there might be some other issue with the module regarding the modules directory, because the directory is showing v0.0.3 but SelectizeImageTags.info.php is v0.0.7. Maybe the getModuleInfo() in the main module file is still being read despite being commented out? 7 hours ago, Macrura said: I regularly use this module instead of the core image tagging, so that i can have those benefits i listed somewhere Absolutely - the key/value tags is a big benefit and was about to recommend it to someone because of this when I struck the install issue. I just thought there was some discussion about the module being impacted by the core changes, but I might be misremembering or those things are now resolved.
Macrura Posted November 16, 2017 Author Posted November 16, 2017 sorry must have not gone through, just pushed it now. I'm guessing the mods dir is having the same leading zero problem, possibly running php 7 since v 003, when leading zeros used to work... hoping this does fix that.
adrian Posted November 16, 2017 Posted November 16, 2017 20 minutes ago, Macrura said: sorry must have not gone through, just pushed it now. I'm guessing the mods dir is having the same leading zero problem, possibly running php 7 since v 003, when leading zeros used to work... hoping this does fix that. It's always been an issue to some degree: I have actually moved all my modules to string version numbers so that I can do 1.2.13 etc. I am trying to be more diligent with using numbers that are somewhat semantic at least. 2
Robin S Posted November 16, 2017 Posted November 16, 2017 3 minutes ago, adrian said: I have actually moved all my modules to string version numbers so that I can do 1.2.13 Does that cause a problem though if you are doing a numerical comparison on the version? For example, in the "requires" item of getModuleInfo() or in the upgrade() method?
adrian Posted November 16, 2017 Posted November 16, 2017 6 minutes ago, Robin S said: Does that cause a problem though if you are doing a numerical comparison on the version? For example, in the "requires" item of getModuleInfo() or in the upgrade() method? I haven't seen any issues and it should be fine, because it uses PHP's version_compare() which support comparison of integer and string version numbers https://github.com/processwire/processwire/blob/57b297fd1d828961b20ef29782012f75957d6886/wire/core/Modules.php#L4023 http://php.net/manual/en/function.version-compare.php 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now