How to create a wii option selector with devkitpro? - c

How to create a wii options selector like wii mod lite? (devkitpro + C) wii mod lite options selector
i searched and searched, but i didnt found anything

Related

Find and replace in Snowsight

Does the new Snowsight (preview app) interface provide functionality to find/replace text in the query pane?
In the current interface I can use ctrl-F and ctrl-shift-f for find and replace respectively. They don't seem to work in Snowsight. The search box in the Results pane only works with returned results.
It is possible to enable Replace functionality in Snowsight by pressing CTRL + SHIFT + H:
This and more features are discoverable under Keyboard shortcuts:
Snowsight also provides keyboard shortcuts for faster navigation and editing of worksheets. To view the list of supported keyboard shortcuts, press [CMD]+[SHIFT]+[?] (Mac) or [CTRL]+[SHIFT]+[?] (Windows).
EDIT
New Find and Replace UI:
Quick answer: This is not supported by Snowsight.
Meanwhile just search will work as expected from the browser.
If anyone stumbles on this question like me, now there's a way.
On Mac, hit CMD + Option + f.
Guess you can replace CMD w/ Ctrl and Option w/ Alt if your'e on Windows.

How to remove search feature in inputComboboxListOfValues?

I'm working on Jdeveloper version 11.1.1.7.0. I am using component 'inputComboboxListOfValues'.
For my requirement I do not need the query feature and do not want a link like 'more' or 'search' to appear in the drop down list. Can I remove this search option?
Since I'm not familiar with this component, I searched online. By reading the doc, I guess there is no style attribute to let you simply turn off the search option, but according to this discussion on the oracle forum:
https://community.oracle.com/message/4304673#4304673
It seems you can do some skinning for your component to hide the search option...but I haven't tried it yet.
There is also a link for skinning:
http://jdevadf.oracle.com/adf-richclient-demo/docs/skin-selectors.html
Then search "af:inputComboboxListOfValues".
Not sure if this will work for your jdev version but it works on 11.2.3
http://i.stack.imgur.com/Abwpk.png
Turning off the Search capability for the LOV is done at the View/Attribute level (Select Attribute/List Of Values / UI Hints / Include Search Region = No Search)
set "readOnly=true".
--Peddi
Did you try and set styleclass="noSearch" it should work.

Composite C1 - Change design / layout of Blog

I have added a blog to my Composite C1 website - using the standard blog module.
It works fine - but I can find no way to change the layout / edit its HTML - is this possible? Have I missed something obvious?
Thanks.
First of all, you can change the styles used in the blog.
The blog's stylesheet can be found here: ~\Frontend\Composite\Community\Blog\Styles.css
Then, you can also edit the Razor functions that emit the blog's markup:
Functions / Razor Functions / Composite / Community / Blog
The function that shows the blog posts as a list as well as an individual post is called "BlogRenderer".

HTMLPurifier custom filter configuration

I've seen many posts on various sites which talk about adding "to your HTML Purifier config", like Sonny's excellent response to this question: HTMLPurifier iframe Vimeo and Youtube video
However, try as I might, I can't seem to discover exactly how to set up my HTML Purifier config. I'm actually trying to add a custom filter a la Sonny's comment, but the closest I can come to discovering how to set up my HTML purifier config in my Drupal 7 environment is from /sites/all/modules/htmlpurifier/config/sample.php:
<?php
/**
* #file
* This file is a sample advanced PHP configuration file for the HTML Purifier
* filter module. In reality, this file would be named N.php, where N is the
* integer identifying the filter this is configuring. The configure page
* for HTML Purifier (advanced) will tell you what file to copy this to.
*
* See this URI:
*
* http://htmlpurifier.org/live/configdoc/plain.html
*
* For full information about permitted directives. The most interesting ones
* for custom configuration are ones with the 'mixed' type, as they cannot
* be configured using the webform.
But this hasn't helped me at all - I don't see anything on the HTML Purifier (advanced) configure page (on the text filter config page? I don't see anything there...), and the doc at the URI above didn't help, either.
Edit: much thanks to #Chris for his answer to my original question. I subsequently found that creating the filtered_html.php file removes the ability for me to configure HTML Purifier for Filtered HTML from the UI! Is this supposed to happen?
All that I see from the UI when looking at HTML Purifier (Advanced) is the checkbox for "Display help text". (I already added this as a comment below, but I thought I'd modify my question as well in the hopes that more people would see this...)
First, make sure you have the HTML purifier library installed as show in the INSTALL.txt file. The status report page will show you the version if it's installed correctly.
In Drupal 7 the filter system now uses string keys rather than integer. So to create a configuration file for the format "Filtered HTML" under sites/all/modules/htmlpurifier/config/, copy sample.php to filtered_html.php, and update the hook function name like this:
function htmlpurifier_config_filtered_html($config) {
The rest of the tutorial above worked for me, and now my preFilter and postFilter functions are being called.
I thought you could do this through the UI, but it looks like the "Filters" custom configuration box is not evaluated as PHP.

ATK4 How to use treeview

How to use treeview e. g. as sidebar?
There are no standard element. You can build your own View. Look in other projects for some implementation or use jsTree
It seems there is an add on that is exactly for what you are looking for listed on the website.
At least it seems that way according to the description.
Its located under development and add-ons.
I'm thinking about trying the framework myself so I have no idea if this will work for you or not.
I noted there is a file atk4/lib/TreeView.php which extends Lister
It appears to be a bit old as it has hardcoded paths to the icon images for + and - as amodules3/templates/kt2/ which in agiletoolkit 4.1.1 is /atk4/templates/shared/images but maybe you can try adding this to a page and see what it does.
From the comments at the top, looks like it needed a mysql table with a primary key called ID and another column in the same table called parent_id which would provide the values and probably in order to display text strings would probably need another column called name in the same way refModel works.
If you decide to try and get it working, maybe you can post it back to Romans to update in ATK4.1
Please check newest ATK4 addons source:
* https://github.com/atk4/atk4-addons
* * addon "hierarchy"
* * addon "tree"

Resources